From 1b4f2f2275b322846b9c0e5d73b53385d11a2d99 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 21 Aug 2025 02:08:27 +1200 Subject: [PATCH 1/4] Fix acronym methods, deprecate old versions --- app/controllers/api/account.php | 433 +++++++++++++++++++++--------- app/controllers/api/messaging.php | 361 ++++++++++++++++++------- app/controllers/api/projects.php | 319 +++++++++++++++------- app/controllers/api/users.php | 274 +++++++++++++------ 4 files changed, 986 insertions(+), 401 deletions(-) diff --git a/app/controllers/api/account.php b/app/controllers/api/account.php index 4956e8b6a2..e8f32c43a9 100644 --- a/app/controllers/api/account.php +++ b/app/controllers/api/account.php @@ -25,6 +25,7 @@ use Appwrite\Network\Validator\Redirect; use Appwrite\OpenSSL\OpenSSL; use Appwrite\SDK\AuthType; use Appwrite\SDK\ContentType; +use Appwrite\SDK\Deprecated; use Appwrite\SDK\Method; use Appwrite\SDK\MethodType; use Appwrite\SDK\Response as SDKResponse; @@ -4008,20 +4009,40 @@ App::get('/v1/account/mfa/factors') ->desc('List factors') ->groups(['api', 'account', 'mfa']) ->label('scope', 'account') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'listMfaFactors', - description: '/docs/references/account/list-mfa-factors.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MFA_FACTORS, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'listMfaFactors', + description: '/docs/references/account/list-mfa-factors.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_FACTORS, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'listMFAFactors', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'listMFAFactors', + description: '/docs/references/account/list-mfa-factors.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_FACTORS, + ) + ], + contentType: ContentType::JSON + ) + ]) ->inject('response') ->inject('user') ->action(function (Response $response, Document $user) { @@ -4049,20 +4070,40 @@ App::post('/v1/account/mfa/authenticators/:type') ->label('audits.event', 'user.update') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'createMfaAuthenticator', - description: '/docs/references/account/create-mfa-authenticator.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MFA_TYPE, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'createMfaAuthenticator', + description: '/docs/references/account/create-mfa-authenticator.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_TYPE, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createMFAAuthenticator', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'createMFAAuthenticator', + description: '/docs/references/account/create-mfa-authenticator.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_TYPE, + ) + ], + contentType: ContentType::JSON + ) + ]) ->param('type', null, new WhiteList([Type::TOTP]), 'Type of authenticator. Must be `' . Type::TOTP . '`') ->inject('requestTimestamp') ->inject('response') @@ -4126,20 +4167,40 @@ App::put('/v1/account/mfa/authenticators/:type') ->label('audits.event', 'user.update') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'updateMfaAuthenticator', - description: '/docs/references/account/update-mfa-authenticator.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_USER, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'updateMfaAuthenticator', + description: '/docs/references/account/update-mfa-authenticator.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_USER, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateMFAAuthenticator', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'updateMFAAuthenticator', + description: '/docs/references/account/update-mfa-authenticator.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_USER, + ) + ], + contentType: ContentType::JSON + ) + ]) ->param('type', null, new WhiteList([Type::TOTP]), 'Type of authenticator.') ->param('otp', '', new Text(256), 'Valid verification token.') ->inject('response') @@ -4196,20 +4257,40 @@ App::post('/v1/account/mfa/recovery-codes') ->label('audits.event', 'user.update') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'createMfaRecoveryCodes', - description: '/docs/references/account/create-mfa-recovery-codes.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_CREATED, - model: Response::MODEL_MFA_RECOVERY_CODES, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'createMfaRecoveryCodes', + description: '/docs/references/account/create-mfa-recovery-codes.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createMFARecoveryCodes', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'createMFARecoveryCodes', + description: '/docs/references/account/create-mfa-recovery-codes.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + contentType: ContentType::JSON + ) + ]) ->inject('response') ->inject('user') ->inject('dbForProject') @@ -4243,20 +4324,40 @@ App::patch('/v1/account/mfa/recovery-codes') ->label('audits.event', 'user.update') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'updateMfaRecoveryCodes', - description: '/docs/references/account/update-mfa-recovery-codes.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MFA_RECOVERY_CODES, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'updateMfaRecoveryCodes', + description: '/docs/references/account/update-mfa-recovery-codes.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateMFARecoveryCodes', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'updateMFARecoveryCodes', + description: '/docs/references/account/update-mfa-recovery-codes.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + contentType: ContentType::JSON + ) + ]) ->inject('dbForProject') ->inject('response') ->inject('user') @@ -4285,20 +4386,40 @@ App::get('/v1/account/mfa/recovery-codes') ->desc('List MFA recovery codes') ->groups(['api', 'account', 'mfaProtected']) ->label('scope', 'account') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'getMfaRecoveryCodes', - description: '/docs/references/account/get-mfa-recovery-codes.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MFA_RECOVERY_CODES, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'getMfaRecoveryCodes', + description: '/docs/references/account/get-mfa-recovery-codes.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'getMFARecoveryCodes', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'getMFARecoveryCodes', + description: '/docs/references/account/get-mfa-recovery-codes.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + contentType: ContentType::JSON + ) + ]) ->inject('response') ->inject('user') ->action(function (Response $response, Document $user) { @@ -4324,20 +4445,40 @@ App::delete('/v1/account/mfa/authenticators/:type') ->label('audits.event', 'user.update') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'deleteMfaAuthenticator', - description: '/docs/references/account/delete-mfa-authenticator.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_NOCONTENT, - model: Response::MODEL_NONE, - ) - ], - contentType: ContentType::NONE - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'deleteMfaAuthenticator', + description: '/docs/references/account/delete-mfa-authenticator.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_NOCONTENT, + model: Response::MODEL_NONE, + ) + ], + contentType: ContentType::NONE, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'deleteMFAAuthenticator', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'deleteMFAAuthenticator', + description: '/docs/references/account/delete-mfa-authenticator.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_NOCONTENT, + model: Response::MODEL_NONE, + ) + ], + contentType: ContentType::NONE + ) + ]) ->param('type', null, new WhiteList([Type::TOTP]), 'Type of authenticator.') ->inject('response') ->inject('user') @@ -4370,20 +4511,40 @@ App::post('/v1/account/mfa/challenge') ->label('audits.event', 'challenge.create') ->label('audits.resource', 'user/{response.userId}') ->label('audits.userId', '{response.userId}') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'createMfaChallenge', - description: '/docs/references/account/create-mfa-challenge.md', - auth: [], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_CREATED, - model: Response::MODEL_MFA_CHALLENGE, - ) - ], - contentType: ContentType::JSON, - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'createMfaChallenge', + description: '/docs/references/account/create-mfa-challenge.md', + auth: [], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MFA_CHALLENGE, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createMFAChallenge', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'createMFAChallenge', + description: '/docs/references/account/create-mfa-challenge.md', + auth: [], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MFA_CHALLENGE, + ) + ], + contentType: ContentType::JSON + ) + ]) ->label('abuse-limit', 10) ->label('abuse-key', 'url:{url},userId:{userId}') ->param('factor', '', new WhiteList([Type::EMAIL, Type::PHONE, Type::TOTP, Type::RECOVERY_CODE]), 'Factor used for verification. Must be one of following: `' . Type::EMAIL . '`, `' . Type::PHONE . '`, `' . Type::TOTP . '`, `' . Type::RECOVERY_CODE . '`.') @@ -4592,20 +4753,40 @@ App::put('/v1/account/mfa/challenge') ->label('audits.event', 'challenges.update') ->label('audits.resource', 'user/{response.userId}') ->label('audits.userId', '{response.userId}') - ->label('sdk', new Method( - namespace: 'account', - group: 'mfa', - name: 'updateMfaChallenge', - description: '/docs/references/account/update-mfa-challenge.md', - auth: [AuthType::SESSION, AuthType::JWT], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_SESSION, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'account', + group: 'mfa', + name: 'updateMfaChallenge', + description: '/docs/references/account/update-mfa-challenge.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SESSION, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateMFAChallenge', + ), + ), + new Method( + namespace: 'account', + group: 'mfa', + name: 'updateMFAChallenge', + description: '/docs/references/account/update-mfa-challenge.md', + auth: [AuthType::SESSION, AuthType::JWT], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SESSION, + ) + ], + contentType: ContentType::JSON + ) + ]) ->label('abuse-limit', 10) ->label('abuse-key', 'url:{url},challengeId:{param-challengeId}') ->param('challengeId', '', new Text(256), 'ID of the challenge.') diff --git a/app/controllers/api/messaging.php b/app/controllers/api/messaging.php index 0bc6f93787..8c13469d2a 100644 --- a/app/controllers/api/messaging.php +++ b/app/controllers/api/messaging.php @@ -13,6 +13,7 @@ use Appwrite\Permission; use Appwrite\Role; use Appwrite\SDK\AuthType; use Appwrite\SDK\ContentType; +use Appwrite\SDK\Deprecated; use Appwrite\SDK\Method; use Appwrite\SDK\Response as SDKResponse; use Appwrite\Utopia\Database\Validator\CompoundUID; @@ -238,19 +239,38 @@ App::post('/v1/messaging/providers/smtp') ->label('event', 'providers.[providerId].create') ->label('scope', 'providers.write') ->label('resourceType', RESOURCE_TYPE_PROVIDERS) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'providers', - name: 'createSmtpProvider', - description: '/docs/references/messaging/create-smtp-provider.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_CREATED, - model: Response::MODEL_PROVIDER, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'providers', + name: 'createSmtpProvider', + description: '/docs/references/messaging/create-smtp-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_PROVIDER, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createSMTPProvider', + ), + ), + new Method( + namespace: 'messaging', + group: 'providers', + name: 'createSMTPProvider', + description: '/docs/references/messaging/create-smtp-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_PROVIDER, + ) + ] + ) + ]) ->param('providerId', '', new CustomId(), 'Provider 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.') ->param('name', '', new Text(128), 'Provider name.') ->param('host', '', new Text(0), '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.') @@ -752,19 +772,38 @@ App::post('/v1/messaging/providers/fcm') ->label('event', 'providers.[providerId].create') ->label('scope', 'providers.write') ->label('resourceType', RESOURCE_TYPE_PROVIDERS) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'providers', - name: 'createFcmProvider', - description: '/docs/references/messaging/create-fcm-provider.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_CREATED, - model: Response::MODEL_PROVIDER, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'providers', + name: 'createFcmProvider', + description: '/docs/references/messaging/create-fcm-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_PROVIDER, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createFCMProvider', + ), + ), + new Method( + namespace: 'messaging', + group: 'providers', + name: 'createFCMProvider', + description: '/docs/references/messaging/create-fcm-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_PROVIDER, + ) + ] + ) + ]) ->param('providerId', '', new CustomId(), 'Provider 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.') ->param('name', '', new Text(128), 'Provider name.') ->param('serviceAccountJSON', null, new JSON(), 'FCM service account JSON.', true) @@ -822,19 +861,38 @@ App::post('/v1/messaging/providers/apns') ->label('event', 'providers.[providerId].create') ->label('scope', 'providers.write') ->label('resourceType', RESOURCE_TYPE_PROVIDERS) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'providers', - name: 'createApnsProvider', - description: '/docs/references/messaging/create-apns-provider.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_CREATED, - model: Response::MODEL_PROVIDER, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'providers', + name: 'createApnsProvider', + description: '/docs/references/messaging/create-apns-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_PROVIDER, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createAPNSProvider', + ), + ), + new Method( + namespace: 'messaging', + group: 'providers', + name: 'createAPNSProvider', + description: '/docs/references/messaging/create-apns-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_PROVIDER, + ) + ] + ) + ]) ->param('providerId', '', new CustomId(), 'Provider 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.') ->param('name', '', new Text(128), 'Provider name.') ->param('authKey', '', new Text(0), 'APNS authentication key.', true) @@ -1322,19 +1380,38 @@ App::patch('/v1/messaging/providers/smtp/:providerId') ->label('event', 'providers.[providerId].update') ->label('scope', 'providers.write') ->label('resourceType', RESOURCE_TYPE_PROVIDERS) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'providers', - name: 'updateSmtpProvider', - description: '/docs/references/messaging/update-smtp-provider.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_PROVIDER, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'providers', + name: 'updateSmtpProvider', + description: '/docs/references/messaging/update-smtp-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROVIDER, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateSMTPProvider', + ), + ), + new Method( + namespace: 'messaging', + group: 'providers', + name: 'updateSMTPProvider', + description: '/docs/references/messaging/update-smtp-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROVIDER, + ) + ] + ) + ]) ->param('providerId', '', new UID(), 'Provider ID.') ->param('name', '', new Text(128), 'Provider name.', true) ->param('host', '', new Text(0), '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.', true) @@ -1894,19 +1971,38 @@ App::patch('/v1/messaging/providers/fcm/:providerId') ->label('event', 'providers.[providerId].update') ->label('scope', 'providers.write') ->label('resourceType', RESOURCE_TYPE_PROVIDERS) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'providers', - name: 'updateFcmProvider', - description: '/docs/references/messaging/update-fcm-provider.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_PROVIDER, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'providers', + name: 'updateFcmProvider', + description: '/docs/references/messaging/update-fcm-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROVIDER, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateFCMProvider', + ), + ), + new Method( + namespace: 'messaging', + group: 'providers', + name: 'updateFCMProvider', + description: '/docs/references/messaging/update-fcm-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROVIDER, + ) + ] + ) + ]) ->param('providerId', '', new UID(), 'Provider ID.') ->param('name', '', new Text(128), 'Provider name.', true) ->param('enabled', null, new Boolean(), 'Set as enabled.', true) @@ -1970,19 +2066,38 @@ App::patch('/v1/messaging/providers/apns/:providerId') ->label('event', 'providers.[providerId].update') ->label('scope', 'providers.write') ->label('resourceType', RESOURCE_TYPE_PROVIDERS) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'providers', - name: 'updateApnsProvider', - description: '/docs/references/messaging/update-apns-provider.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_PROVIDER, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'providers', + name: 'updateApnsProvider', + description: '/docs/references/messaging/update-apns-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROVIDER, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateAPNSProvider', + ), + ), + new Method( + namespace: 'messaging', + group: 'providers', + name: 'updateAPNSProvider', + description: '/docs/references/messaging/update-apns-provider.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROVIDER, + ) + ] + ) + ]) ->param('providerId', '', new UID(), 'Provider ID.') ->param('name', '', new Text(128), 'Provider name.', true) ->param('enabled', null, new Boolean(), 'Set as enabled.', true) @@ -3024,19 +3139,38 @@ App::post('/v1/messaging/messages/sms') ->label('event', 'messages.[messageId].create') ->label('scope', 'messages.write') ->label('resourceType', RESOURCE_TYPE_MESSAGES) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'messages', - name: 'createSms', - description: '/docs/references/messaging/create-sms.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_CREATED, - model: Response::MODEL_MESSAGE, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'messages', + name: 'createSms', + description: '/docs/references/messaging/create-sms.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MESSAGE, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createSMS', + ), + ), + new Method( + namespace: 'messaging', + group: 'messages', + name: 'createSMS', + description: '/docs/references/messaging/create-sms.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MESSAGE, + ) + ] + ) + ]) ->param('messageId', '', new CustomId(), 'Message 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.') ->param('content', '', new Text(64230), 'SMS Content.') ->param('topics', [], new ArrayList(new UID()), 'List of Topic IDs.', true) @@ -3851,19 +3985,38 @@ App::patch('/v1/messaging/messages/sms/:messageId') ->label('event', 'messages.[messageId].update') ->label('scope', 'messages.write') ->label('resourceType', RESOURCE_TYPE_MESSAGES) - ->label('sdk', new Method( - namespace: 'messaging', - group: 'messages', - name: 'updateSms', - description: '/docs/references/messaging/update-sms.md', - auth: [AuthType::ADMIN, AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MESSAGE, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'messaging', + group: 'messages', + name: 'updateSms', + description: '/docs/references/messaging/update-sms.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MESSAGE, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateSMS', + ), + ), + new Method( + namespace: 'messaging', + group: 'messages', + name: 'updateSMS', + description: '/docs/references/messaging/update-sms.md', + auth: [AuthType::ADMIN, AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MESSAGE, + ) + ] + ) + ]) ->param('messageId', '', new UID(), 'Message ID.') ->param('topics', null, new ArrayList(new UID()), 'List of Topic IDs.', true) ->param('users', null, new ArrayList(new UID()), 'List of User IDs.', true) diff --git a/app/controllers/api/projects.php b/app/controllers/api/projects.php index f201929021..b77577dc4a 100644 --- a/app/controllers/api/projects.php +++ b/app/controllers/api/projects.php @@ -12,6 +12,7 @@ use Appwrite\Network\Platform; use Appwrite\Network\Validator\Email; use Appwrite\SDK\AuthType; use Appwrite\SDK\ContentType; +use Appwrite\SDK\Deprecated; use Appwrite\SDK\Method; use Appwrite\SDK\Response as SDKResponse; use Appwrite\Template\Template; @@ -619,19 +620,38 @@ App::patch('/v1/projects/:projectId/api') ->desc('Update API status') ->groups(['api', 'projects']) ->label('scope', 'projects.write') - ->label('sdk', new Method( - namespace: 'projects', - group: 'projects', - name: 'updateApiStatus', - description: '/docs/references/projects/update-api-status.md', - auth: [AuthType::ADMIN], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_PROJECT, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'projects', + group: 'projects', + name: 'updateApiStatus', + description: '/docs/references/projects/update-api-status.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROJECT, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateAPIStatus', + ), + ), + new Method( + namespace: 'projects', + group: 'projects', + name: 'updateAPIStatus', + description: '/docs/references/projects/update-api-status.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROJECT, + ) + ] + ) + ]) ->param('projectId', '', new UID(), 'Project unique ID.') ->param('api', '', new WhiteList(array_keys(Config::getParam('apis')), true), 'API name.') ->param('status', null, new Boolean(), 'API status.') @@ -657,19 +677,38 @@ App::patch('/v1/projects/:projectId/api/all') ->desc('Update all API status') ->groups(['api', 'projects']) ->label('scope', 'projects.write') - ->label('sdk', new Method( - namespace: 'projects', - group: 'projects', - name: 'updateApiStatusAll', - description: '/docs/references/projects/update-api-status-all.md', - auth: [AuthType::ADMIN], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_PROJECT, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'projects', + group: 'projects', + name: 'updateApiStatusAll', + description: '/docs/references/projects/update-api-status-all.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROJECT, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateAPIStatusAll', + ), + ), + new Method( + namespace: 'projects', + group: 'projects', + name: 'updateAPIStatusAll', + description: '/docs/references/projects/update-api-status-all.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROJECT, + ) + ] + ) + ]) ->param('projectId', '', new UID(), 'Project unique ID.') ->param('status', null, new Boolean(), 'API status.') ->inject('response') @@ -2018,19 +2057,38 @@ App::patch('/v1/projects/:projectId/smtp') ->desc('Update SMTP') ->groups(['api', 'projects']) ->label('scope', 'projects.write') - ->label('sdk', new Method( - namespace: 'projects', - group: 'templates', - name: 'updateSmtp', - description: '/docs/references/projects/update-smtp.md', - auth: [AuthType::ADMIN], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_PROJECT, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'projects', + group: 'templates', + name: 'updateSmtp', + description: '/docs/references/projects/update-smtp.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROJECT, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateSMTP', + ), + ), + new Method( + namespace: 'projects', + group: 'templates', + name: 'updateSMTP', + description: '/docs/references/projects/update-smtp.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_PROJECT, + ) + ] + ) + ]) ->param('projectId', '', new UID(), 'Project unique ID.') ->param('enabled', false, new Boolean(), 'Enable custom SMTP service') ->param('senderName', '', new Text(255, 0), 'Name of the email sender', true) @@ -2115,19 +2173,38 @@ App::post('/v1/projects/:projectId/smtp/tests') ->desc('Create SMTP test') ->groups(['api', 'projects']) ->label('scope', 'projects.write') - ->label('sdk', new Method( - namespace: 'projects', - group: 'templates', - name: 'createSmtpTest', - description: '/docs/references/projects/create-smtp-test.md', - auth: [AuthType::ADMIN], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_NOCONTENT, - model: Response::MODEL_NONE, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'projects', + group: 'templates', + name: 'createSmtpTest', + description: '/docs/references/projects/create-smtp-test.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_NOCONTENT, + model: Response::MODEL_NONE, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createSMTPTest', + ), + ), + new Method( + namespace: 'projects', + group: 'templates', + name: 'createSMTPTest', + description: '/docs/references/projects/create-smtp-test.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_NOCONTENT, + model: Response::MODEL_NONE, + ) + ] + ) + ]) ->param('projectId', '', new UID(), 'Project unique ID.') ->param('emails', [], new ArrayList(new Email(), 10), 'Array of emails to send test email to. Maximum of 10 emails are allowed.') ->param('senderName', System::getEnv('_APP_SYSTEM_EMAIL_NAME', APP_NAME . ' Server'), new Text(255, 0), 'Name of the email sender') @@ -2190,19 +2267,38 @@ App::get('/v1/projects/:projectId/templates/sms/:type/:locale') ->desc('Get custom SMS template') ->groups(['api', 'projects']) ->label('scope', 'projects.write') - ->label('sdk', new Method( - namespace: 'projects', - group: 'templates', - name: 'getSmsTemplate', - description: '/docs/references/projects/get-sms-template.md', - auth: [AuthType::ADMIN], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_SMS_TEMPLATE, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'projects', + group: 'templates', + name: 'getSmsTemplate', + description: '/docs/references/projects/get-sms-template.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SMS_TEMPLATE, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'getSMSTemplate', + ), + ), + new Method( + namespace: 'projects', + group: 'templates', + name: 'getSMSTemplate', + description: '/docs/references/projects/get-sms-template.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SMS_TEMPLATE, + ) + ] + ) + ]) ->param('projectId', '', new UID(), 'Project unique ID.') ->param('type', '', new WhiteList(Config::getParam('locale-templates')['sms'] ?? []), 'Template type') ->param('locale', '', fn ($localeCodes) => new WhiteList($localeCodes), 'Template locale', false, ['localeCodes']) @@ -2337,19 +2433,38 @@ App::patch('/v1/projects/:projectId/templates/sms/:type/:locale') ->desc('Update custom SMS template') ->groups(['api', 'projects']) ->label('scope', 'projects.write') - ->label('sdk', new Method( - namespace: 'projects', - group: 'templates', - name: 'updateSmsTemplate', - description: '/docs/references/projects/update-sms-template.md', - auth: [AuthType::ADMIN], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_SMS_TEMPLATE, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'projects', + group: 'templates', + name: 'updateSmsTemplate', + description: '/docs/references/projects/update-sms-template.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SMS_TEMPLATE, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateSMSTemplate', + ), + ), + new Method( + namespace: 'projects', + group: 'templates', + name: 'updateSMSTemplate', + description: '/docs/references/projects/update-sms-template.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SMS_TEMPLATE, + ) + ] + ) + ]) ->param('projectId', '', new UID(), 'Project unique ID.') ->param('type', '', new WhiteList(Config::getParam('locale-templates')['sms'] ?? []), 'Template type') ->param('locale', '', fn ($localeCodes) => new WhiteList($localeCodes), 'Template locale', false, ['localeCodes']) @@ -2441,20 +2556,40 @@ App::delete('/v1/projects/:projectId/templates/sms/:type/:locale') ->desc('Reset custom SMS template') ->groups(['api', 'projects']) ->label('scope', 'projects.write') - ->label('sdk', new Method( - namespace: 'projects', - group: 'templates', - name: 'deleteSmsTemplate', - description: '/docs/references/projects/delete-sms-template.md', - auth: [AuthType::ADMIN], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_SMS_TEMPLATE, - ) - ], - contentType: ContentType::JSON - )) + ->label('sdk', [ + new Method( + namespace: 'projects', + group: 'templates', + name: 'deleteSmsTemplate', + description: '/docs/references/projects/delete-sms-template.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SMS_TEMPLATE, + ) + ], + contentType: ContentType::JSON, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'deleteSMSTemplate', + ), + ), + new Method( + namespace: 'projects', + group: 'templates', + name: 'deleteSMSTemplate', + description: '/docs/references/projects/delete-sms-template.md', + auth: [AuthType::ADMIN], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_SMS_TEMPLATE, + ) + ], + contentType: ContentType::JSON + ) + ]) ->param('projectId', '', new UID(), 'Project unique ID.') ->param('type', '', new WhiteList(Config::getParam('locale-templates')['sms'] ?? []), 'Template type') ->param('locale', '', fn ($localeCodes) => new WhiteList($localeCodes), 'Template locale', false, ['localeCodes']) diff --git a/app/controllers/api/users.php b/app/controllers/api/users.php index 993f8a03c9..ff1df36dc2 100644 --- a/app/controllers/api/users.php +++ b/app/controllers/api/users.php @@ -19,6 +19,7 @@ use Appwrite\Hooks\Hooks; use Appwrite\Network\Validator\Email; use Appwrite\SDK\AuthType; use Appwrite\SDK\ContentType; +use Appwrite\SDK\Deprecated; use Appwrite\SDK\Method; use Appwrite\SDK\Response as SDKResponse; use Appwrite\Utopia\Database\Validator\CustomId; @@ -1756,19 +1757,38 @@ App::patch('/v1/users/:userId/mfa') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') ->label('usage.metric', 'users.{scope}.requests.update') - ->label('sdk', new Method( - namespace: 'users', - group: 'users', - name: 'updateMfa', - description: '/docs/references/users/update-user-mfa.md', - auth: [AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_USER, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'users', + group: 'users', + name: 'updateMfa', + description: '/docs/references/users/update-user-mfa.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_USER, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateMFA', + ), + ), + new Method( + namespace: 'users', + group: 'users', + name: 'updateMFA', + description: '/docs/references/users/update-user-mfa.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_USER, + ) + ] + ) + ]) ->param('userId', '', new UID(), 'User ID.') ->param('mfa', null, new Boolean(), 'Enable or disable MFA.') ->inject('response') @@ -1796,19 +1816,38 @@ App::get('/v1/users/:userId/mfa/factors') ->groups(['api', 'users']) ->label('scope', 'users.read') ->label('usage.metric', 'users.{scope}.requests.read') - ->label('sdk', new Method( - namespace: 'users', - group: 'mfa', - name: 'listMfaFactors', - description: '/docs/references/users/list-mfa-factors.md', - auth: [AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MFA_FACTORS, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'users', + group: 'mfa', + name: 'listMfaFactors', + description: '/docs/references/users/list-mfa-factors.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_FACTORS, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'listMFAFactors', + ), + ), + new Method( + namespace: 'users', + group: 'mfa', + name: 'listMFAFactors', + description: '/docs/references/users/list-mfa-factors.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_FACTORS, + ) + ] + ) + ]) ->param('userId', '', new UID(), 'User ID.') ->inject('response') ->inject('dbForProject') @@ -1835,19 +1874,38 @@ App::get('/v1/users/:userId/mfa/recovery-codes') ->groups(['api', 'users']) ->label('scope', 'users.read') ->label('usage.metric', 'users.{scope}.requests.read') - ->label('sdk', new Method( - namespace: 'users', - group: 'mfa', - name: 'getMfaRecoveryCodes', - description: '/docs/references/users/get-mfa-recovery-codes.md', - auth: [AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MFA_RECOVERY_CODES, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'users', + group: 'mfa', + name: 'getMfaRecoveryCodes', + description: '/docs/references/users/get-mfa-recovery-codes.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'getMFARecoveryCodes', + ), + ), + new Method( + namespace: 'users', + group: 'mfa', + name: 'getMFARecoveryCodes', + description: '/docs/references/users/get-mfa-recovery-codes.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ] + ) + ]) ->param('userId', '', new UID(), 'User ID.') ->inject('response') ->inject('dbForProject') @@ -1880,19 +1938,38 @@ App::patch('/v1/users/:userId/mfa/recovery-codes') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') ->label('usage.metric', 'users.{scope}.requests.update') - ->label('sdk', new Method( - namespace: 'users', - group: 'mfa', - name: 'createMfaRecoveryCodes', - description: '/docs/references/users/create-mfa-recovery-codes.md', - auth: [AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_CREATED, - model: Response::MODEL_MFA_RECOVERY_CODES, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'users', + group: 'mfa', + name: 'createMfaRecoveryCodes', + description: '/docs/references/users/create-mfa-recovery-codes.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'createMFARecoveryCodes', + ), + ), + new Method( + namespace: 'users', + group: 'mfa', + name: 'createMFARecoveryCodes', + description: '/docs/references/users/create-mfa-recovery-codes.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_CREATED, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ] + ) + ]) ->param('userId', '', new UID(), 'User ID.') ->inject('response') ->inject('dbForProject') @@ -1932,19 +2009,38 @@ App::put('/v1/users/:userId/mfa/recovery-codes') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') ->label('usage.metric', 'users.{scope}.requests.update') - ->label('sdk', new Method( - namespace: 'users', - group: 'mfa', - name: 'updateMfaRecoveryCodes', - description: '/docs/references/users/update-mfa-recovery-codes.md', - auth: [AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_OK, - model: Response::MODEL_MFA_RECOVERY_CODES, - ) - ] - )) + ->label('sdk', [ + new Method( + namespace: 'users', + group: 'mfa', + name: 'updateMfaRecoveryCodes', + description: '/docs/references/users/update-mfa-recovery-codes.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ], + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'updateMFARecoveryCodes', + ), + ), + new Method( + namespace: 'users', + group: 'mfa', + name: 'updateMFARecoveryCodes', + description: '/docs/references/users/update-mfa-recovery-codes.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_OK, + model: Response::MODEL_MFA_RECOVERY_CODES, + ) + ] + ) + ]) ->param('userId', '', new UID(), 'User ID.') ->inject('response') ->inject('dbForProject') @@ -1983,20 +2079,40 @@ App::delete('/v1/users/:userId/mfa/authenticators/:type') ->label('audits.resource', 'user/{response.$id}') ->label('audits.userId', '{response.$id}') ->label('usage.metric', 'users.{scope}.requests.update') - ->label('sdk', new Method( - namespace: 'users', - group: 'mfa', - name: 'deleteMfaAuthenticator', - description: '/docs/references/users/delete-mfa-authenticator.md', - auth: [AuthType::KEY], - responses: [ - new SDKResponse( - code: Response::STATUS_CODE_NOCONTENT, - model: Response::MODEL_NONE, - ) - ], - contentType: ContentType::NONE - )) + ->label('sdk', [ + new Method( + namespace: 'users', + group: 'mfa', + name: 'deleteMfaAuthenticator', + description: '/docs/references/users/delete-mfa-authenticator.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_NOCONTENT, + model: Response::MODEL_NONE, + ) + ], + contentType: ContentType::NONE, + deprecated: new Deprecated( + since: '1.8.0', + replaceWith: 'deleteMFAAuthenticator', + ), + ), + new Method( + namespace: 'users', + group: 'mfa', + name: 'deleteMFAAuthenticator', + description: '/docs/references/users/delete-mfa-authenticator.md', + auth: [AuthType::KEY], + responses: [ + new SDKResponse( + code: Response::STATUS_CODE_NOCONTENT, + model: Response::MODEL_NONE, + ) + ], + contentType: ContentType::NONE + ) + ]) ->param('userId', '', new UID(), 'User ID.') ->param('type', null, new WhiteList([Type::TOTP]), 'Type of authenticator.') ->inject('response') From 842dce2659c4513f3c16c90d163ae46737642984 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 21 Aug 2025 02:20:05 +1200 Subject: [PATCH 2/4] Update tablesDb -> tablesDB --- app/config/specs/open-api3-1.8.x-client.json | 600 +++- app/config/specs/open-api3-1.8.x-console.json | 2484 ++++++++++++++--- app/config/specs/open-api3-1.8.x-server.json | 1968 +++++++++++-- app/config/specs/open-api3-latest-client.json | 600 +++- .../specs/open-api3-latest-console.json | 2484 ++++++++++++++--- app/config/specs/open-api3-latest-server.json | 1968 +++++++++++-- app/config/specs/swagger2-1.8.x-client.json | 600 +++- app/config/specs/swagger2-1.8.x-console.json | 2484 ++++++++++++++--- app/config/specs/swagger2-1.8.x-server.json | 1968 +++++++++++-- app/config/specs/swagger2-latest-client.json | 600 +++- app/config/specs/swagger2-latest-console.json | 2484 ++++++++++++++--- app/config/specs/swagger2-latest-server.json | 1968 +++++++++++-- composer.lock | 12 +- .../java/tablesdb/create-row.md | 4 +- .../java/tablesdb/decrement-row-column.md | 4 +- .../java/tablesdb/delete-row.md | 4 +- .../client-android/java/tablesdb/get-row.md | 4 +- .../java/tablesdb/increment-row-column.md | 4 +- .../client-android/java/tablesdb/list-rows.md | 4 +- .../java/tablesdb/update-row.md | 4 +- .../java/tablesdb/upsert-row.md | 4 +- .../kotlin/tablesdb/create-row.md | 4 +- .../kotlin/tablesdb/decrement-row-column.md | 4 +- .../kotlin/tablesdb/delete-row.md | 4 +- .../client-android/kotlin/tablesdb/get-row.md | 4 +- .../kotlin/tablesdb/increment-row-column.md | 4 +- .../kotlin/tablesdb/list-rows.md | 4 +- .../kotlin/tablesdb/update-row.md | 4 +- .../kotlin/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../client-apple/examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/create-row.md | 2 +- .../examples/tablesdb/decrement-row-column.md | 2 +- .../examples/tablesdb/delete-row.md | 2 +- .../examples/tablesdb/increment-row-column.md | 2 +- .../examples/tablesdb/update-row.md | 2 +- .../examples/tablesdb/upsert-row.md | 2 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../client-web/examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../client-web/examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../tablesdb/create-boolean-column.md | 2 +- .../tablesdb/create-datetime-column.md | 2 +- .../examples/tablesdb/create-email-column.md | 2 +- .../examples/tablesdb/create-enum-column.md | 2 +- .../examples/tablesdb/create-float-column.md | 2 +- .../examples/tablesdb/create-index.md | 2 +- .../tablesdb/create-integer-column.md | 2 +- .../examples/tablesdb/create-ip-column.md | 2 +- .../tablesdb/create-relationship-column.md | 2 +- .../examples/tablesdb/create-row.md | 2 +- .../examples/tablesdb/create-rows.md | 2 +- .../examples/tablesdb/create-string-column.md | 2 +- .../examples/tablesdb/create-table.md | 2 +- .../examples/tablesdb/create-url-column.md | 2 +- .../console-cli/examples/tablesdb/create.md | 2 +- .../examples/tablesdb/decrement-row-column.md | 2 +- .../examples/tablesdb/delete-column.md | 2 +- .../examples/tablesdb/delete-index.md | 2 +- .../examples/tablesdb/delete-row.md | 2 +- .../examples/tablesdb/delete-rows.md | 2 +- .../examples/tablesdb/delete-table.md | 2 +- .../console-cli/examples/tablesdb/delete.md | 2 +- .../examples/tablesdb/get-column.md | 2 +- .../examples/tablesdb/get-index.md | 2 +- .../console-cli/examples/tablesdb/get-row.md | 2 +- .../examples/tablesdb/get-table-usage.md | 2 +- .../examples/tablesdb/get-table.md | 2 +- .../examples/tablesdb/get-usage.md | 2 +- .../console-cli/examples/tablesdb/get.md | 2 +- .../examples/tablesdb/increment-row-column.md | 2 +- .../examples/tablesdb/list-columns.md | 2 +- .../examples/tablesdb/list-indexes.md | 2 +- .../examples/tablesdb/list-row-logs.md | 2 +- .../examples/tablesdb/list-rows.md | 2 +- .../examples/tablesdb/list-table-logs.md | 2 +- .../examples/tablesdb/list-tables.md | 2 +- .../examples/tablesdb/list-usage.md | 2 +- .../console-cli/examples/tablesdb/list.md | 2 +- .../tablesdb/update-boolean-column.md | 2 +- .../tablesdb/update-datetime-column.md | 2 +- .../examples/tablesdb/update-email-column.md | 2 +- .../examples/tablesdb/update-enum-column.md | 2 +- .../examples/tablesdb/update-float-column.md | 2 +- .../tablesdb/update-integer-column.md | 2 +- .../examples/tablesdb/update-ip-column.md | 2 +- .../tablesdb/update-relationship-column.md | 2 +- .../examples/tablesdb/update-row.md | 2 +- .../examples/tablesdb/update-rows.md | 2 +- .../examples/tablesdb/update-string-column.md | 2 +- .../examples/tablesdb/update-table.md | 2 +- .../examples/tablesdb/update-url-column.md | 2 +- .../console-cli/examples/tablesdb/update.md | 2 +- .../examples/tablesdb/upsert-row.md | 2 +- .../examples/tablesdb/upsert-rows.md | 2 +- .../tablesdb/create-boolean-column.md | 4 +- .../tablesdb/create-datetime-column.md | 4 +- .../examples/tablesdb/create-email-column.md | 4 +- .../examples/tablesdb/create-enum-column.md | 4 +- .../examples/tablesdb/create-float-column.md | 4 +- .../examples/tablesdb/create-index.md | 4 +- .../tablesdb/create-integer-column.md | 4 +- .../examples/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/create-rows.md | 4 +- .../examples/tablesdb/create-string-column.md | 4 +- .../examples/tablesdb/create-table.md | 4 +- .../examples/tablesdb/create-url-column.md | 4 +- .../console-web/examples/tablesdb/create.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-column.md | 4 +- .../examples/tablesdb/delete-index.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/delete-rows.md | 4 +- .../examples/tablesdb/delete-table.md | 4 +- .../console-web/examples/tablesdb/delete.md | 4 +- .../examples/tablesdb/get-column.md | 4 +- .../examples/tablesdb/get-index.md | 4 +- .../console-web/examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/get-table-usage.md | 4 +- .../examples/tablesdb/get-table.md | 4 +- .../examples/tablesdb/get-usage.md | 4 +- .../console-web/examples/tablesdb/get.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-columns.md | 4 +- .../examples/tablesdb/list-indexes.md | 4 +- .../examples/tablesdb/list-row-logs.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/list-table-logs.md | 4 +- .../examples/tablesdb/list-tables.md | 4 +- .../examples/tablesdb/list-usage.md | 4 +- .../console-web/examples/tablesdb/list.md | 4 +- .../tablesdb/update-boolean-column.md | 4 +- .../tablesdb/update-datetime-column.md | 4 +- .../examples/tablesdb/update-email-column.md | 4 +- .../examples/tablesdb/update-enum-column.md | 4 +- .../examples/tablesdb/update-float-column.md | 4 +- .../tablesdb/update-integer-column.md | 4 +- .../examples/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/update-rows.md | 4 +- .../examples/tablesdb/update-string-column.md | 4 +- .../examples/tablesdb/update-table.md | 4 +- .../examples/tablesdb/update-url-column.md | 4 +- .../console-web/examples/tablesdb/update.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/upsert-rows.md | 4 +- .../tablesdb/create-boolean-column.md | 4 +- .../tablesdb/create-datetime-column.md | 4 +- .../examples/tablesdb/create-email-column.md | 4 +- .../examples/tablesdb/create-enum-column.md | 4 +- .../examples/tablesdb/create-float-column.md | 4 +- .../examples/tablesdb/create-index.md | 4 +- .../tablesdb/create-integer-column.md | 4 +- .../examples/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/create-rows.md | 4 +- .../examples/tablesdb/create-string-column.md | 4 +- .../examples/tablesdb/create-table.md | 4 +- .../examples/tablesdb/create-url-column.md | 4 +- .../server-dart/examples/tablesdb/create.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-column.md | 4 +- .../examples/tablesdb/delete-index.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/delete-rows.md | 4 +- .../examples/tablesdb/delete-table.md | 4 +- .../server-dart/examples/tablesdb/delete.md | 4 +- .../examples/tablesdb/get-column.md | 4 +- .../examples/tablesdb/get-index.md | 4 +- .../server-dart/examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/get-table.md | 4 +- .../server-dart/examples/tablesdb/get.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-columns.md | 4 +- .../examples/tablesdb/list-indexes.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/list-tables.md | 4 +- .../server-dart/examples/tablesdb/list.md | 4 +- .../tablesdb/update-boolean-column.md | 4 +- .../tablesdb/update-datetime-column.md | 4 +- .../examples/tablesdb/update-email-column.md | 4 +- .../examples/tablesdb/update-enum-column.md | 4 +- .../examples/tablesdb/update-float-column.md | 4 +- .../tablesdb/update-integer-column.md | 4 +- .../examples/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/update-rows.md | 4 +- .../examples/tablesdb/update-string-column.md | 4 +- .../examples/tablesdb/update-table.md | 4 +- .../examples/tablesdb/update-url-column.md | 4 +- .../server-dart/examples/tablesdb/update.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/upsert-rows.md | 4 +- .../tablesdb/create-boolean-column.md | 4 +- .../tablesdb/create-datetime-column.md | 4 +- .../examples/tablesdb/create-email-column.md | 4 +- .../examples/tablesdb/create-enum-column.md | 4 +- .../examples/tablesdb/create-float-column.md | 4 +- .../examples/tablesdb/create-index.md | 4 +- .../tablesdb/create-integer-column.md | 4 +- .../examples/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/create-rows.md | 4 +- .../examples/tablesdb/create-string-column.md | 4 +- .../examples/tablesdb/create-table.md | 4 +- .../examples/tablesdb/create-url-column.md | 4 +- .../server-deno/examples/tablesdb/create.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-column.md | 4 +- .../examples/tablesdb/delete-index.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/delete-rows.md | 4 +- .../examples/tablesdb/delete-table.md | 4 +- .../server-deno/examples/tablesdb/delete.md | 4 +- .../examples/tablesdb/get-column.md | 4 +- .../examples/tablesdb/get-index.md | 4 +- .../server-deno/examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/get-table.md | 4 +- .../server-deno/examples/tablesdb/get.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-columns.md | 4 +- .../examples/tablesdb/list-indexes.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/list-tables.md | 4 +- .../server-deno/examples/tablesdb/list.md | 4 +- .../tablesdb/update-boolean-column.md | 4 +- .../tablesdb/update-datetime-column.md | 4 +- .../examples/tablesdb/update-email-column.md | 4 +- .../examples/tablesdb/update-enum-column.md | 4 +- .../examples/tablesdb/update-float-column.md | 4 +- .../tablesdb/update-integer-column.md | 4 +- .../examples/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/update-rows.md | 4 +- .../examples/tablesdb/update-string-column.md | 4 +- .../examples/tablesdb/update-table.md | 4 +- .../examples/tablesdb/update-url-column.md | 4 +- .../server-deno/examples/tablesdb/update.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/upsert-rows.md | 4 +- .../tablesdb/create-boolean-column.md | 4 +- .../tablesdb/create-datetime-column.md | 4 +- .../examples/tablesdb/create-email-column.md | 4 +- .../examples/tablesdb/create-enum-column.md | 4 +- .../examples/tablesdb/create-float-column.md | 4 +- .../examples/tablesdb/create-index.md | 4 +- .../tablesdb/create-integer-column.md | 4 +- .../examples/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/create-rows.md | 4 +- .../examples/tablesdb/create-string-column.md | 4 +- .../examples/tablesdb/create-table.md | 4 +- .../examples/tablesdb/create-url-column.md | 4 +- .../server-dotnet/examples/tablesdb/create.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-column.md | 4 +- .../examples/tablesdb/delete-index.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/delete-rows.md | 4 +- .../examples/tablesdb/delete-table.md | 4 +- .../server-dotnet/examples/tablesdb/delete.md | 4 +- .../examples/tablesdb/get-column.md | 4 +- .../examples/tablesdb/get-index.md | 4 +- .../examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/get-table.md | 4 +- .../server-dotnet/examples/tablesdb/get.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-columns.md | 4 +- .../examples/tablesdb/list-indexes.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/list-tables.md | 4 +- .../server-dotnet/examples/tablesdb/list.md | 4 +- .../tablesdb/update-boolean-column.md | 4 +- .../tablesdb/update-datetime-column.md | 4 +- .../examples/tablesdb/update-email-column.md | 4 +- .../examples/tablesdb/update-enum-column.md | 4 +- .../examples/tablesdb/update-float-column.md | 4 +- .../tablesdb/update-integer-column.md | 4 +- .../examples/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/update-rows.md | 4 +- .../examples/tablesdb/update-string-column.md | 4 +- .../examples/tablesdb/update-table.md | 4 +- .../examples/tablesdb/update-url-column.md | 4 +- .../server-dotnet/examples/tablesdb/update.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/upsert-rows.md | 4 +- .../tablesdb/create-boolean-column.md | 2 +- .../tablesdb/create-datetime-column.md | 2 +- .../examples/tablesdb/create-email-column.md | 2 +- .../examples/tablesdb/create-enum-column.md | 2 +- .../examples/tablesdb/create-float-column.md | 2 +- .../examples/tablesdb/create-index.md | 2 +- .../tablesdb/create-integer-column.md | 2 +- .../examples/tablesdb/create-ip-column.md | 2 +- .../tablesdb/create-relationship-column.md | 2 +- .../examples/tablesdb/create-row.md | 2 +- .../examples/tablesdb/create-rows.md | 2 +- .../examples/tablesdb/create-string-column.md | 2 +- .../examples/tablesdb/create-table.md | 2 +- .../examples/tablesdb/create-url-column.md | 2 +- .../examples/tablesdb/create.md | 2 +- .../examples/tablesdb/decrement-row-column.md | 2 +- .../examples/tablesdb/delete-column.md | 2 +- .../examples/tablesdb/delete-index.md | 2 +- .../examples/tablesdb/delete-row.md | 2 +- .../examples/tablesdb/delete-rows.md | 2 +- .../examples/tablesdb/delete-table.md | 2 +- .../examples/tablesdb/delete.md | 2 +- .../examples/tablesdb/increment-row-column.md | 2 +- .../tablesdb/update-boolean-column.md | 2 +- .../tablesdb/update-datetime-column.md | 2 +- .../examples/tablesdb/update-email-column.md | 2 +- .../examples/tablesdb/update-enum-column.md | 2 +- .../examples/tablesdb/update-float-column.md | 2 +- .../tablesdb/update-integer-column.md | 2 +- .../examples/tablesdb/update-ip-column.md | 2 +- .../tablesdb/update-relationship-column.md | 2 +- .../examples/tablesdb/update-row.md | 2 +- .../examples/tablesdb/update-rows.md | 2 +- .../examples/tablesdb/update-string-column.md | 2 +- .../examples/tablesdb/update-table.md | 2 +- .../examples/tablesdb/update-url-column.md | 2 +- .../examples/tablesdb/update.md | 2 +- .../examples/tablesdb/upsert-row.md | 2 +- .../examples/tablesdb/upsert-rows.md | 2 +- .../java/tablesdb/create-boolean-column.md | 4 +- .../java/tablesdb/create-datetime-column.md | 4 +- .../java/tablesdb/create-email-column.md | 4 +- .../java/tablesdb/create-enum-column.md | 4 +- .../java/tablesdb/create-float-column.md | 4 +- .../java/tablesdb/create-index.md | 4 +- .../java/tablesdb/create-integer-column.md | 4 +- .../java/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../server-kotlin/java/tablesdb/create-row.md | 4 +- .../java/tablesdb/create-rows.md | 4 +- .../java/tablesdb/create-string-column.md | 4 +- .../java/tablesdb/create-table.md | 4 +- .../java/tablesdb/create-url-column.md | 4 +- .../server-kotlin/java/tablesdb/create.md | 4 +- .../java/tablesdb/decrement-row-column.md | 4 +- .../java/tablesdb/delete-column.md | 4 +- .../java/tablesdb/delete-index.md | 4 +- .../server-kotlin/java/tablesdb/delete-row.md | 4 +- .../java/tablesdb/delete-rows.md | 4 +- .../java/tablesdb/delete-table.md | 4 +- .../server-kotlin/java/tablesdb/delete.md | 4 +- .../server-kotlin/java/tablesdb/get-column.md | 4 +- .../server-kotlin/java/tablesdb/get-index.md | 4 +- .../server-kotlin/java/tablesdb/get-row.md | 4 +- .../server-kotlin/java/tablesdb/get-table.md | 4 +- .../1.8.x/server-kotlin/java/tablesdb/get.md | 4 +- .../java/tablesdb/increment-row-column.md | 4 +- .../java/tablesdb/list-columns.md | 4 +- .../java/tablesdb/list-indexes.md | 4 +- .../server-kotlin/java/tablesdb/list-rows.md | 4 +- .../java/tablesdb/list-tables.md | 4 +- .../1.8.x/server-kotlin/java/tablesdb/list.md | 4 +- .../java/tablesdb/update-boolean-column.md | 4 +- .../java/tablesdb/update-datetime-column.md | 4 +- .../java/tablesdb/update-email-column.md | 4 +- .../java/tablesdb/update-enum-column.md | 4 +- .../java/tablesdb/update-float-column.md | 4 +- .../java/tablesdb/update-integer-column.md | 4 +- .../java/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../server-kotlin/java/tablesdb/update-row.md | 4 +- .../java/tablesdb/update-rows.md | 4 +- .../java/tablesdb/update-string-column.md | 4 +- .../java/tablesdb/update-table.md | 4 +- .../java/tablesdb/update-url-column.md | 4 +- .../server-kotlin/java/tablesdb/update.md | 4 +- .../server-kotlin/java/tablesdb/upsert-row.md | 4 +- .../java/tablesdb/upsert-rows.md | 4 +- .../kotlin/tablesdb/create-boolean-column.md | 4 +- .../kotlin/tablesdb/create-datetime-column.md | 4 +- .../kotlin/tablesdb/create-email-column.md | 4 +- .../kotlin/tablesdb/create-enum-column.md | 4 +- .../kotlin/tablesdb/create-float-column.md | 4 +- .../kotlin/tablesdb/create-index.md | 4 +- .../kotlin/tablesdb/create-integer-column.md | 4 +- .../kotlin/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../kotlin/tablesdb/create-row.md | 4 +- .../kotlin/tablesdb/create-rows.md | 4 +- .../kotlin/tablesdb/create-string-column.md | 4 +- .../kotlin/tablesdb/create-table.md | 4 +- .../kotlin/tablesdb/create-url-column.md | 4 +- .../server-kotlin/kotlin/tablesdb/create.md | 4 +- .../kotlin/tablesdb/decrement-row-column.md | 4 +- .../kotlin/tablesdb/delete-column.md | 4 +- .../kotlin/tablesdb/delete-index.md | 4 +- .../kotlin/tablesdb/delete-row.md | 4 +- .../kotlin/tablesdb/delete-rows.md | 4 +- .../kotlin/tablesdb/delete-table.md | 4 +- .../server-kotlin/kotlin/tablesdb/delete.md | 4 +- .../kotlin/tablesdb/get-column.md | 4 +- .../kotlin/tablesdb/get-index.md | 4 +- .../server-kotlin/kotlin/tablesdb/get-row.md | 4 +- .../kotlin/tablesdb/get-table.md | 4 +- .../server-kotlin/kotlin/tablesdb/get.md | 4 +- .../kotlin/tablesdb/increment-row-column.md | 4 +- .../kotlin/tablesdb/list-columns.md | 4 +- .../kotlin/tablesdb/list-indexes.md | 4 +- .../kotlin/tablesdb/list-rows.md | 4 +- .../kotlin/tablesdb/list-tables.md | 4 +- .../server-kotlin/kotlin/tablesdb/list.md | 4 +- .../kotlin/tablesdb/update-boolean-column.md | 4 +- .../kotlin/tablesdb/update-datetime-column.md | 4 +- .../kotlin/tablesdb/update-email-column.md | 4 +- .../kotlin/tablesdb/update-enum-column.md | 4 +- .../kotlin/tablesdb/update-float-column.md | 4 +- .../kotlin/tablesdb/update-integer-column.md | 4 +- .../kotlin/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../kotlin/tablesdb/update-row.md | 4 +- .../kotlin/tablesdb/update-rows.md | 4 +- .../kotlin/tablesdb/update-string-column.md | 4 +- .../kotlin/tablesdb/update-table.md | 4 +- .../kotlin/tablesdb/update-url-column.md | 4 +- .../server-kotlin/kotlin/tablesdb/update.md | 4 +- .../kotlin/tablesdb/upsert-row.md | 4 +- .../kotlin/tablesdb/upsert-rows.md | 4 +- .../tablesdb/create-boolean-column.md | 4 +- .../tablesdb/create-datetime-column.md | 4 +- .../examples/tablesdb/create-email-column.md | 4 +- .../examples/tablesdb/create-enum-column.md | 4 +- .../examples/tablesdb/create-float-column.md | 4 +- .../examples/tablesdb/create-index.md | 4 +- .../tablesdb/create-integer-column.md | 4 +- .../examples/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/create-rows.md | 4 +- .../examples/tablesdb/create-string-column.md | 4 +- .../examples/tablesdb/create-table.md | 4 +- .../examples/tablesdb/create-url-column.md | 4 +- .../server-nodejs/examples/tablesdb/create.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-column.md | 4 +- .../examples/tablesdb/delete-index.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/delete-rows.md | 4 +- .../examples/tablesdb/delete-table.md | 4 +- .../server-nodejs/examples/tablesdb/delete.md | 4 +- .../examples/tablesdb/get-column.md | 4 +- .../examples/tablesdb/get-index.md | 4 +- .../examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/get-table.md | 4 +- .../server-nodejs/examples/tablesdb/get.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-columns.md | 4 +- .../examples/tablesdb/list-indexes.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/list-tables.md | 4 +- .../server-nodejs/examples/tablesdb/list.md | 4 +- .../tablesdb/update-boolean-column.md | 4 +- .../tablesdb/update-datetime-column.md | 4 +- .../examples/tablesdb/update-email-column.md | 4 +- .../examples/tablesdb/update-enum-column.md | 4 +- .../examples/tablesdb/update-float-column.md | 4 +- .../tablesdb/update-integer-column.md | 4 +- .../examples/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/update-rows.md | 4 +- .../examples/tablesdb/update-string-column.md | 4 +- .../examples/tablesdb/update-table.md | 4 +- .../examples/tablesdb/update-url-column.md | 4 +- .../server-nodejs/examples/tablesdb/update.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/upsert-rows.md | 4 +- .../tablesdb/create-boolean-column.md | 4 +- .../tablesdb/create-datetime-column.md | 4 +- .../examples/tablesdb/create-email-column.md | 4 +- .../examples/tablesdb/create-enum-column.md | 4 +- .../examples/tablesdb/create-float-column.md | 4 +- .../examples/tablesdb/create-index.md | 4 +- .../tablesdb/create-integer-column.md | 4 +- .../examples/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/create-rows.md | 4 +- .../examples/tablesdb/create-string-column.md | 4 +- .../examples/tablesdb/create-table.md | 4 +- .../examples/tablesdb/create-url-column.md | 4 +- .../server-php/examples/tablesdb/create.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-column.md | 4 +- .../examples/tablesdb/delete-index.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/delete-rows.md | 4 +- .../examples/tablesdb/delete-table.md | 4 +- .../server-php/examples/tablesdb/delete.md | 4 +- .../examples/tablesdb/get-column.md | 4 +- .../server-php/examples/tablesdb/get-index.md | 4 +- .../server-php/examples/tablesdb/get-row.md | 4 +- .../server-php/examples/tablesdb/get-table.md | 4 +- .../1.8.x/server-php/examples/tablesdb/get.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-columns.md | 4 +- .../examples/tablesdb/list-indexes.md | 4 +- .../server-php/examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/list-tables.md | 4 +- .../server-php/examples/tablesdb/list.md | 4 +- .../tablesdb/update-boolean-column.md | 4 +- .../tablesdb/update-datetime-column.md | 4 +- .../examples/tablesdb/update-email-column.md | 4 +- .../examples/tablesdb/update-enum-column.md | 4 +- .../examples/tablesdb/update-float-column.md | 4 +- .../tablesdb/update-integer-column.md | 4 +- .../examples/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/update-rows.md | 4 +- .../examples/tablesdb/update-string-column.md | 4 +- .../examples/tablesdb/update-table.md | 4 +- .../examples/tablesdb/update-url-column.md | 4 +- .../server-php/examples/tablesdb/update.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/upsert-rows.md | 4 +- .../tablesdb/create-boolean-column.md | 4 +- .../tablesdb/create-datetime-column.md | 4 +- .../examples/tablesdb/create-email-column.md | 4 +- .../examples/tablesdb/create-enum-column.md | 4 +- .../examples/tablesdb/create-float-column.md | 4 +- .../examples/tablesdb/create-index.md | 4 +- .../tablesdb/create-integer-column.md | 4 +- .../examples/tablesdb/create-ip-column.md | 4 +- .../tablesdb/create-relationship-column.md | 4 +- .../examples/tablesdb/create-row.md | 4 +- .../examples/tablesdb/create-rows.md | 4 +- .../examples/tablesdb/create-string-column.md | 4 +- .../examples/tablesdb/create-table.md | 4 +- .../examples/tablesdb/create-url-column.md | 4 +- .../server-swift/examples/tablesdb/create.md | 4 +- .../examples/tablesdb/decrement-row-column.md | 4 +- .../examples/tablesdb/delete-column.md | 4 +- .../examples/tablesdb/delete-index.md | 4 +- .../examples/tablesdb/delete-row.md | 4 +- .../examples/tablesdb/delete-rows.md | 4 +- .../examples/tablesdb/delete-table.md | 4 +- .../server-swift/examples/tablesdb/delete.md | 4 +- .../examples/tablesdb/get-column.md | 4 +- .../examples/tablesdb/get-index.md | 4 +- .../server-swift/examples/tablesdb/get-row.md | 4 +- .../examples/tablesdb/get-table.md | 4 +- .../server-swift/examples/tablesdb/get.md | 4 +- .../examples/tablesdb/increment-row-column.md | 4 +- .../examples/tablesdb/list-columns.md | 4 +- .../examples/tablesdb/list-indexes.md | 4 +- .../examples/tablesdb/list-rows.md | 4 +- .../examples/tablesdb/list-tables.md | 4 +- .../server-swift/examples/tablesdb/list.md | 4 +- .../tablesdb/update-boolean-column.md | 4 +- .../tablesdb/update-datetime-column.md | 4 +- .../examples/tablesdb/update-email-column.md | 4 +- .../examples/tablesdb/update-enum-column.md | 4 +- .../examples/tablesdb/update-float-column.md | 4 +- .../tablesdb/update-integer-column.md | 4 +- .../examples/tablesdb/update-ip-column.md | 4 +- .../tablesdb/update-relationship-column.md | 4 +- .../examples/tablesdb/update-row.md | 4 +- .../examples/tablesdb/update-rows.md | 4 +- .../examples/tablesdb/update-string-column.md | 4 +- .../examples/tablesdb/update-table.md | 4 +- .../examples/tablesdb/update-url-column.md | 4 +- .../server-swift/examples/tablesdb/update.md | 4 +- .../examples/tablesdb/upsert-row.md | 4 +- .../examples/tablesdb/upsert-rows.md | 4 +- .../Http/Databases/Collections/Action.php | 2 +- .../Collections/Attributes/Action.php | 2 +- .../Collections/Attributes/Boolean/Create.php | 2 +- .../Collections/Attributes/Boolean/Update.php | 2 +- .../Attributes/Datetime/Create.php | 2 +- .../Attributes/Datetime/Update.php | 2 +- .../Collections/Attributes/Delete.php | 2 +- .../Collections/Attributes/Email/Create.php | 2 +- .../Collections/Attributes/Email/Update.php | 2 +- .../Collections/Attributes/Enum/Create.php | 2 +- .../Collections/Attributes/Enum/Update.php | 2 +- .../Collections/Attributes/Float/Create.php | 2 +- .../Collections/Attributes/Float/Update.php | 2 +- .../Databases/Collections/Attributes/Get.php | 2 +- .../Collections/Attributes/IP/Create.php | 2 +- .../Collections/Attributes/IP/Update.php | 2 +- .../Collections/Attributes/Integer/Create.php | 2 +- .../Collections/Attributes/Integer/Update.php | 2 +- .../Attributes/Relationship/Create.php | 2 +- .../Attributes/Relationship/Update.php | 2 +- .../Collections/Attributes/String/Create.php | 2 +- .../Collections/Attributes/String/Update.php | 2 +- .../Collections/Attributes/URL/Create.php | 2 +- .../Collections/Attributes/URL/Update.php | 2 +- .../Collections/Attributes/XList.php | 2 +- .../Http/Databases/Collections/Create.php | 2 +- .../Http/Databases/Collections/Delete.php | 2 +- .../Collections/Documents/Action.php | 2 +- .../Documents/Attribute/Decrement.php | 2 +- .../Documents/Attribute/Increment.php | 2 +- .../Collections/Documents/Bulk/Delete.php | 2 +- .../Collections/Documents/Bulk/Update.php | 2 +- .../Collections/Documents/Bulk/Upsert.php | 2 +- .../Collections/Documents/Create.php | 4 +- .../Collections/Documents/Delete.php | 2 +- .../Databases/Collections/Documents/Get.php | 2 +- .../Collections/Documents/Logs/XList.php | 2 +- .../Collections/Documents/Update.php | 2 +- .../Collections/Documents/Upsert.php | 2 +- .../Databases/Collections/Documents/XList.php | 2 +- .../Http/Databases/Collections/Get.php | 2 +- .../Databases/Collections/Indexes/Action.php | 2 +- .../Databases/Collections/Indexes/Create.php | 2 +- .../Databases/Collections/Indexes/Delete.php | 2 +- .../Databases/Collections/Indexes/Get.php | 2 +- .../Databases/Collections/Indexes/XList.php | 2 +- .../Http/Databases/Collections/Logs/XList.php | 2 +- .../Http/Databases/Collections/Update.php | 2 +- .../Http/Databases/Collections/Usage/Get.php | 2 +- .../Http/Databases/Collections/XList.php | 2 +- .../Databases/Http/Databases/Create.php | 2 +- .../Databases/Http/Databases/Delete.php | 2 +- .../Modules/Databases/Http/Databases/Get.php | 2 +- .../Databases/Http/Databases/Logs/XList.php | 2 +- .../Databases/Http/Databases/Update.php | 2 +- .../Databases/Http/Databases/Usage/Get.php | 2 +- .../Databases/Http/Databases/Usage/XList.php | 2 +- .../Databases/Http/Databases/XList.php | 2 +- .../Databases/Http/TablesDB/Create.php | 2 +- .../Databases/Http/TablesDB/Delete.php | 2 +- .../Modules/Databases/Http/TablesDB/Get.php | 2 +- .../Databases/Http/TablesDB/Logs/XList.php | 2 +- .../Databases/Http/TablesDB/Update.php | 2 +- .../Databases/Http/TablesDB/Usage/Get.php | 2 +- .../Databases/Http/TablesDB/Usage/XList.php | 2 +- .../Modules/Databases/Http/TablesDB/XList.php | 2 +- src/Appwrite/SDK/Specification/Format.php | 4 +- tests/e2e/Services/GraphQL/Base.php | 122 +- .../Services/GraphQL/TablesDB/AbuseTest.php | 2 +- .../Services/GraphQL/TablesDB/AuthTest.php | 16 +- .../GraphQL/TablesDB/DatabaseClientTest.php | 36 +- .../GraphQL/TablesDB/DatabaseServerTest.php | 146 +- 678 files changed, 18751 insertions(+), 4103 deletions(-) diff --git a/app/config/specs/open-api3-1.8.x-client.json b/app/config/specs/open-api3-1.8.x-client.json index 479541411e..8addbaaace 100644 --- a/app/config/specs/open-api3-1.8.x-client.json +++ b/app/config/specs/open-api3-1.8.x-client.json @@ -561,7 +561,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -579,6 +579,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -627,7 +681,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -645,6 +699,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -705,7 +817,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -723,6 +835,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -773,7 +937,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -791,6 +955,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -847,7 +1065,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -865,6 +1083,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -923,7 +1199,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -941,6 +1217,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -974,7 +1296,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -992,6 +1314,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1023,7 +1391,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1041,6 +1409,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1072,7 +1486,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1090,6 +1504,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4379,7 +4839,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -4468,7 +4928,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -4501,7 +4961,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } } ], @@ -4618,7 +5078,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -4717,7 +5177,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -4750,7 +5210,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -4865,7 +5325,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -4968,7 +5428,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -5057,7 +5517,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -5176,7 +5636,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -7001,9 +7461,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -7025,7 +7485,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -7061,7 +7521,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "schema": { "type": "string", @@ -7086,11 +7546,11 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7110,7 +7570,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -7125,7 +7585,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -7149,8 +7609,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" } ], "auth": { @@ -7177,7 +7637,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "schema": { "type": "string", @@ -7228,9 +7688,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -7252,7 +7712,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -7288,7 +7748,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -7323,11 +7783,11 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7347,7 +7807,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -7362,7 +7822,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -7385,8 +7845,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -7459,9 +7919,9 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -7483,7 +7943,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -7565,9 +8025,9 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -7582,7 +8042,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -7618,7 +8078,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -7642,9 +8102,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -7666,7 +8126,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -7757,9 +8217,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -7781,7 +8241,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -9028,7 +9488,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -9056,7 +9516,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9084,7 +9544,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9112,7 +9572,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -9140,7 +9600,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -9168,7 +9628,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -9196,7 +9656,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -9224,7 +9684,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -9252,7 +9712,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9280,7 +9740,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -9308,7 +9768,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9336,7 +9796,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -9364,7 +9824,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -9392,7 +9852,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -9420,7 +9880,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/open-api3-1.8.x-console.json b/app/config/specs/open-api3-1.8.x-console.json index 6972be1b54..ba331d1be8 100644 --- a/app/config/specs/open-api3-1.8.x-console.json +++ b/app/config/specs/open-api3-1.8.x-console.json @@ -594,7 +594,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -612,6 +612,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -659,7 +713,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -677,6 +731,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -736,7 +848,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -754,6 +866,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -803,7 +967,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -821,6 +985,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -877,7 +1095,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -895,6 +1113,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -952,7 +1228,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -970,6 +1246,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -1002,7 +1324,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1020,6 +1342,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1050,7 +1418,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1068,6 +1436,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1098,7 +1512,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1116,6 +1530,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4558,7 +5018,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4583,7 +5043,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4662,7 +5122,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4691,7 +5151,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4776,7 +5236,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" }, "methods": [ { @@ -4800,7 +5260,7 @@ "demo": "databases\/list-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" } } ], @@ -4878,7 +5338,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -4904,7 +5364,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -4969,7 +5429,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -4998,7 +5458,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -5080,7 +5540,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -5105,7 +5565,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -5172,7 +5632,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [] @@ -5259,7 +5719,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [] @@ -5367,7 +5827,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [] @@ -5440,7 +5900,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [] @@ -5543,7 +6003,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [] @@ -5618,7 +6078,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [] @@ -5706,7 +6166,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [] @@ -5816,7 +6276,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [] @@ -5931,7 +6391,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [] @@ -6041,7 +6501,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [] @@ -6156,7 +6616,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [] @@ -6266,7 +6726,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [] @@ -6381,7 +6841,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [] @@ -6500,7 +6960,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [] @@ -6624,7 +7084,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [] @@ -6744,7 +7204,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [] @@ -6869,7 +7329,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [] @@ -6989,7 +7449,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [] @@ -7114,7 +7574,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [] @@ -7224,7 +7684,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [] @@ -7339,7 +7799,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [] @@ -7474,7 +7934,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [] @@ -7595,7 +8055,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [] @@ -7715,7 +8175,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [] @@ -7825,7 +8285,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [] @@ -7971,7 +8431,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [] @@ -8046,7 +8506,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [] @@ -8130,7 +8590,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [] @@ -8244,7 +8704,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -8333,7 +8793,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -8366,7 +8826,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -8396,7 +8856,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -8510,7 +8970,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8540,7 +9000,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8638,7 +9098,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [] @@ -8736,7 +9196,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [] @@ -8832,7 +9292,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -8931,7 +9391,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -8964,7 +9424,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -9079,7 +9539,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -9182,7 +9642,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -9268,7 +9728,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRowLogs" + "replaceWith": "tablesDB.listRowLogs" }, "auth": { "Project": [] @@ -9368,7 +9828,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -9487,7 +9947,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -9603,7 +10063,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [] @@ -9689,7 +10149,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [] @@ -9821,7 +10281,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [] @@ -9896,7 +10356,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [] @@ -9980,7 +10440,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTableLogs" + "replaceWith": "tablesDB.listTableLogs" }, "auth": { "Project": [] @@ -10067,7 +10527,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTableUsage" + "replaceWith": "tablesDB.getTableUsage" }, "auth": { "Project": [] @@ -10163,7 +10623,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" }, "methods": [ { @@ -10190,7 +10650,7 @@ "demo": "databases\/list-logs.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" } } ], @@ -10269,7 +10729,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" }, "methods": [ { @@ -10296,7 +10756,7 @@ "demo": "databases\/get-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" } } ], @@ -15505,7 +15965,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -15523,6 +15983,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -15614,7 +16142,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -15632,6 +16160,72 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -16067,7 +16661,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -16085,6 +16679,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16172,7 +16836,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -16190,6 +16854,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16280,7 +17012,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -16298,6 +17030,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -16365,7 +17159,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -16383,6 +17177,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -17092,7 +17946,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -17110,6 +17964,90 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -17235,7 +18173,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -17253,6 +18191,86 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -21138,7 +22156,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatus", "group": "projects", @@ -21155,6 +22173,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + }, + "methods": [ + { + "name": "updateApiStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-api-status.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + } + }, + { + "name": "updateAPIStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-a-p-i-status.md" + } + ], "auth": { "Project": [] } @@ -21230,7 +22310,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatusAll", "group": "projects", @@ -21247,6 +22327,64 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + }, + "methods": [ + { + "name": "updateApiStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-api-status-all.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + } + }, + { + "name": "updateAPIStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-a-p-i-status-all.md" + } + ], "auth": { "Project": [] } @@ -23790,7 +24928,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtp", "group": "templates", @@ -23807,6 +24945,80 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + }, + "methods": [ + { + "name": "updateSmtp", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-smtp.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + } + }, + { + "name": "updateSMTP", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-s-m-t-p.md" + } + ], "auth": { "Project": [] } @@ -23908,7 +25120,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpTest", "group": "templates", @@ -23925,6 +25137,84 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + }, + "methods": [ + { + "name": "createSmtpTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-smtp-test.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + } + }, + { + "name": "createSMTPTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-s-m-t-p-test.md" + } + ], "auth": { "Project": [] } @@ -24832,7 +26122,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getSmsTemplate", "group": "templates", @@ -24849,6 +26139,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + }, + "methods": [ + { + "name": "getSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + } + }, + { + "name": "getSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25053,7 +26405,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmsTemplate", "group": "templates", @@ -25070,6 +26422,72 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + }, + "methods": [ + { + "name": "updateSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + } + }, + { + "name": "updateSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25293,7 +26711,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteSmsTemplate", "group": "templates", @@ -25310,6 +26728,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + }, + "methods": [ + { + "name": "deleteSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + } + }, + { + "name": "deleteSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -30492,9 +31972,9 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -30516,7 +31996,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -30565,9 +32045,9 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -30589,7 +32069,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -30644,9 +32124,9 @@ "\/tablesdb\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbListUsage", + "operationId": "tablesDBListUsage", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -30668,7 +32148,7 @@ "weight": 377, "cookies": false, "type": "", - "demo": "tables-db\/list-usage.md", + "demo": "tables-d-b\/list-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -30681,7 +32161,7 @@ "methods": [ { "name": "listUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -30697,7 +32177,7 @@ } ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/list-usage.md" + "demo": "tables-d-b\/list-usage.md" } ], "auth": { @@ -30738,9 +32218,9 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -30762,7 +32242,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -30797,9 +32277,9 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -30821,7 +32301,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -30880,9 +32360,9 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -30897,7 +32377,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -30934,9 +32414,9 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -30958,7 +32438,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -31017,11 +32497,11 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -31041,7 +32521,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31121,9 +32601,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -31145,7 +32625,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31190,9 +32670,9 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -31214,7 +32694,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31296,9 +32776,9 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -31313,7 +32793,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31360,9 +32840,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -31384,7 +32864,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -31444,9 +32924,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -31468,7 +32948,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31501,7 +32981,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -31550,9 +33030,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31574,7 +33054,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31607,7 +33087,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -31661,9 +33141,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -31685,7 +33165,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31767,9 +33247,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31791,7 +33271,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31878,9 +33358,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -31902,7 +33382,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31984,9 +33464,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32008,7 +33488,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32095,9 +33575,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -32119,7 +33599,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32210,9 +33690,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32234,7 +33714,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32330,9 +33810,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32354,7 +33834,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32446,9 +33926,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32470,7 +33950,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32567,9 +34047,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32591,7 +34071,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32683,9 +34163,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32707,7 +34187,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32804,9 +34284,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -32828,7 +34308,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32910,9 +34390,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32934,7 +34414,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33021,9 +34501,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33045,7 +34525,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33152,9 +34632,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -33176,7 +34656,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33209,7 +34689,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -33269,9 +34749,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33293,7 +34773,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33326,7 +34806,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -33385,9 +34865,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -33409,7 +34889,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33491,9 +34971,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33515,7 +34995,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33602,9 +35082,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -33657,7 +35137,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33711,9 +35191,9 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -33728,7 +35208,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33784,9 +35264,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33808,7 +35288,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33892,9 +35372,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -33916,7 +35396,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -33949,7 +35429,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -33974,9 +35454,9 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -33998,7 +35478,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34031,7 +35511,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34102,9 +35582,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -34126,7 +35606,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34159,7 +35639,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34180,9 +35660,9 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -34197,7 +35677,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34230,7 +35710,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34253,9 +35733,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/logs": { "get": { "summary": "List table logs", - "operationId": "tablesDbListTableLogs", + "operationId": "tablesDBListTableLogs", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the table activity logs list by its unique ID.", "responses": { @@ -34277,7 +35757,7 @@ "weight": 383, "cookies": false, "type": "", - "demo": "tables-db\/list-table-logs.md", + "demo": "tables-d-b\/list-table-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -34336,9 +35816,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -34360,7 +35840,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -34396,7 +35876,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "schema": { "type": "string", @@ -34421,11 +35901,11 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -34445,7 +35925,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -34460,7 +35940,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -34484,12 +35964,12 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [] @@ -34510,8 +35990,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -34538,7 +36018,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "schema": { "type": "string", @@ -34587,11 +36067,11 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -34611,7 +36091,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34625,7 +36105,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -34646,8 +36126,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -34707,9 +36187,9 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -34731,7 +36211,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34801,9 +36281,9 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -34825,7 +36305,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -34859,7 +36339,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34892,9 +36372,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -34916,7 +36396,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -34952,7 +36432,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34987,11 +36467,11 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -35011,7 +36491,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -35026,7 +36506,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35049,8 +36529,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -35123,9 +36603,9 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -35147,7 +36627,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -35229,9 +36709,9 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -35246,7 +36726,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -35282,7 +36762,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -35306,9 +36786,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/logs": { "get": { "summary": "List row logs", - "operationId": "tablesDbListRowLogs", + "operationId": "tablesDBListRowLogs", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the row activity logs list by its unique ID.", "responses": { @@ -35330,7 +36810,7 @@ "weight": 421, "cookies": false, "type": "", - "demo": "tables-db\/list-row-logs.md", + "demo": "tables-d-b\/list-row-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -35399,9 +36879,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -35423,7 +36903,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35514,9 +36994,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -35538,7 +37018,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35629,9 +37109,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/usage": { "get": { "summary": "Get table usage stats", - "operationId": "tablesDbGetTableUsage", + "operationId": "tablesDBGetTableUsage", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a table. Returning the total number of rows. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35653,7 +37133,7 @@ "weight": 384, "cookies": false, "type": "", - "demo": "tables-db\/get-table-usage.md", + "demo": "tables-d-b\/get-table-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35721,9 +37201,9 @@ "\/tablesdb\/{databaseId}\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbGetUsage", + "operationId": "tablesDBGetUsage", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35745,7 +37225,7 @@ "weight": 376, "cookies": false, "type": "", - "demo": "tables-db\/get-usage.md", + "demo": "tables-d-b\/get-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-database-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35758,7 +37238,7 @@ "methods": [ { "name": "getUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35777,7 +37257,7 @@ } ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/get-usage.md" + "demo": "tables-d-b\/get-usage.md" } ], "auth": { @@ -38850,7 +40330,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -38867,6 +40347,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [] } @@ -38923,7 +40461,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -38940,6 +40478,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -38999,7 +40593,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -39016,6 +40610,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -39060,7 +40708,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -39077,6 +40725,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39119,7 +40821,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -39136,6 +40838,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39178,7 +40934,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -39195,6 +40951,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -41462,7 +43272,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -41490,7 +43300,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -41518,7 +43328,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -41546,7 +43356,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -41574,7 +43384,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -41602,7 +43412,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41630,7 +43440,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41658,7 +43468,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -41686,7 +43496,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -41714,7 +43524,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -41742,7 +43552,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -41770,7 +43580,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -41798,7 +43608,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -41826,7 +43636,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -41854,7 +43664,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -41882,7 +43692,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -41910,7 +43720,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -41938,7 +43748,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -41966,7 +43776,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -41994,7 +43804,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -42022,7 +43832,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of installations rows that matched your query.", + "description": "Total number of installations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42050,7 +43860,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworkProviderRepositories rows that matched your query.", + "description": "Total number of frameworkProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42078,7 +43888,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimeProviderRepositories rows that matched your query.", + "description": "Total number of runtimeProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42106,7 +43916,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of branches rows that matched your query.", + "description": "Total number of branches that matched your query.", "x-example": 5, "format": "int32" }, @@ -42134,7 +43944,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42162,7 +43972,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42190,7 +44000,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -42218,7 +44028,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -42246,7 +44056,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of projects rows that matched your query.", + "description": "Total number of projects that matched your query.", "x-example": 5, "format": "int32" }, @@ -42274,7 +44084,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of webhooks rows that matched your query.", + "description": "Total number of webhooks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42302,7 +44112,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of keys rows that matched your query.", + "description": "Total number of keys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42330,7 +44140,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of devKeys rows that matched your query.", + "description": "Total number of devKeys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42358,7 +44168,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of platforms rows that matched your query.", + "description": "Total number of platforms that matched your query.", "x-example": 5, "format": "int32" }, @@ -42386,7 +44196,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -42414,7 +44224,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -42442,7 +44252,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42470,7 +44280,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -42498,7 +44308,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -42526,7 +44336,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -42554,7 +44364,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rules rows that matched your query.", + "description": "Total number of rules that matched your query.", "x-example": 5, "format": "int32" }, @@ -42582,7 +44392,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42610,7 +44420,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42638,7 +44448,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42666,7 +44476,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -42694,7 +44504,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42722,7 +44532,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -42750,7 +44560,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of migrations rows that matched your query.", + "description": "Total number of migrations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42778,7 +44588,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, @@ -42806,7 +44616,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of contents rows that matched your query.", + "description": "Total number of contents that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/open-api3-1.8.x-server.json b/app/config/specs/open-api3-1.8.x-server.json index b5731e63b0..71033787f6 100644 --- a/app/config/specs/open-api3-1.8.x-server.json +++ b/app/config/specs/open-api3-1.8.x-server.json @@ -567,7 +567,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -585,6 +585,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -634,7 +690,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -652,6 +708,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -713,7 +829,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -731,6 +847,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -782,7 +952,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -800,6 +970,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -856,7 +1080,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -874,6 +1098,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [], "Session": [] @@ -933,7 +1217,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -951,6 +1235,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Session": [] @@ -985,7 +1317,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1003,6 +1335,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1035,7 +1415,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1053,6 +1433,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1085,7 +1513,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1103,6 +1531,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -4076,7 +4552,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4102,7 +4578,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4182,7 +4658,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4212,7 +4688,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4298,7 +4774,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -4325,7 +4801,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -4391,7 +4867,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -4421,7 +4897,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -4504,7 +4980,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -4530,7 +5006,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -4598,7 +5074,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [], @@ -4686,7 +5162,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [], @@ -4795,7 +5271,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [], @@ -4869,7 +5345,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [], @@ -4973,7 +5449,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [], @@ -5049,7 +5525,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [], @@ -5138,7 +5614,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [], @@ -5249,7 +5725,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [], @@ -5365,7 +5841,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [], @@ -5476,7 +5952,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [], @@ -5592,7 +6068,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [], @@ -5703,7 +6179,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [], @@ -5819,7 +6295,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [], @@ -5939,7 +6415,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [], @@ -6064,7 +6540,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [], @@ -6185,7 +6661,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [], @@ -6311,7 +6787,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [], @@ -6432,7 +6908,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [], @@ -6558,7 +7034,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [], @@ -6669,7 +7145,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [], @@ -6785,7 +7261,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [], @@ -6921,7 +7397,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [], @@ -7043,7 +7519,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [], @@ -7164,7 +7640,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [], @@ -7275,7 +7751,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [], @@ -7422,7 +7898,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [], @@ -7498,7 +7974,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [], @@ -7583,7 +8059,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [], @@ -7698,7 +8174,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [], @@ -7789,7 +8265,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -7823,7 +8299,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -7854,7 +8330,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -7970,7 +8446,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8001,7 +8477,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8100,7 +8576,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [], @@ -8199,7 +8675,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [], @@ -8296,7 +8772,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [], @@ -8397,7 +8873,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -8431,7 +8907,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -8548,7 +9024,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [], @@ -8653,7 +9129,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [], @@ -8744,7 +9220,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [], @@ -8865,7 +9341,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [], @@ -8983,7 +9459,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [], @@ -9070,7 +9546,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [], @@ -9203,7 +9679,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [], @@ -9279,7 +9755,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [], @@ -14247,7 +14723,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -14265,6 +14741,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14357,7 +14903,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -14375,6 +14921,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14816,7 +15430,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -14834,6 +15448,78 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14922,7 +15608,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -14940,6 +15626,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15031,7 +15787,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -15049,6 +15805,70 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15117,7 +15937,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -15135,6 +15955,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15851,7 +16733,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -15869,6 +16751,92 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15995,7 +16963,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -16013,6 +16981,88 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -21421,9 +22471,9 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -21445,7 +22495,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -21495,9 +22545,9 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -21519,7 +22569,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -21575,9 +22625,9 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -21599,7 +22649,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -21635,9 +22685,9 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -21659,7 +22709,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -21719,9 +22769,9 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -21736,7 +22786,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -21774,9 +22824,9 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -21798,7 +22848,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -21858,11 +22908,11 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -21882,7 +22932,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -21963,9 +23013,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -21987,7 +23037,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22033,9 +23083,9 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -22057,7 +23107,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22140,9 +23190,9 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -22157,7 +23207,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22205,9 +23255,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -22229,7 +23279,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -22290,9 +23340,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -22314,7 +23364,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22348,7 +23398,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -22397,9 +23447,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22421,7 +23471,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22455,7 +23505,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -22509,9 +23559,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -22533,7 +23583,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22616,9 +23666,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22640,7 +23690,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22728,9 +23778,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -22752,7 +23802,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22835,9 +23885,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -22859,7 +23909,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22947,9 +23997,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -22971,7 +24021,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23063,9 +24113,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23087,7 +24137,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23184,9 +24234,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23208,7 +24258,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23301,9 +24351,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23325,7 +24375,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23423,9 +24473,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23447,7 +24497,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23540,9 +24590,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23564,7 +24614,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23662,9 +24712,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -23686,7 +24736,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23769,9 +24819,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23793,7 +24843,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23881,9 +24931,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -23905,7 +24955,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24013,9 +25063,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -24037,7 +25087,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24071,7 +25121,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24131,9 +25181,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24155,7 +25205,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24189,7 +25239,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24248,9 +25298,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -24272,7 +25322,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24355,9 +25405,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24379,7 +25429,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24467,9 +25517,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -24522,7 +25572,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24577,9 +25627,9 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -24594,7 +25644,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24651,9 +25701,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -24675,7 +25725,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24760,9 +25810,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -24784,7 +25834,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -24818,7 +25868,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24843,9 +25893,9 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -24867,7 +25917,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -24901,7 +25951,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24972,9 +26022,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -24996,7 +26046,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25030,7 +26080,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25051,9 +26101,9 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -25068,7 +26118,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25102,7 +26152,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25125,9 +26175,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -25149,7 +26199,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -25187,7 +26237,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "schema": { "type": "string", @@ -25212,11 +26262,11 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25236,7 +26286,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -25251,7 +26301,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [], @@ -25276,12 +26326,12 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [], @@ -25303,8 +26353,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -25333,7 +26383,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "schema": { "type": "string", @@ -25382,11 +26432,11 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -25406,7 +26456,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25420,7 +26470,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -25442,8 +26492,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -25504,9 +26554,9 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -25528,7 +26578,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25599,9 +26649,9 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -25623,7 +26673,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -25658,7 +26708,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25691,9 +26741,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -25715,7 +26765,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -25753,7 +26803,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25788,11 +26838,11 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25812,7 +26862,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -25827,7 +26877,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -25851,8 +26901,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -25927,9 +26977,9 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -25951,7 +27001,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -26035,9 +27085,9 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -26052,7 +27102,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -26090,7 +27140,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -26114,9 +27164,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -26138,7 +27188,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -26231,9 +27281,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -26255,7 +27305,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -29274,7 +30324,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -29291,6 +30341,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29348,7 +30458,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -29365,6 +30475,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29425,7 +30593,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -29442,6 +30610,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29487,7 +30711,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -29504,6 +30728,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29547,7 +30827,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -29564,6 +30844,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29607,7 +30943,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -29624,6 +30960,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -31145,7 +32537,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -31173,7 +32565,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31201,7 +32593,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -31229,7 +32621,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -31257,7 +32649,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -31285,7 +32677,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31313,7 +32705,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31341,7 +32733,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -31369,7 +32761,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31397,7 +32789,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -31425,7 +32817,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -31453,7 +32845,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -31481,7 +32873,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -31509,7 +32901,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -31537,7 +32929,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -31565,7 +32957,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -31593,7 +32985,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -31621,7 +33013,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31649,7 +33041,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -31677,7 +33069,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31705,7 +33097,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -31733,7 +33125,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31761,7 +33153,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -31789,7 +33181,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31817,7 +33209,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -31845,7 +33237,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -31873,7 +33265,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -31901,7 +33293,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -31929,7 +33321,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31957,7 +33349,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -31985,7 +33377,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -32013,7 +33405,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -32041,7 +33433,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -32069,7 +33461,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -32097,7 +33489,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/open-api3-latest-client.json b/app/config/specs/open-api3-latest-client.json index 479541411e..8addbaaace 100644 --- a/app/config/specs/open-api3-latest-client.json +++ b/app/config/specs/open-api3-latest-client.json @@ -561,7 +561,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -579,6 +579,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -627,7 +681,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -645,6 +699,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -705,7 +817,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -723,6 +835,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -773,7 +937,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -791,6 +955,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -847,7 +1065,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -865,6 +1083,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -923,7 +1199,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -941,6 +1217,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -974,7 +1296,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -992,6 +1314,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1023,7 +1391,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1041,6 +1409,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1072,7 +1486,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1090,6 +1504,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4379,7 +4839,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -4468,7 +4928,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -4501,7 +4961,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } } ], @@ -4618,7 +5078,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -4717,7 +5177,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -4750,7 +5210,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -4865,7 +5325,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -4968,7 +5428,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -5057,7 +5517,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -5176,7 +5636,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -7001,9 +7461,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -7025,7 +7485,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -7061,7 +7521,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "schema": { "type": "string", @@ -7086,11 +7546,11 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7110,7 +7570,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -7125,7 +7585,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -7149,8 +7609,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" } ], "auth": { @@ -7177,7 +7637,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "schema": { "type": "string", @@ -7228,9 +7688,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -7252,7 +7712,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -7288,7 +7748,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -7323,11 +7783,11 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7347,7 +7807,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -7362,7 +7822,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -7385,8 +7845,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -7459,9 +7919,9 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -7483,7 +7943,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -7565,9 +8025,9 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -7582,7 +8042,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -7618,7 +8078,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -7642,9 +8102,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -7666,7 +8126,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -7757,9 +8217,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -7781,7 +8241,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -9028,7 +9488,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -9056,7 +9516,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9084,7 +9544,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9112,7 +9572,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -9140,7 +9600,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -9168,7 +9628,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -9196,7 +9656,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -9224,7 +9684,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -9252,7 +9712,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9280,7 +9740,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -9308,7 +9768,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9336,7 +9796,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -9364,7 +9824,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -9392,7 +9852,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -9420,7 +9880,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/open-api3-latest-console.json b/app/config/specs/open-api3-latest-console.json index 6972be1b54..ba331d1be8 100644 --- a/app/config/specs/open-api3-latest-console.json +++ b/app/config/specs/open-api3-latest-console.json @@ -594,7 +594,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -612,6 +612,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -659,7 +713,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -677,6 +731,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -736,7 +848,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -754,6 +866,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -803,7 +967,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -821,6 +985,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -877,7 +1095,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -895,6 +1113,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -952,7 +1228,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -970,6 +1246,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -1002,7 +1324,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1020,6 +1342,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1050,7 +1418,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1068,6 +1436,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1098,7 +1512,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1116,6 +1530,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4558,7 +5018,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4583,7 +5043,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4662,7 +5122,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4691,7 +5151,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4776,7 +5236,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" }, "methods": [ { @@ -4800,7 +5260,7 @@ "demo": "databases\/list-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" } } ], @@ -4878,7 +5338,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -4904,7 +5364,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -4969,7 +5429,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -4998,7 +5458,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -5080,7 +5540,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -5105,7 +5565,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -5172,7 +5632,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [] @@ -5259,7 +5719,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [] @@ -5367,7 +5827,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [] @@ -5440,7 +5900,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [] @@ -5543,7 +6003,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [] @@ -5618,7 +6078,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [] @@ -5706,7 +6166,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [] @@ -5816,7 +6276,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [] @@ -5931,7 +6391,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [] @@ -6041,7 +6501,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [] @@ -6156,7 +6616,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [] @@ -6266,7 +6726,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [] @@ -6381,7 +6841,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [] @@ -6500,7 +6960,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [] @@ -6624,7 +7084,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [] @@ -6744,7 +7204,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [] @@ -6869,7 +7329,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [] @@ -6989,7 +7449,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [] @@ -7114,7 +7574,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [] @@ -7224,7 +7684,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [] @@ -7339,7 +7799,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [] @@ -7474,7 +7934,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [] @@ -7595,7 +8055,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [] @@ -7715,7 +8175,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [] @@ -7825,7 +8285,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [] @@ -7971,7 +8431,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [] @@ -8046,7 +8506,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [] @@ -8130,7 +8590,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [] @@ -8244,7 +8704,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -8333,7 +8793,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -8366,7 +8826,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -8396,7 +8856,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -8510,7 +8970,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8540,7 +9000,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8638,7 +9098,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [] @@ -8736,7 +9196,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [] @@ -8832,7 +9292,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -8931,7 +9391,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -8964,7 +9424,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -9079,7 +9539,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -9182,7 +9642,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -9268,7 +9728,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRowLogs" + "replaceWith": "tablesDB.listRowLogs" }, "auth": { "Project": [] @@ -9368,7 +9828,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -9487,7 +9947,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -9603,7 +10063,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [] @@ -9689,7 +10149,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [] @@ -9821,7 +10281,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [] @@ -9896,7 +10356,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [] @@ -9980,7 +10440,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTableLogs" + "replaceWith": "tablesDB.listTableLogs" }, "auth": { "Project": [] @@ -10067,7 +10527,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTableUsage" + "replaceWith": "tablesDB.getTableUsage" }, "auth": { "Project": [] @@ -10163,7 +10623,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" }, "methods": [ { @@ -10190,7 +10650,7 @@ "demo": "databases\/list-logs.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" } } ], @@ -10269,7 +10729,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" }, "methods": [ { @@ -10296,7 +10756,7 @@ "demo": "databases\/get-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" } } ], @@ -15505,7 +15965,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -15523,6 +15983,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -15614,7 +16142,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -15632,6 +16160,72 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -16067,7 +16661,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -16085,6 +16679,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16172,7 +16836,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -16190,6 +16854,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16280,7 +17012,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -16298,6 +17030,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -16365,7 +17159,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -16383,6 +17177,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -17092,7 +17946,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -17110,6 +17964,90 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -17235,7 +18173,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -17253,6 +18191,86 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -21138,7 +22156,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatus", "group": "projects", @@ -21155,6 +22173,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + }, + "methods": [ + { + "name": "updateApiStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-api-status.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + } + }, + { + "name": "updateAPIStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-a-p-i-status.md" + } + ], "auth": { "Project": [] } @@ -21230,7 +22310,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatusAll", "group": "projects", @@ -21247,6 +22327,64 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + }, + "methods": [ + { + "name": "updateApiStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-api-status-all.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + } + }, + { + "name": "updateAPIStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-a-p-i-status-all.md" + } + ], "auth": { "Project": [] } @@ -23790,7 +24928,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtp", "group": "templates", @@ -23807,6 +24945,80 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + }, + "methods": [ + { + "name": "updateSmtp", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-smtp.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + } + }, + { + "name": "updateSMTP", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-s-m-t-p.md" + } + ], "auth": { "Project": [] } @@ -23908,7 +25120,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpTest", "group": "templates", @@ -23925,6 +25137,84 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + }, + "methods": [ + { + "name": "createSmtpTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-smtp-test.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + } + }, + { + "name": "createSMTPTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-s-m-t-p-test.md" + } + ], "auth": { "Project": [] } @@ -24832,7 +26122,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getSmsTemplate", "group": "templates", @@ -24849,6 +26139,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + }, + "methods": [ + { + "name": "getSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + } + }, + { + "name": "getSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25053,7 +26405,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmsTemplate", "group": "templates", @@ -25070,6 +26422,72 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + }, + "methods": [ + { + "name": "updateSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + } + }, + { + "name": "updateSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25293,7 +26711,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteSmsTemplate", "group": "templates", @@ -25310,6 +26728,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + }, + "methods": [ + { + "name": "deleteSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + } + }, + { + "name": "deleteSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -30492,9 +31972,9 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -30516,7 +31996,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -30565,9 +32045,9 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -30589,7 +32069,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -30644,9 +32124,9 @@ "\/tablesdb\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbListUsage", + "operationId": "tablesDBListUsage", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -30668,7 +32148,7 @@ "weight": 377, "cookies": false, "type": "", - "demo": "tables-db\/list-usage.md", + "demo": "tables-d-b\/list-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -30681,7 +32161,7 @@ "methods": [ { "name": "listUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -30697,7 +32177,7 @@ } ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/list-usage.md" + "demo": "tables-d-b\/list-usage.md" } ], "auth": { @@ -30738,9 +32218,9 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -30762,7 +32242,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -30797,9 +32277,9 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -30821,7 +32301,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -30880,9 +32360,9 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -30897,7 +32377,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -30934,9 +32414,9 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -30958,7 +32438,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -31017,11 +32497,11 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -31041,7 +32521,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31121,9 +32601,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -31145,7 +32625,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31190,9 +32670,9 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -31214,7 +32694,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31296,9 +32776,9 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -31313,7 +32793,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31360,9 +32840,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -31384,7 +32864,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -31444,9 +32924,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -31468,7 +32948,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31501,7 +32981,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -31550,9 +33030,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31574,7 +33054,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31607,7 +33087,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -31661,9 +33141,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -31685,7 +33165,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31767,9 +33247,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31791,7 +33271,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31878,9 +33358,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -31902,7 +33382,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31984,9 +33464,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32008,7 +33488,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32095,9 +33575,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -32119,7 +33599,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32210,9 +33690,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32234,7 +33714,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32330,9 +33810,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32354,7 +33834,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32446,9 +33926,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32470,7 +33950,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32567,9 +34047,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32591,7 +34071,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32683,9 +34163,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32707,7 +34187,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32804,9 +34284,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -32828,7 +34308,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32910,9 +34390,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32934,7 +34414,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33021,9 +34501,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33045,7 +34525,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33152,9 +34632,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -33176,7 +34656,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33209,7 +34689,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -33269,9 +34749,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33293,7 +34773,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33326,7 +34806,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -33385,9 +34865,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -33409,7 +34889,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33491,9 +34971,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33515,7 +34995,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33602,9 +35082,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -33657,7 +35137,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33711,9 +35191,9 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -33728,7 +35208,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33784,9 +35264,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33808,7 +35288,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33892,9 +35372,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -33916,7 +35396,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -33949,7 +35429,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -33974,9 +35454,9 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -33998,7 +35478,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34031,7 +35511,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34102,9 +35582,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -34126,7 +35606,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34159,7 +35639,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34180,9 +35660,9 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -34197,7 +35677,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34230,7 +35710,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34253,9 +35733,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/logs": { "get": { "summary": "List table logs", - "operationId": "tablesDbListTableLogs", + "operationId": "tablesDBListTableLogs", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the table activity logs list by its unique ID.", "responses": { @@ -34277,7 +35757,7 @@ "weight": 383, "cookies": false, "type": "", - "demo": "tables-db\/list-table-logs.md", + "demo": "tables-d-b\/list-table-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -34336,9 +35816,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -34360,7 +35840,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -34396,7 +35876,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "schema": { "type": "string", @@ -34421,11 +35901,11 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -34445,7 +35925,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -34460,7 +35940,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -34484,12 +35964,12 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [] @@ -34510,8 +35990,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -34538,7 +36018,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "schema": { "type": "string", @@ -34587,11 +36067,11 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -34611,7 +36091,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34625,7 +36105,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -34646,8 +36126,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -34707,9 +36187,9 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -34731,7 +36211,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34801,9 +36281,9 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -34825,7 +36305,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -34859,7 +36339,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34892,9 +36372,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -34916,7 +36396,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -34952,7 +36432,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -34987,11 +36467,11 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -35011,7 +36491,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -35026,7 +36506,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35049,8 +36529,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -35123,9 +36603,9 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -35147,7 +36627,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -35229,9 +36709,9 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -35246,7 +36726,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -35282,7 +36762,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -35306,9 +36786,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/logs": { "get": { "summary": "List row logs", - "operationId": "tablesDbListRowLogs", + "operationId": "tablesDBListRowLogs", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the row activity logs list by its unique ID.", "responses": { @@ -35330,7 +36810,7 @@ "weight": 421, "cookies": false, "type": "", - "demo": "tables-db\/list-row-logs.md", + "demo": "tables-d-b\/list-row-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -35399,9 +36879,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -35423,7 +36903,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35514,9 +36994,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -35538,7 +37018,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35629,9 +37109,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/usage": { "get": { "summary": "Get table usage stats", - "operationId": "tablesDbGetTableUsage", + "operationId": "tablesDBGetTableUsage", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a table. Returning the total number of rows. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35653,7 +37133,7 @@ "weight": 384, "cookies": false, "type": "", - "demo": "tables-db\/get-table-usage.md", + "demo": "tables-d-b\/get-table-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35721,9 +37201,9 @@ "\/tablesdb\/{databaseId}\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbGetUsage", + "operationId": "tablesDBGetUsage", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35745,7 +37225,7 @@ "weight": 376, "cookies": false, "type": "", - "demo": "tables-db\/get-usage.md", + "demo": "tables-d-b\/get-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-database-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35758,7 +37238,7 @@ "methods": [ { "name": "getUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35777,7 +37257,7 @@ } ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/get-usage.md" + "demo": "tables-d-b\/get-usage.md" } ], "auth": { @@ -38850,7 +40330,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -38867,6 +40347,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [] } @@ -38923,7 +40461,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -38940,6 +40478,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -38999,7 +40593,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -39016,6 +40610,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -39060,7 +40708,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -39077,6 +40725,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39119,7 +40821,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -39136,6 +40838,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39178,7 +40934,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -39195,6 +40951,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -41462,7 +43272,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -41490,7 +43300,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -41518,7 +43328,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -41546,7 +43356,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -41574,7 +43384,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -41602,7 +43412,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41630,7 +43440,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41658,7 +43468,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -41686,7 +43496,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -41714,7 +43524,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -41742,7 +43552,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -41770,7 +43580,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -41798,7 +43608,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -41826,7 +43636,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -41854,7 +43664,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -41882,7 +43692,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -41910,7 +43720,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -41938,7 +43748,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -41966,7 +43776,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -41994,7 +43804,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -42022,7 +43832,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of installations rows that matched your query.", + "description": "Total number of installations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42050,7 +43860,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworkProviderRepositories rows that matched your query.", + "description": "Total number of frameworkProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42078,7 +43888,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimeProviderRepositories rows that matched your query.", + "description": "Total number of runtimeProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42106,7 +43916,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of branches rows that matched your query.", + "description": "Total number of branches that matched your query.", "x-example": 5, "format": "int32" }, @@ -42134,7 +43944,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42162,7 +43972,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42190,7 +44000,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -42218,7 +44028,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -42246,7 +44056,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of projects rows that matched your query.", + "description": "Total number of projects that matched your query.", "x-example": 5, "format": "int32" }, @@ -42274,7 +44084,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of webhooks rows that matched your query.", + "description": "Total number of webhooks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42302,7 +44112,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of keys rows that matched your query.", + "description": "Total number of keys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42330,7 +44140,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of devKeys rows that matched your query.", + "description": "Total number of devKeys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42358,7 +44168,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of platforms rows that matched your query.", + "description": "Total number of platforms that matched your query.", "x-example": 5, "format": "int32" }, @@ -42386,7 +44196,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -42414,7 +44224,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -42442,7 +44252,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42470,7 +44280,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -42498,7 +44308,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -42526,7 +44336,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -42554,7 +44364,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rules rows that matched your query.", + "description": "Total number of rules that matched your query.", "x-example": 5, "format": "int32" }, @@ -42582,7 +44392,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42610,7 +44420,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42638,7 +44448,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42666,7 +44476,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -42694,7 +44504,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42722,7 +44532,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -42750,7 +44560,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of migrations rows that matched your query.", + "description": "Total number of migrations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42778,7 +44588,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, @@ -42806,7 +44616,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of contents rows that matched your query.", + "description": "Total number of contents that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/open-api3-latest-server.json b/app/config/specs/open-api3-latest-server.json index b5731e63b0..71033787f6 100644 --- a/app/config/specs/open-api3-latest-server.json +++ b/app/config/specs/open-api3-latest-server.json @@ -567,7 +567,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -585,6 +585,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -634,7 +690,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -652,6 +708,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -713,7 +829,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -731,6 +847,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -782,7 +952,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -800,6 +970,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -856,7 +1080,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -874,6 +1098,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [], "Session": [] @@ -933,7 +1217,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -951,6 +1235,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Session": [] @@ -985,7 +1317,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1003,6 +1335,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1035,7 +1415,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1053,6 +1433,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1085,7 +1513,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1103,6 +1531,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -4076,7 +4552,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4102,7 +4578,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4182,7 +4658,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4212,7 +4688,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4298,7 +4774,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -4325,7 +4801,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -4391,7 +4867,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -4421,7 +4897,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -4504,7 +4980,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -4530,7 +5006,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -4598,7 +5074,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [], @@ -4686,7 +5162,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [], @@ -4795,7 +5271,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [], @@ -4869,7 +5345,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [], @@ -4973,7 +5449,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [], @@ -5049,7 +5525,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [], @@ -5138,7 +5614,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [], @@ -5249,7 +5725,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [], @@ -5365,7 +5841,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [], @@ -5476,7 +5952,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [], @@ -5592,7 +6068,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [], @@ -5703,7 +6179,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [], @@ -5819,7 +6295,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [], @@ -5939,7 +6415,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [], @@ -6064,7 +6540,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [], @@ -6185,7 +6661,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [], @@ -6311,7 +6787,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [], @@ -6432,7 +6908,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [], @@ -6558,7 +7034,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [], @@ -6669,7 +7145,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [], @@ -6785,7 +7261,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [], @@ -6921,7 +7397,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [], @@ -7043,7 +7519,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [], @@ -7164,7 +7640,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [], @@ -7275,7 +7751,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [], @@ -7422,7 +7898,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [], @@ -7498,7 +7974,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [], @@ -7583,7 +8059,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [], @@ -7698,7 +8174,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [], @@ -7789,7 +8265,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -7823,7 +8299,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -7854,7 +8330,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -7970,7 +8446,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8001,7 +8477,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8100,7 +8576,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [], @@ -8199,7 +8675,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [], @@ -8296,7 +8772,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [], @@ -8397,7 +8873,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -8431,7 +8907,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -8548,7 +9024,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [], @@ -8653,7 +9129,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [], @@ -8744,7 +9220,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [], @@ -8865,7 +9341,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [], @@ -8983,7 +9459,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [], @@ -9070,7 +9546,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [], @@ -9203,7 +9679,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [], @@ -9279,7 +9755,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [], @@ -14247,7 +14723,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -14265,6 +14741,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14357,7 +14903,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -14375,6 +14921,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14816,7 +15430,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -14834,6 +15448,78 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14922,7 +15608,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -14940,6 +15626,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15031,7 +15787,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -15049,6 +15805,70 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15117,7 +15937,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -15135,6 +15955,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15851,7 +16733,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -15869,6 +16751,92 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15995,7 +16963,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -16013,6 +16981,88 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -21421,9 +22471,9 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -21445,7 +22495,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -21495,9 +22545,9 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -21519,7 +22569,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -21575,9 +22625,9 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -21599,7 +22649,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -21635,9 +22685,9 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -21659,7 +22709,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -21719,9 +22769,9 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -21736,7 +22786,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -21774,9 +22824,9 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -21798,7 +22848,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -21858,11 +22908,11 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -21882,7 +22932,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -21963,9 +23013,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -21987,7 +23037,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22033,9 +23083,9 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -22057,7 +23107,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22140,9 +23190,9 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -22157,7 +23207,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22205,9 +23255,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -22229,7 +23279,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -22290,9 +23340,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -22314,7 +23364,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22348,7 +23398,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -22397,9 +23447,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22421,7 +23471,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22455,7 +23505,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -22509,9 +23559,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -22533,7 +23583,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22616,9 +23666,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22640,7 +23690,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22728,9 +23778,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -22752,7 +23802,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22835,9 +23885,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -22859,7 +23909,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22947,9 +23997,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -22971,7 +24021,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23063,9 +24113,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23087,7 +24137,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23184,9 +24234,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23208,7 +24258,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23301,9 +24351,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23325,7 +24375,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23423,9 +24473,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23447,7 +24497,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23540,9 +24590,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23564,7 +24614,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23662,9 +24712,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -23686,7 +24736,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23769,9 +24819,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23793,7 +24843,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23881,9 +24931,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -23905,7 +24955,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24013,9 +25063,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -24037,7 +25087,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24071,7 +25121,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24131,9 +25181,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24155,7 +25205,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24189,7 +25239,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24248,9 +25298,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -24272,7 +25322,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24355,9 +25405,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24379,7 +25429,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24467,9 +25517,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -24522,7 +25572,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24577,9 +25627,9 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -24594,7 +25644,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24651,9 +25701,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -24675,7 +25725,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24760,9 +25810,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -24784,7 +25834,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -24818,7 +25868,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24843,9 +25893,9 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -24867,7 +25917,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -24901,7 +25951,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -24972,9 +26022,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -24996,7 +26046,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25030,7 +26080,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25051,9 +26101,9 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -25068,7 +26118,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25102,7 +26152,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25125,9 +26175,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -25149,7 +26199,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -25187,7 +26237,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "schema": { "type": "string", @@ -25212,11 +26262,11 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25236,7 +26286,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -25251,7 +26301,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [], @@ -25276,12 +26326,12 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [], @@ -25303,8 +26353,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -25333,7 +26383,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "schema": { "type": "string", @@ -25382,11 +26432,11 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -25406,7 +26456,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25420,7 +26470,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -25442,8 +26492,8 @@ "model": "#\/components\/schemas\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -25504,9 +26554,9 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -25528,7 +26578,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25599,9 +26649,9 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -25623,7 +26673,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -25658,7 +26708,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25691,9 +26741,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -25715,7 +26765,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -25753,7 +26803,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -25788,11 +26838,11 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25812,7 +26862,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -25827,7 +26877,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -25851,8 +26901,8 @@ "model": "#\/components\/schemas\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -25927,9 +26977,9 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -25951,7 +27001,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -26035,9 +27085,9 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -26052,7 +27102,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -26090,7 +27140,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "schema": { "type": "string", @@ -26114,9 +27164,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -26138,7 +27188,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -26231,9 +27281,9 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -26255,7 +27305,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -29274,7 +30324,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -29291,6 +30341,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29348,7 +30458,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -29365,6 +30475,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29425,7 +30593,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -29442,6 +30610,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29487,7 +30711,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -29504,6 +30728,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29547,7 +30827,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -29564,6 +30844,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29607,7 +30943,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -29624,6 +30960,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/components\/schemas\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -31145,7 +32537,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -31173,7 +32565,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31201,7 +32593,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -31229,7 +32621,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -31257,7 +32649,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -31285,7 +32677,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31313,7 +32705,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31341,7 +32733,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -31369,7 +32761,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31397,7 +32789,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -31425,7 +32817,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -31453,7 +32845,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -31481,7 +32873,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -31509,7 +32901,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -31537,7 +32929,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -31565,7 +32957,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -31593,7 +32985,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -31621,7 +33013,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31649,7 +33041,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -31677,7 +33069,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31705,7 +33097,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -31733,7 +33125,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31761,7 +33153,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -31789,7 +33181,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31817,7 +33209,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -31845,7 +33237,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -31873,7 +33265,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -31901,7 +33293,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -31929,7 +33321,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31957,7 +33349,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -31985,7 +33377,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -32013,7 +33405,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -32041,7 +33433,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -32069,7 +33461,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -32097,7 +33489,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/swagger2-1.8.x-client.json b/app/config/specs/swagger2-1.8.x-client.json index 680491b1b4..a18e3f17b4 100644 --- a/app/config/specs/swagger2-1.8.x-client.json +++ b/app/config/specs/swagger2-1.8.x-client.json @@ -624,7 +624,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -642,6 +642,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -690,7 +744,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -708,6 +762,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -769,7 +881,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -787,6 +899,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -837,7 +1001,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -855,6 +1019,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -914,7 +1132,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -932,6 +1150,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -992,7 +1268,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -1010,6 +1286,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -1043,7 +1365,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1061,6 +1383,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1094,7 +1462,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1112,6 +1480,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1145,7 +1559,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1163,6 +1577,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4520,7 +4980,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -4605,7 +5065,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -4638,7 +5098,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } } ], @@ -4752,7 +5212,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -4845,7 +5305,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -4878,7 +5338,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -4988,7 +5448,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -5088,7 +5548,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -5172,7 +5632,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -5284,7 +5744,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -7083,13 +7543,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -7107,7 +7567,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -7140,7 +7600,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "type": "string", "x-example": "", @@ -7162,7 +7622,7 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "consumes": [ "application\/json" ], @@ -7170,9 +7630,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7188,7 +7648,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -7202,7 +7662,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -7226,8 +7686,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" } ], "auth": { @@ -7252,7 +7712,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "type": "string", "x-example": "", @@ -7303,13 +7763,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -7327,7 +7787,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -7360,7 +7820,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -7390,7 +7850,7 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "consumes": [ "application\/json" ], @@ -7398,9 +7858,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7416,7 +7876,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -7430,7 +7890,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -7453,8 +7913,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -7521,7 +7981,7 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "consumes": [ "application\/json" ], @@ -7529,7 +7989,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -7547,7 +8007,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -7622,13 +8082,13 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -7643,7 +8103,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -7676,7 +8136,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -7696,7 +8156,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "consumes": [ "application\/json" ], @@ -7704,7 +8164,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -7722,7 +8182,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -7804,7 +8264,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "consumes": [ "application\/json" ], @@ -7812,7 +8272,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -7830,7 +8290,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -9009,7 +9469,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -9038,7 +9498,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9067,7 +9527,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9096,7 +9556,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -9125,7 +9585,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -9154,7 +9614,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -9183,7 +9643,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -9212,7 +9672,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -9241,7 +9701,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9270,7 +9730,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -9299,7 +9759,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9328,7 +9788,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -9357,7 +9817,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -9386,7 +9846,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -9415,7 +9875,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/swagger2-1.8.x-console.json b/app/config/specs/swagger2-1.8.x-console.json index 4b53ac48ec..6edd63ac20 100644 --- a/app/config/specs/swagger2-1.8.x-console.json +++ b/app/config/specs/swagger2-1.8.x-console.json @@ -667,7 +667,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -685,6 +685,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -732,7 +786,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -750,6 +804,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -810,7 +922,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -828,6 +940,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -877,7 +1041,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -895,6 +1059,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -954,7 +1172,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -972,6 +1190,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -1031,7 +1307,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -1049,6 +1325,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -1081,7 +1403,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1099,6 +1421,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1131,7 +1499,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1149,6 +1517,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1181,7 +1595,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1199,6 +1613,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4718,7 +5178,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4743,7 +5203,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4821,7 +5281,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4850,7 +5310,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4938,7 +5398,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" }, "methods": [ { @@ -4962,7 +5422,7 @@ "demo": "databases\/list-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" } } ], @@ -5038,7 +5498,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -5064,7 +5524,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -5129,7 +5589,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -5158,7 +5618,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -5242,7 +5702,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -5267,7 +5727,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -5332,7 +5792,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [] @@ -5416,7 +5876,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [] @@ -5525,7 +5985,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [] @@ -5596,7 +6056,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [] @@ -5701,7 +6161,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [] @@ -5772,7 +6232,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [] @@ -5857,7 +6317,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [] @@ -5967,7 +6427,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [] @@ -6079,7 +6539,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [] @@ -6189,7 +6649,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [] @@ -6301,7 +6761,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [] @@ -6411,7 +6871,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [] @@ -6523,7 +6983,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [] @@ -6643,7 +7103,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [] @@ -6765,7 +7225,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [] @@ -6887,7 +7347,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [] @@ -7011,7 +7471,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [] @@ -7133,7 +7593,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [] @@ -7257,7 +7717,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [] @@ -7367,7 +7827,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [] @@ -7479,7 +7939,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [] @@ -7616,7 +8076,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [] @@ -7739,7 +8199,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [] @@ -7857,7 +8317,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [] @@ -7967,7 +8427,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [] @@ -8108,7 +8568,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [] @@ -8181,7 +8641,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [] @@ -8261,7 +8721,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [] @@ -8368,7 +8828,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -8453,7 +8913,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -8486,7 +8946,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -8516,7 +8976,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -8630,7 +9090,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8660,7 +9120,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8755,7 +9215,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [] @@ -8851,7 +9311,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [] @@ -8941,7 +9401,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -9034,7 +9494,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -9067,7 +9527,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -9177,7 +9637,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -9277,7 +9737,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -9357,7 +9817,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRowLogs" + "replaceWith": "tablesDB.listRowLogs" }, "auth": { "Project": [] @@ -9451,7 +9911,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -9563,7 +10023,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -9671,7 +10131,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [] @@ -9754,7 +10214,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [] @@ -9885,7 +10345,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [] @@ -9958,7 +10418,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [] @@ -10036,7 +10496,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTableLogs" + "replaceWith": "tablesDB.listTableLogs" }, "auth": { "Project": [] @@ -10118,7 +10578,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTableUsage" + "replaceWith": "tablesDB.getTableUsage" }, "auth": { "Project": [] @@ -10208,7 +10668,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" }, "methods": [ { @@ -10235,7 +10695,7 @@ "demo": "databases\/list-logs.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" } } ], @@ -10311,7 +10771,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" }, "methods": [ { @@ -10338,7 +10798,7 @@ "demo": "databases\/get-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" } } ], @@ -15598,7 +16058,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -15616,6 +16076,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -15716,7 +16244,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -15734,6 +16262,72 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -16164,7 +16758,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -16182,6 +16776,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16279,7 +16943,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -16297,6 +16961,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16392,7 +17124,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -16410,6 +17142,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -16483,7 +17277,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -16501,6 +17295,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -17256,7 +18110,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -17274,6 +18128,90 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -17415,7 +18353,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -17433,6 +18371,86 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -21371,7 +22389,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatus", "group": "projects", @@ -21388,6 +22406,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + }, + "methods": [ + { + "name": "updateApiStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-api-status.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + } + }, + { + "name": "updateAPIStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-a-p-i-status.md" + } + ], "auth": { "Project": [] } @@ -21463,7 +22543,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatusAll", "group": "projects", @@ -21480,6 +22560,64 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + }, + "methods": [ + { + "name": "updateApiStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-api-status-all.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + } + }, + { + "name": "updateAPIStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-a-p-i-status-all.md" + } + ], "auth": { "Project": [] } @@ -23997,7 +25135,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtp", "group": "templates", @@ -24014,6 +25152,80 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + }, + "methods": [ + { + "name": "updateSmtp", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-smtp.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + } + }, + { + "name": "updateSMTP", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-s-m-t-p.md" + } + ], "auth": { "Project": [] } @@ -24126,7 +25338,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpTest", "group": "templates", @@ -24143,6 +25355,84 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + }, + "methods": [ + { + "name": "createSmtpTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-smtp-test.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + } + }, + { + "name": "createSMTPTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-s-m-t-p-test.md" + } + ], "auth": { "Project": [] } @@ -25043,7 +26333,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getSmsTemplate", "group": "templates", @@ -25060,6 +26350,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + }, + "methods": [ + { + "name": "getSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + } + }, + { + "name": "getSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25260,7 +26612,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmsTemplate", "group": "templates", @@ -25277,6 +26629,72 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + }, + "methods": [ + { + "name": "updateSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + } + }, + { + "name": "updateSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25495,7 +26913,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteSmsTemplate", "group": "templates", @@ -25512,6 +26930,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + }, + "methods": [ + { + "name": "deleteSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + } + }, + { + "name": "deleteSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -30674,13 +32154,13 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -30698,7 +32178,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -30744,7 +32224,7 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "consumes": [ "application\/json" ], @@ -30752,7 +32232,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -30770,7 +32250,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -30828,13 +32308,13 @@ "\/tablesdb\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbListUsage", + "operationId": "tablesDBListUsage", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -30852,7 +32332,7 @@ "weight": 377, "cookies": false, "type": "", - "demo": "tables-db\/list-usage.md", + "demo": "tables-d-b\/list-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -30865,7 +32345,7 @@ "methods": [ { "name": "listUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -30881,7 +32361,7 @@ } ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/list-usage.md" + "demo": "tables-d-b\/list-usage.md" } ], "auth": { @@ -30920,13 +32400,13 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -30944,7 +32424,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -30977,7 +32457,7 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "consumes": [ "application\/json" ], @@ -30985,7 +32465,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -31003,7 +32483,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -31060,13 +32540,13 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -31081,7 +32561,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -31116,13 +32596,13 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -31140,7 +32620,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -31194,7 +32674,7 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "consumes": [ "application\/json" ], @@ -31202,9 +32682,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -31220,7 +32700,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31301,13 +32781,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -31325,7 +32805,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31366,7 +32846,7 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "consumes": [ "application\/json" ], @@ -31374,7 +32854,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -31392,7 +32872,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31472,13 +32952,13 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -31493,7 +32973,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31536,13 +33016,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -31560,7 +33040,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -31615,7 +33095,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "consumes": [ "application\/json" ], @@ -31623,7 +33103,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -31641,7 +33121,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31672,7 +33152,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -31721,7 +33201,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "consumes": [ "application\/json" ], @@ -31729,7 +33209,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31747,7 +33227,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31778,7 +33258,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -31829,7 +33309,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "consumes": [ "application\/json" ], @@ -31837,7 +33317,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -31855,7 +33335,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31935,7 +33415,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "consumes": [ "application\/json" ], @@ -31943,7 +33423,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31961,7 +33441,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32043,7 +33523,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "consumes": [ "application\/json" ], @@ -32051,7 +33531,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -32069,7 +33549,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32149,7 +33629,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "consumes": [ "application\/json" ], @@ -32157,7 +33637,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32175,7 +33655,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32257,7 +33737,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "consumes": [ "application\/json" ], @@ -32265,7 +33745,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -32283,7 +33763,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32373,7 +33853,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "consumes": [ "application\/json" ], @@ -32381,7 +33861,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32399,7 +33879,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32491,7 +33971,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "consumes": [ "application\/json" ], @@ -32499,7 +33979,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32517,7 +33997,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32609,7 +34089,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "consumes": [ "application\/json" ], @@ -32617,7 +34097,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32635,7 +34115,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32729,7 +34209,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "consumes": [ "application\/json" ], @@ -32737,7 +34217,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32755,7 +34235,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32847,7 +34327,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "consumes": [ "application\/json" ], @@ -32855,7 +34335,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32873,7 +34353,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32967,7 +34447,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "consumes": [ "application\/json" ], @@ -32975,7 +34455,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -32993,7 +34473,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33073,7 +34553,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "consumes": [ "application\/json" ], @@ -33081,7 +34561,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33099,7 +34579,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33181,7 +34661,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "consumes": [ "application\/json" ], @@ -33189,7 +34669,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33207,7 +34687,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33314,7 +34794,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "consumes": [ "application\/json" ], @@ -33322,7 +34802,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -33340,7 +34820,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33371,7 +34851,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -33433,7 +34913,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "consumes": [ "application\/json" ], @@ -33441,7 +34921,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33459,7 +34939,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33490,7 +34970,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -33547,7 +35027,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "consumes": [ "application\/json" ], @@ -33555,7 +35035,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -33573,7 +35053,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33653,7 +35133,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "consumes": [ "application\/json" ], @@ -33661,7 +35141,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33679,7 +35159,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33761,13 +35241,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -33816,7 +35296,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33864,13 +35344,13 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -33885,7 +35365,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33935,7 +35415,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "consumes": [ "application\/json" ], @@ -33943,7 +35423,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33961,7 +35441,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -34039,13 +35519,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -34063,7 +35543,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -34094,7 +35574,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34116,7 +35596,7 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "consumes": [ "application\/json" ], @@ -34124,7 +35604,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -34142,7 +35622,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34173,7 +35653,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34245,13 +35725,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -34269,7 +35749,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34300,7 +35780,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34317,13 +35797,13 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -34338,7 +35818,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34369,7 +35849,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34388,13 +35868,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/logs": { "get": { "summary": "List table logs", - "operationId": "tablesDbListTableLogs", + "operationId": "tablesDBListTableLogs", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the table activity logs list by its unique ID.", "responses": { @@ -34412,7 +35892,7 @@ "weight": 383, "cookies": false, "type": "", - "demo": "tables-db\/list-table-logs.md", + "demo": "tables-d-b\/list-table-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -34466,13 +35946,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -34490,7 +35970,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -34523,7 +36003,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "type": "string", "x-example": "", @@ -34545,7 +36025,7 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "consumes": [ "application\/json" ], @@ -34553,9 +36033,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -34571,7 +36051,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -34585,7 +36065,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -34609,12 +36089,12 @@ "model": "#\/definitions\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [] @@ -34635,8 +36115,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -34661,7 +36141,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "type": "string", "x-example": "", @@ -34710,7 +36190,7 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "consumes": [ "application\/json" ], @@ -34718,9 +36198,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -34736,7 +36216,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34750,7 +36230,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -34771,8 +36251,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -34827,7 +36307,7 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "consumes": [ "application\/json" ], @@ -34835,7 +36315,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -34853,7 +36333,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34919,7 +36399,7 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "consumes": [ "application\/json" ], @@ -34927,7 +36407,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -34945,7 +36425,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -34977,7 +36457,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -35007,13 +36487,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -35031,7 +36511,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -35064,7 +36544,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -35094,7 +36574,7 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "consumes": [ "application\/json" ], @@ -35102,9 +36582,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -35120,7 +36600,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -35134,7 +36614,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35157,8 +36637,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -35225,7 +36705,7 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "consumes": [ "application\/json" ], @@ -35233,7 +36713,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -35251,7 +36731,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -35326,13 +36806,13 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -35347,7 +36827,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -35380,7 +36860,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -35400,13 +36880,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/logs": { "get": { "summary": "List row logs", - "operationId": "tablesDbListRowLogs", + "operationId": "tablesDBListRowLogs", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the row activity logs list by its unique ID.", "responses": { @@ -35424,7 +36904,7 @@ "weight": 421, "cookies": false, "type": "", - "demo": "tables-db\/list-row-logs.md", + "demo": "tables-d-b\/list-row-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -35486,7 +36966,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "consumes": [ "application\/json" ], @@ -35494,7 +36974,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -35512,7 +36992,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35594,7 +37074,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "consumes": [ "application\/json" ], @@ -35602,7 +37082,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -35620,7 +37100,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35702,13 +37182,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/usage": { "get": { "summary": "Get table usage stats", - "operationId": "tablesDbGetTableUsage", + "operationId": "tablesDBGetTableUsage", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a table. Returning the total number of rows. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35726,7 +37206,7 @@ "weight": 384, "cookies": false, "type": "", - "demo": "tables-db\/get-table-usage.md", + "demo": "tables-d-b\/get-table-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35788,13 +37268,13 @@ "\/tablesdb\/{databaseId}\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbGetUsage", + "operationId": "tablesDBGetUsage", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35812,7 +37292,7 @@ "weight": 376, "cookies": false, "type": "", - "demo": "tables-db\/get-usage.md", + "demo": "tables-d-b\/get-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-database-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35825,7 +37305,7 @@ "methods": [ { "name": "getUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35844,7 +37324,7 @@ } ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/get-usage.md" + "demo": "tables-d-b\/get-usage.md" } ], "auth": { @@ -38928,7 +40408,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -38945,6 +40425,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [] } @@ -39002,7 +40540,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -39019,6 +40557,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -39074,7 +40668,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -39091,6 +40685,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -39133,7 +40781,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -39150,6 +40798,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39192,7 +40894,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -39209,6 +40911,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39251,7 +41007,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -39268,6 +41024,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -41457,7 +43267,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -41486,7 +43296,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -41515,7 +43325,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -41544,7 +43354,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -41573,7 +43383,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -41602,7 +43412,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41631,7 +43441,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41660,7 +43470,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -41689,7 +43499,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -41718,7 +43528,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -41747,7 +43557,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -41776,7 +43586,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -41805,7 +43615,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -41834,7 +43644,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -41863,7 +43673,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -41892,7 +43702,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -41921,7 +43731,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -41950,7 +43760,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -41979,7 +43789,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -42008,7 +43818,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -42037,7 +43847,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of installations rows that matched your query.", + "description": "Total number of installations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42066,7 +43876,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworkProviderRepositories rows that matched your query.", + "description": "Total number of frameworkProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42095,7 +43905,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimeProviderRepositories rows that matched your query.", + "description": "Total number of runtimeProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42124,7 +43934,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of branches rows that matched your query.", + "description": "Total number of branches that matched your query.", "x-example": 5, "format": "int32" }, @@ -42153,7 +43963,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42182,7 +43992,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42211,7 +44021,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -42240,7 +44050,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -42269,7 +44079,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of projects rows that matched your query.", + "description": "Total number of projects that matched your query.", "x-example": 5, "format": "int32" }, @@ -42298,7 +44108,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of webhooks rows that matched your query.", + "description": "Total number of webhooks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42327,7 +44137,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of keys rows that matched your query.", + "description": "Total number of keys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42356,7 +44166,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of devKeys rows that matched your query.", + "description": "Total number of devKeys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42385,7 +44195,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of platforms rows that matched your query.", + "description": "Total number of platforms that matched your query.", "x-example": 5, "format": "int32" }, @@ -42414,7 +44224,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -42443,7 +44253,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -42472,7 +44282,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42501,7 +44311,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -42530,7 +44340,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -42559,7 +44369,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -42588,7 +44398,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rules rows that matched your query.", + "description": "Total number of rules that matched your query.", "x-example": 5, "format": "int32" }, @@ -42617,7 +44427,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42646,7 +44456,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42675,7 +44485,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42704,7 +44514,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -42733,7 +44543,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42762,7 +44572,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -42791,7 +44601,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of migrations rows that matched your query.", + "description": "Total number of migrations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42820,7 +44630,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, @@ -42849,7 +44659,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of contents rows that matched your query.", + "description": "Total number of contents that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/swagger2-1.8.x-server.json b/app/config/specs/swagger2-1.8.x-server.json index 5aafbaf2fc..9cee632b50 100644 --- a/app/config/specs/swagger2-1.8.x-server.json +++ b/app/config/specs/swagger2-1.8.x-server.json @@ -639,7 +639,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -657,6 +657,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -706,7 +762,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -724,6 +780,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -786,7 +902,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -804,6 +920,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -855,7 +1025,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -873,6 +1043,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -932,7 +1156,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -950,6 +1174,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1011,7 +1295,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -1029,6 +1313,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1063,7 +1395,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1081,6 +1413,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1115,7 +1495,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1133,6 +1513,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1167,7 +1595,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1185,6 +1613,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -4224,7 +4700,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4250,7 +4726,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4329,7 +4805,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4359,7 +4835,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4448,7 +4924,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -4475,7 +4951,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -4541,7 +5017,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -4571,7 +5047,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -4656,7 +5132,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -4682,7 +5158,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -4748,7 +5224,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [], @@ -4833,7 +5309,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [], @@ -4943,7 +5419,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [], @@ -5015,7 +5491,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [], @@ -5121,7 +5597,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [], @@ -5193,7 +5669,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [], @@ -5279,7 +5755,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [], @@ -5390,7 +5866,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [], @@ -5503,7 +5979,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [], @@ -5614,7 +6090,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [], @@ -5727,7 +6203,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [], @@ -5838,7 +6314,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [], @@ -5951,7 +6427,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [], @@ -6072,7 +6548,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [], @@ -6195,7 +6671,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [], @@ -6318,7 +6794,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [], @@ -6443,7 +6919,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [], @@ -6566,7 +7042,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [], @@ -6691,7 +7167,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [], @@ -6802,7 +7278,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [], @@ -6915,7 +7391,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [], @@ -7053,7 +7529,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [], @@ -7177,7 +7653,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [], @@ -7296,7 +7772,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [], @@ -7407,7 +7883,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [], @@ -7549,7 +8025,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [], @@ -7623,7 +8099,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [], @@ -7704,7 +8180,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [], @@ -7812,7 +8288,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [], @@ -7899,7 +8375,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -7933,7 +8409,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -7964,7 +8440,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -8080,7 +8556,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8111,7 +8587,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8207,7 +8683,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [], @@ -8304,7 +8780,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [], @@ -8395,7 +8871,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [], @@ -8490,7 +8966,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -8524,7 +9000,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -8636,7 +9112,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [], @@ -8738,7 +9214,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [], @@ -8824,7 +9300,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [], @@ -8938,7 +9414,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [], @@ -9048,7 +9524,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [], @@ -9132,7 +9608,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [], @@ -9264,7 +9740,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [], @@ -9338,7 +9814,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [], @@ -14369,7 +14845,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -14387,6 +14863,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14488,7 +15034,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -14506,6 +15052,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14942,7 +15556,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -14960,6 +15574,78 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15058,7 +15744,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -15076,6 +15762,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15172,7 +15928,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -15190,6 +15946,70 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15264,7 +16084,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -15282,6 +16102,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -16044,7 +16926,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -16062,6 +16944,92 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -16204,7 +17172,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -16222,6 +17190,88 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -21656,13 +22706,13 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -21680,7 +22730,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -21727,7 +22777,7 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "consumes": [ "application\/json" ], @@ -21735,7 +22785,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -21753,7 +22803,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -21812,13 +22862,13 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -21836,7 +22886,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -21870,7 +22920,7 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "consumes": [ "application\/json" ], @@ -21878,7 +22928,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -21896,7 +22946,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -21954,13 +23004,13 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -21975,7 +23025,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -22011,13 +23061,13 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -22035,7 +23085,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -22090,7 +23140,7 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "consumes": [ "application\/json" ], @@ -22098,9 +23148,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -22116,7 +23166,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22198,13 +23248,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -22222,7 +23272,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22264,7 +23314,7 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "consumes": [ "application\/json" ], @@ -22272,7 +23322,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -22290,7 +23340,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22371,13 +23421,13 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -22392,7 +23442,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22436,13 +23486,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -22460,7 +23510,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -22516,7 +23566,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "consumes": [ "application\/json" ], @@ -22524,7 +23574,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -22542,7 +23592,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22574,7 +23624,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -22623,7 +23673,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "consumes": [ "application\/json" ], @@ -22631,7 +23681,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22649,7 +23699,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22681,7 +23731,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -22732,7 +23782,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "consumes": [ "application\/json" ], @@ -22740,7 +23790,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -22758,7 +23808,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22839,7 +23889,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "consumes": [ "application\/json" ], @@ -22847,7 +23897,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22865,7 +23915,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22948,7 +23998,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "consumes": [ "application\/json" ], @@ -22956,7 +24006,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -22974,7 +24024,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23055,7 +24105,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "consumes": [ "application\/json" ], @@ -23063,7 +24113,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23081,7 +24131,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23164,7 +24214,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "consumes": [ "application\/json" ], @@ -23172,7 +24222,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -23190,7 +24240,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23281,7 +24331,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "consumes": [ "application\/json" ], @@ -23289,7 +24339,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23307,7 +24357,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23400,7 +24450,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "consumes": [ "application\/json" ], @@ -23408,7 +24458,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23426,7 +24476,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23519,7 +24569,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "consumes": [ "application\/json" ], @@ -23527,7 +24577,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23545,7 +24595,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23640,7 +24690,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "consumes": [ "application\/json" ], @@ -23648,7 +24698,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23666,7 +24716,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23759,7 +24809,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "consumes": [ "application\/json" ], @@ -23767,7 +24817,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23785,7 +24835,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23880,7 +24930,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "consumes": [ "application\/json" ], @@ -23888,7 +24938,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -23906,7 +24956,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23987,7 +25037,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "consumes": [ "application\/json" ], @@ -23995,7 +25045,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24013,7 +25063,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24096,7 +25146,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "consumes": [ "application\/json" ], @@ -24104,7 +25154,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -24122,7 +25172,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24230,7 +25280,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "consumes": [ "application\/json" ], @@ -24238,7 +25288,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -24256,7 +25306,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24288,7 +25338,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -24350,7 +25400,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "consumes": [ "application\/json" ], @@ -24358,7 +25408,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24376,7 +25426,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24408,7 +25458,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -24465,7 +25515,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "consumes": [ "application\/json" ], @@ -24473,7 +25523,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -24491,7 +25541,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24572,7 +25622,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "consumes": [ "application\/json" ], @@ -24580,7 +25630,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24598,7 +25648,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24681,13 +25731,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -24736,7 +25786,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24785,13 +25835,13 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -24806,7 +25856,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24857,7 +25907,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "consumes": [ "application\/json" ], @@ -24865,7 +25915,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -24883,7 +25933,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24962,13 +26012,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -24986,7 +26036,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -25018,7 +26068,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25040,7 +26090,7 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "consumes": [ "application\/json" ], @@ -25048,7 +26098,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -25066,7 +26116,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25098,7 +26148,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25170,13 +26220,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -25194,7 +26244,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25226,7 +26276,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25243,13 +26293,13 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -25264,7 +26314,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25296,7 +26346,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25315,13 +26365,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -25339,7 +26389,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -25374,7 +26424,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "type": "string", "x-example": "", @@ -25396,7 +26446,7 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "consumes": [ "application\/json" ], @@ -25404,9 +26454,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25422,7 +26472,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -25436,7 +26486,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [], @@ -25461,12 +26511,12 @@ "model": "#\/definitions\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [], @@ -25488,8 +26538,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -25516,7 +26566,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "type": "string", "x-example": "", @@ -25565,7 +26615,7 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "consumes": [ "application\/json" ], @@ -25573,9 +26623,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -25591,7 +26641,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25605,7 +26655,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -25627,8 +26677,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -25684,7 +26734,7 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "consumes": [ "application\/json" ], @@ -25692,7 +26742,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -25710,7 +26760,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25777,7 +26827,7 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "consumes": [ "application\/json" ], @@ -25785,7 +26835,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -25803,7 +26853,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -25836,7 +26886,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25866,13 +26916,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -25890,7 +26940,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -25925,7 +26975,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25955,7 +27005,7 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "consumes": [ "application\/json" ], @@ -25963,9 +27013,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25981,7 +27031,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -25995,7 +27045,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -26019,8 +27069,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -26089,7 +27139,7 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "consumes": [ "application\/json" ], @@ -26097,7 +27147,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -26115,7 +27165,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -26192,13 +27242,13 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -26213,7 +27263,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -26248,7 +27298,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -26268,7 +27318,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "consumes": [ "application\/json" ], @@ -26276,7 +27326,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -26294,7 +27344,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -26378,7 +27428,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "consumes": [ "application\/json" ], @@ -26386,7 +27436,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -26404,7 +27454,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -29434,7 +30484,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -29451,6 +30501,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29509,7 +30619,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -29526,6 +30636,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29582,7 +30750,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -29599,6 +30767,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29642,7 +30866,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -29659,6 +30883,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29702,7 +30982,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -29719,6 +30999,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29762,7 +31098,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -29779,6 +31115,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -31245,7 +32637,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -31274,7 +32666,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31303,7 +32695,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -31332,7 +32724,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -31361,7 +32753,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -31390,7 +32782,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31419,7 +32811,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31448,7 +32840,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -31477,7 +32869,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31506,7 +32898,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -31535,7 +32927,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -31564,7 +32956,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -31593,7 +32985,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -31622,7 +33014,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -31651,7 +33043,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -31680,7 +33072,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -31709,7 +33101,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -31738,7 +33130,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31767,7 +33159,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -31796,7 +33188,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31825,7 +33217,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -31854,7 +33246,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31883,7 +33275,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -31912,7 +33304,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31941,7 +33333,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -31970,7 +33362,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -31999,7 +33391,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -32028,7 +33420,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -32057,7 +33449,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -32086,7 +33478,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -32115,7 +33507,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -32144,7 +33536,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -32173,7 +33565,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -32202,7 +33594,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -32231,7 +33623,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/swagger2-latest-client.json b/app/config/specs/swagger2-latest-client.json index 680491b1b4..a18e3f17b4 100644 --- a/app/config/specs/swagger2-latest-client.json +++ b/app/config/specs/swagger2-latest-client.json @@ -624,7 +624,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -642,6 +642,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -690,7 +744,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -708,6 +762,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -769,7 +881,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -787,6 +899,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -837,7 +1001,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -855,6 +1019,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -914,7 +1132,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -932,6 +1150,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -992,7 +1268,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -1010,6 +1286,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -1043,7 +1365,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1061,6 +1383,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1094,7 +1462,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1112,6 +1480,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1145,7 +1559,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1163,6 +1577,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4520,7 +4980,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -4605,7 +5065,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -4638,7 +5098,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } } ], @@ -4752,7 +5212,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -4845,7 +5305,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -4878,7 +5338,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -4988,7 +5448,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -5088,7 +5548,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -5172,7 +5632,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -5284,7 +5744,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -7083,13 +7543,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -7107,7 +7567,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -7140,7 +7600,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "type": "string", "x-example": "", @@ -7162,7 +7622,7 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "consumes": [ "application\/json" ], @@ -7170,9 +7630,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7188,7 +7648,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -7202,7 +7662,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -7226,8 +7686,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" } ], "auth": { @@ -7252,7 +7712,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "type": "string", "x-example": "", @@ -7303,13 +7763,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -7327,7 +7787,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -7360,7 +7820,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -7390,7 +7850,7 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "consumes": [ "application\/json" ], @@ -7398,9 +7858,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -7416,7 +7876,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -7430,7 +7890,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -7453,8 +7913,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -7521,7 +7981,7 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "consumes": [ "application\/json" ], @@ -7529,7 +7989,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -7547,7 +8007,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -7622,13 +8082,13 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -7643,7 +8103,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -7676,7 +8136,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -7696,7 +8156,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "consumes": [ "application\/json" ], @@ -7704,7 +8164,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -7722,7 +8182,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -7804,7 +8264,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "consumes": [ "application\/json" ], @@ -7812,7 +8272,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -7830,7 +8290,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -9009,7 +9469,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -9038,7 +9498,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9067,7 +9527,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9096,7 +9556,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -9125,7 +9585,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -9154,7 +9614,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -9183,7 +9643,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -9212,7 +9672,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -9241,7 +9701,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -9270,7 +9730,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -9299,7 +9759,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -9328,7 +9788,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -9357,7 +9817,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -9386,7 +9846,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -9415,7 +9875,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/swagger2-latest-console.json b/app/config/specs/swagger2-latest-console.json index 4b53ac48ec..6edd63ac20 100644 --- a/app/config/specs/swagger2-latest-console.json +++ b/app/config/specs/swagger2-latest-console.json @@ -667,7 +667,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -685,6 +685,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -732,7 +786,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -750,6 +804,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -810,7 +922,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -828,6 +940,58 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -877,7 +1041,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -895,6 +1059,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -954,7 +1172,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -972,6 +1190,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -1031,7 +1307,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -1049,6 +1325,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -1081,7 +1403,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1099,6 +1421,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1131,7 +1499,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1149,6 +1517,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -1181,7 +1595,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1199,6 +1613,52 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -4718,7 +5178,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4743,7 +5203,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4821,7 +5281,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4850,7 +5310,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4938,7 +5398,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" }, "methods": [ { @@ -4962,7 +5422,7 @@ "demo": "databases\/list-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listUsage" + "replaceWith": "tablesDB.listUsage" } } ], @@ -5038,7 +5498,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -5064,7 +5524,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -5129,7 +5589,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -5158,7 +5618,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -5242,7 +5702,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -5267,7 +5727,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -5332,7 +5792,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [] @@ -5416,7 +5876,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [] @@ -5525,7 +5985,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [] @@ -5596,7 +6056,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [] @@ -5701,7 +6161,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [] @@ -5772,7 +6232,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [] @@ -5857,7 +6317,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [] @@ -5967,7 +6427,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [] @@ -6079,7 +6539,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [] @@ -6189,7 +6649,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [] @@ -6301,7 +6761,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [] @@ -6411,7 +6871,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [] @@ -6523,7 +6983,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [] @@ -6643,7 +7103,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [] @@ -6765,7 +7225,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [] @@ -6887,7 +7347,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [] @@ -7011,7 +7471,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [] @@ -7133,7 +7593,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [] @@ -7257,7 +7717,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [] @@ -7367,7 +7827,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [] @@ -7479,7 +7939,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [] @@ -7616,7 +8076,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [] @@ -7739,7 +8199,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [] @@ -7857,7 +8317,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [] @@ -7967,7 +8427,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [] @@ -8108,7 +8568,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [] @@ -8181,7 +8641,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [] @@ -8261,7 +8721,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [] @@ -8368,7 +8828,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [] @@ -8453,7 +8913,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -8486,7 +8946,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -8516,7 +8976,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -8630,7 +9090,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8660,7 +9120,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8755,7 +9215,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [] @@ -8851,7 +9311,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [] @@ -8941,7 +9401,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [] @@ -9034,7 +9494,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -9067,7 +9527,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -9177,7 +9637,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [] @@ -9277,7 +9737,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [] @@ -9357,7 +9817,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRowLogs" + "replaceWith": "tablesDB.listRowLogs" }, "auth": { "Project": [] @@ -9451,7 +9911,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [] @@ -9563,7 +10023,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [] @@ -9671,7 +10131,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [] @@ -9754,7 +10214,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [] @@ -9885,7 +10345,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [] @@ -9958,7 +10418,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [] @@ -10036,7 +10496,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTableLogs" + "replaceWith": "tablesDB.listTableLogs" }, "auth": { "Project": [] @@ -10118,7 +10578,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTableUsage" + "replaceWith": "tablesDB.getTableUsage" }, "auth": { "Project": [] @@ -10208,7 +10668,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" }, "methods": [ { @@ -10235,7 +10695,7 @@ "demo": "databases\/list-logs.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listDatabaseLogs" + "replaceWith": "tablesDB.listDatabaseLogs" } } ], @@ -10311,7 +10771,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" }, "methods": [ { @@ -10338,7 +10798,7 @@ "demo": "databases\/get-usage.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getUsage" + "replaceWith": "tablesDB.getUsage" } } ], @@ -15598,7 +16058,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -15616,6 +16076,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -15716,7 +16244,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -15734,6 +16262,72 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [] } @@ -16164,7 +16758,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -16182,6 +16776,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16279,7 +16943,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -16297,6 +16961,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [] } @@ -16392,7 +17124,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -16410,6 +17142,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -16483,7 +17277,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -16501,6 +17295,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [] } @@ -17256,7 +18110,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -17274,6 +18128,90 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -17415,7 +18353,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -17433,6 +18371,86 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [] } @@ -21371,7 +22389,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatus", "group": "projects", @@ -21388,6 +22406,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + }, + "methods": [ + { + "name": "updateApiStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-api-status.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatus" + } + }, + { + "name": "updateAPIStatus", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "api", + "status" + ], + "required": [ + "projectId", + "api", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of a specific API type. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime.", + "demo": "projects\/update-a-p-i-status.md" + } + ], "auth": { "Project": [] } @@ -21463,7 +22543,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApiStatusAll", "group": "projects", @@ -21480,6 +22560,64 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + }, + "methods": [ + { + "name": "updateApiStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-api-status-all.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPIStatusAll" + } + }, + { + "name": "updateAPIStatusAll", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "status" + ], + "required": [ + "projectId", + "status" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the status of all API types. Use this endpoint to enable or disable API types such as REST, GraphQL and Realtime all at once.", + "demo": "projects\/update-a-p-i-status-all.md" + } + ], "auth": { "Project": [] } @@ -23997,7 +25135,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtp", "group": "templates", @@ -24014,6 +25152,80 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + }, + "methods": [ + { + "name": "updateSmtp", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-smtp.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTP" + } + }, + { + "name": "updateSMTP", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "enabled", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "enabled" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/project" + } + ], + "description": "Update the SMTP configuration for your project. Use this endpoint to configure your project's SMTP provider with your custom settings for sending transactional emails. ", + "demo": "projects\/update-s-m-t-p.md" + } + ], "auth": { "Project": [] } @@ -24126,7 +25338,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpTest", "group": "templates", @@ -24143,6 +25355,84 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + }, + "methods": [ + { + "name": "createSmtpTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-smtp-test.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPTest" + } + }, + { + "name": "createSMTPTest", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "replyTo", + "host", + "port", + "username", + "password", + "secure" + ], + "required": [ + "projectId", + "emails", + "senderName", + "senderEmail", + "host" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Send a test email to verify SMTP configuration. ", + "demo": "projects\/create-s-m-t-p-test.md" + } + ], "auth": { "Project": [] } @@ -25043,7 +26333,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getSmsTemplate", "group": "templates", @@ -25060,6 +26350,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + }, + "methods": [ + { + "name": "getSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getSMSTemplate" + } + }, + { + "name": "getSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Get a custom SMS template for the specified locale and type returning it's contents.", + "demo": "projects\/get-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25260,7 +26612,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmsTemplate", "group": "templates", @@ -25277,6 +26629,72 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + }, + "methods": [ + { + "name": "updateSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMSTemplate" + } + }, + { + "name": "updateSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale", + "message" + ], + "required": [ + "projectId", + "type", + "locale", + "message" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Update a custom SMS template for the specified locale and type. Use this endpoint to modify the content of your SMS templates. ", + "demo": "projects\/update-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -25495,7 +26913,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteSmsTemplate", "group": "templates", @@ -25512,6 +26930,68 @@ "console" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + }, + "methods": [ + { + "name": "deleteSmsTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-sms-template.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteSMSTemplate" + } + }, + { + "name": "deleteSMSTemplate", + "namespace": "projects", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "projectId", + "type", + "locale" + ], + "required": [ + "projectId", + "type", + "locale" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/smsTemplate" + } + ], + "description": "Reset a custom SMS template to its default value. This endpoint removes any custom message and restores the template to its original state. ", + "demo": "projects\/delete-s-m-s-template.md" + } + ], "auth": { "Project": [] } @@ -30674,13 +32154,13 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -30698,7 +32178,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -30744,7 +32224,7 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "consumes": [ "application\/json" ], @@ -30752,7 +32232,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -30770,7 +32250,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -30828,13 +32308,13 @@ "\/tablesdb\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbListUsage", + "operationId": "tablesDBListUsage", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -30852,7 +32332,7 @@ "weight": 377, "cookies": false, "type": "", - "demo": "tables-db\/list-usage.md", + "demo": "tables-d-b\/list-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -30865,7 +32345,7 @@ "methods": [ { "name": "listUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -30881,7 +32361,7 @@ } ], "description": "List usage metrics and statistics for all databases in the project. You can view the total number of databases, tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/list-usage.md" + "demo": "tables-d-b\/list-usage.md" } ], "auth": { @@ -30920,13 +32400,13 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -30944,7 +32424,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -30977,7 +32457,7 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "consumes": [ "application\/json" ], @@ -30985,7 +32465,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -31003,7 +32483,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -31060,13 +32540,13 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -31081,7 +32561,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -31116,13 +32596,13 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -31140,7 +32620,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -31194,7 +32674,7 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "consumes": [ "application\/json" ], @@ -31202,9 +32682,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -31220,7 +32700,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31301,13 +32781,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -31325,7 +32805,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31366,7 +32846,7 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "consumes": [ "application\/json" ], @@ -31374,7 +32854,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -31392,7 +32872,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31472,13 +32952,13 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -31493,7 +32973,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -31536,13 +33016,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -31560,7 +33040,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -31615,7 +33095,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "consumes": [ "application\/json" ], @@ -31623,7 +33103,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -31641,7 +33121,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31672,7 +33152,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -31721,7 +33201,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "consumes": [ "application\/json" ], @@ -31729,7 +33209,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31747,7 +33227,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31778,7 +33258,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -31829,7 +33309,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "consumes": [ "application\/json" ], @@ -31837,7 +33317,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -31855,7 +33335,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -31935,7 +33415,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "consumes": [ "application\/json" ], @@ -31943,7 +33423,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -31961,7 +33441,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32043,7 +33523,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "consumes": [ "application\/json" ], @@ -32051,7 +33531,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -32069,7 +33549,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32149,7 +33629,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "consumes": [ "application\/json" ], @@ -32157,7 +33637,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32175,7 +33655,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32257,7 +33737,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "consumes": [ "application\/json" ], @@ -32265,7 +33745,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -32283,7 +33763,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32373,7 +33853,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "consumes": [ "application\/json" ], @@ -32381,7 +33861,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32399,7 +33879,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32491,7 +33971,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "consumes": [ "application\/json" ], @@ -32499,7 +33979,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32517,7 +33997,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32609,7 +34089,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "consumes": [ "application\/json" ], @@ -32617,7 +34097,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32635,7 +34115,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32729,7 +34209,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "consumes": [ "application\/json" ], @@ -32737,7 +34217,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -32755,7 +34235,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32847,7 +34327,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "consumes": [ "application\/json" ], @@ -32855,7 +34335,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -32873,7 +34353,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -32967,7 +34447,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "consumes": [ "application\/json" ], @@ -32975,7 +34455,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -32993,7 +34473,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33073,7 +34553,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "consumes": [ "application\/json" ], @@ -33081,7 +34561,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33099,7 +34579,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33181,7 +34661,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "consumes": [ "application\/json" ], @@ -33189,7 +34669,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33207,7 +34687,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33314,7 +34794,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "consumes": [ "application\/json" ], @@ -33322,7 +34802,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -33340,7 +34820,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33371,7 +34851,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -33433,7 +34913,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "consumes": [ "application\/json" ], @@ -33441,7 +34921,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33459,7 +34939,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33490,7 +34970,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -33547,7 +35027,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "consumes": [ "application\/json" ], @@ -33555,7 +35035,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -33573,7 +35053,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33653,7 +35133,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "consumes": [ "application\/json" ], @@ -33661,7 +35141,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -33679,7 +35159,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33761,13 +35241,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -33816,7 +35296,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33864,13 +35344,13 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -33885,7 +35365,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -33935,7 +35415,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "consumes": [ "application\/json" ], @@ -33943,7 +35423,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -33961,7 +35441,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -34039,13 +35519,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -34063,7 +35543,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -34094,7 +35574,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34116,7 +35596,7 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "consumes": [ "application\/json" ], @@ -34124,7 +35604,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -34142,7 +35622,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34173,7 +35653,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34245,13 +35725,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -34269,7 +35749,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34300,7 +35780,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34317,13 +35797,13 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -34338,7 +35818,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -34369,7 +35849,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -34388,13 +35868,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/logs": { "get": { "summary": "List table logs", - "operationId": "tablesDbListTableLogs", + "operationId": "tablesDBListTableLogs", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the table activity logs list by its unique ID.", "responses": { @@ -34412,7 +35892,7 @@ "weight": 383, "cookies": false, "type": "", - "demo": "tables-db\/list-table-logs.md", + "demo": "tables-d-b\/list-table-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -34466,13 +35946,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -34490,7 +35970,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -34523,7 +36003,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "type": "string", "x-example": "", @@ -34545,7 +36025,7 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "consumes": [ "application\/json" ], @@ -34553,9 +36033,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -34571,7 +36051,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -34585,7 +36065,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [] @@ -34609,12 +36089,12 @@ "model": "#\/definitions\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [] @@ -34635,8 +36115,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -34661,7 +36141,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "type": "string", "x-example": "", @@ -34710,7 +36190,7 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "consumes": [ "application\/json" ], @@ -34718,9 +36198,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -34736,7 +36216,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34750,7 +36230,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -34771,8 +36251,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -34827,7 +36307,7 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "consumes": [ "application\/json" ], @@ -34835,7 +36315,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -34853,7 +36333,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -34919,7 +36399,7 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "consumes": [ "application\/json" ], @@ -34927,7 +36407,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -34945,7 +36425,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -34977,7 +36457,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -35007,13 +36487,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -35031,7 +36511,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -35064,7 +36544,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -35094,7 +36574,7 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "consumes": [ "application\/json" ], @@ -35102,9 +36582,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -35120,7 +36600,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -35134,7 +36614,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35157,8 +36637,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -35225,7 +36705,7 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "consumes": [ "application\/json" ], @@ -35233,7 +36713,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -35251,7 +36731,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -35326,13 +36806,13 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -35347,7 +36827,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -35380,7 +36860,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -35400,13 +36880,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/logs": { "get": { "summary": "List row logs", - "operationId": "tablesDbListRowLogs", + "operationId": "tablesDBListRowLogs", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get the row activity logs list by its unique ID.", "responses": { @@ -35424,7 +36904,7 @@ "weight": 421, "cookies": false, "type": "", - "demo": "tables-db\/list-row-logs.md", + "demo": "tables-d-b\/list-row-logs.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row-logs.md", "rate-limit": 0, "rate-time": 3600, @@ -35486,7 +36966,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "consumes": [ "application\/json" ], @@ -35494,7 +36974,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -35512,7 +36992,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35594,7 +37074,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "consumes": [ "application\/json" ], @@ -35602,7 +37082,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -35620,7 +37100,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -35702,13 +37182,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/usage": { "get": { "summary": "Get table usage stats", - "operationId": "tablesDbGetTableUsage", + "operationId": "tablesDBGetTableUsage", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a table. Returning the total number of rows. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35726,7 +37206,7 @@ "weight": 384, "cookies": false, "type": "", - "demo": "tables-db\/get-table-usage.md", + "demo": "tables-d-b\/get-table-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35788,13 +37268,13 @@ "\/tablesdb\/{databaseId}\/usage": { "get": { "summary": "Get TablesDB usage stats", - "operationId": "tablesDbGetUsage", + "operationId": "tablesDBGetUsage", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", "responses": { @@ -35812,7 +37292,7 @@ "weight": 376, "cookies": false, "type": "", - "demo": "tables-db\/get-usage.md", + "demo": "tables-d-b\/get-usage.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-database-usage.md", "rate-limit": 0, "rate-time": 3600, @@ -35825,7 +37305,7 @@ "methods": [ { "name": "getUsage", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [] @@ -35844,7 +37324,7 @@ } ], "description": "Get usage metrics and statistics for a database. You can view the total number of tables, rows, and storage usage. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days.", - "demo": "tables-db\/get-usage.md" + "demo": "tables-d-b\/get-usage.md" } ], "auth": { @@ -38928,7 +40408,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -38945,6 +40425,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [] } @@ -39002,7 +40540,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -39019,6 +40557,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [] } @@ -39074,7 +40668,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -39091,6 +40685,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [] } @@ -39133,7 +40781,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -39150,6 +40798,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39192,7 +40894,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -39209,6 +40911,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -39251,7 +41007,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -39268,6 +41024,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [] } @@ -41457,7 +43267,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -41486,7 +43296,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -41515,7 +43325,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -41544,7 +43354,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -41573,7 +43383,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -41602,7 +43412,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41631,7 +43441,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -41660,7 +43470,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -41689,7 +43499,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -41718,7 +43528,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -41747,7 +43557,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -41776,7 +43586,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -41805,7 +43615,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -41834,7 +43644,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -41863,7 +43673,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -41892,7 +43702,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -41921,7 +43731,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -41950,7 +43760,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -41979,7 +43789,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -42008,7 +43818,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of templates rows that matched your query.", + "description": "Total number of templates that matched your query.", "x-example": 5, "format": "int32" }, @@ -42037,7 +43847,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of installations rows that matched your query.", + "description": "Total number of installations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42066,7 +43876,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworkProviderRepositories rows that matched your query.", + "description": "Total number of frameworkProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42095,7 +43905,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimeProviderRepositories rows that matched your query.", + "description": "Total number of runtimeProviderRepositories that matched your query.", "x-example": 5, "format": "int32" }, @@ -42124,7 +43934,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of branches rows that matched your query.", + "description": "Total number of branches that matched your query.", "x-example": 5, "format": "int32" }, @@ -42153,7 +43963,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42182,7 +43992,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42211,7 +44021,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -42240,7 +44050,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -42269,7 +44079,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of projects rows that matched your query.", + "description": "Total number of projects that matched your query.", "x-example": 5, "format": "int32" }, @@ -42298,7 +44108,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of webhooks rows that matched your query.", + "description": "Total number of webhooks that matched your query.", "x-example": 5, "format": "int32" }, @@ -42327,7 +44137,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of keys rows that matched your query.", + "description": "Total number of keys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42356,7 +44166,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of devKeys rows that matched your query.", + "description": "Total number of devKeys that matched your query.", "x-example": 5, "format": "int32" }, @@ -42385,7 +44195,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of platforms rows that matched your query.", + "description": "Total number of platforms that matched your query.", "x-example": 5, "format": "int32" }, @@ -42414,7 +44224,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -42443,7 +44253,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -42472,7 +44282,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42501,7 +44311,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -42530,7 +44340,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -42559,7 +44369,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -42588,7 +44398,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rules rows that matched your query.", + "description": "Total number of rules that matched your query.", "x-example": 5, "format": "int32" }, @@ -42617,7 +44427,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -42646,7 +44456,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42675,7 +44485,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -42704,7 +44514,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -42733,7 +44543,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -42762,7 +44572,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -42791,7 +44601,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of migrations rows that matched your query.", + "description": "Total number of migrations that matched your query.", "x-example": 5, "format": "int32" }, @@ -42820,7 +44630,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, @@ -42849,7 +44659,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of contents rows that matched your query.", + "description": "Total number of contents that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/app/config/specs/swagger2-latest-server.json b/app/config/specs/swagger2-latest-server.json index 5aafbaf2fc..9cee632b50 100644 --- a/app/config/specs/swagger2-latest-server.json +++ b/app/config/specs/swagger2-latest-server.json @@ -639,7 +639,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaAuthenticator", "group": "mfa", @@ -657,6 +657,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + }, + "methods": [ + { + "name": "createMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAAuthenticator" + } + }, + { + "name": "createMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaType" + } + ], + "description": "Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](\/docs\/references\/cloud\/client-web\/account#updateMfaAuthenticator) method.", + "demo": "account\/create-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -706,7 +762,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaAuthenticator", "group": "mfa", @@ -724,6 +780,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + }, + "methods": [ + { + "name": "updateMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAAuthenticator" + } + }, + { + "name": "updateMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type", + "otp" + ], + "required": [ + "type", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Verify an authenticator app after adding it using the [add authenticator](\/docs\/references\/cloud\/client-web\/account#createMfaAuthenticator) method.", + "demo": "account\/update-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -786,7 +902,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -804,6 +920,60 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "type" + ], + "required": [ + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator for a user by ID.", + "demo": "account\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Session": [] @@ -855,7 +1025,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaChallenge", "group": "mfa", @@ -873,6 +1043,60 @@ "client" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + }, + "methods": [ + { + "name": "createMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFAChallenge" + } + }, + { + "name": "createMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [] + }, + "parameters": [ + "factor" + ], + "required": [ + "factor" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaChallenge" + } + ], + "description": "Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](\/docs\/references\/cloud\/client-web\/account#updateMfaChallenge) method.", + "demo": "account\/create-m-f-a-challenge.md" + } + ], "auth": { "Project": [] } @@ -932,7 +1156,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaChallenge", "group": "mfa", @@ -950,6 +1174,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + }, + "methods": [ + { + "name": "updateMfaChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-mfa-challenge.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFAChallenge" + } + }, + { + "name": "updateMFAChallenge", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [ + "challengeId", + "otp" + ], + "required": [ + "challengeId", + "otp" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/session" + } + ], + "description": "Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/update-m-f-a-challenge.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1011,7 +1295,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -1029,6 +1313,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "account\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1063,7 +1395,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -1081,6 +1413,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.", + "demo": "account\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1115,7 +1495,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -1133,6 +1513,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method.", + "demo": "account\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -1167,7 +1595,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -1185,6 +1613,54 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "account", + "desc": "", + "auth": { + "Project": [], + "Session": [] + }, + "parameters": [], + "required": [], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.", + "demo": "account\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Session": [] @@ -4224,7 +4700,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" }, "methods": [ { @@ -4250,7 +4726,7 @@ "demo": "databases\/list.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.list" + "replaceWith": "tablesDB.list" } } ], @@ -4329,7 +4805,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" }, "methods": [ { @@ -4359,7 +4835,7 @@ "demo": "databases\/create.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatabase" + "replaceWith": "tablesDB.createDatabase" } } ], @@ -4448,7 +4924,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" }, "methods": [ { @@ -4475,7 +4951,7 @@ "demo": "databases\/get.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.get" + "replaceWith": "tablesDB.get" } } ], @@ -4541,7 +5017,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" }, "methods": [ { @@ -4571,7 +5047,7 @@ "demo": "databases\/update.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.update" + "replaceWith": "tablesDB.update" } } ], @@ -4656,7 +5132,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" }, "methods": [ { @@ -4682,7 +5158,7 @@ "demo": "databases\/delete.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.delete" + "replaceWith": "tablesDB.delete" } } ], @@ -4748,7 +5224,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listTables" + "replaceWith": "tablesDB.listTables" }, "auth": { "Project": [], @@ -4833,7 +5309,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createTable" + "replaceWith": "tablesDB.createTable" }, "auth": { "Project": [], @@ -4943,7 +5419,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getTable" + "replaceWith": "tablesDB.getTable" }, "auth": { "Project": [], @@ -5015,7 +5491,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateTable" + "replaceWith": "tablesDB.updateTable" }, "auth": { "Project": [], @@ -5121,7 +5597,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteTable" + "replaceWith": "tablesDB.deleteTable" }, "auth": { "Project": [], @@ -5193,7 +5669,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listColumns" + "replaceWith": "tablesDB.listColumns" }, "auth": { "Project": [], @@ -5279,7 +5755,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createBooleanColumn" + "replaceWith": "tablesDB.createBooleanColumn" }, "auth": { "Project": [], @@ -5390,7 +5866,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateBooleanColumn" + "replaceWith": "tablesDB.updateBooleanColumn" }, "auth": { "Project": [], @@ -5503,7 +5979,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createDatetimeColumn" + "replaceWith": "tablesDB.createDatetimeColumn" }, "auth": { "Project": [], @@ -5614,7 +6090,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateDatetimeColumn" + "replaceWith": "tablesDB.updateDatetimeColumn" }, "auth": { "Project": [], @@ -5727,7 +6203,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEmailColumn" + "replaceWith": "tablesDB.createEmailColumn" }, "auth": { "Project": [], @@ -5838,7 +6314,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEmailColumn" + "replaceWith": "tablesDB.updateEmailColumn" }, "auth": { "Project": [], @@ -5951,7 +6427,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createEnumColumn" + "replaceWith": "tablesDB.createEnumColumn" }, "auth": { "Project": [], @@ -6072,7 +6548,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateEnumColumn" + "replaceWith": "tablesDB.updateEnumColumn" }, "auth": { "Project": [], @@ -6195,7 +6671,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createFloatColumn" + "replaceWith": "tablesDB.createFloatColumn" }, "auth": { "Project": [], @@ -6318,7 +6794,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateFloatColumn" + "replaceWith": "tablesDB.updateFloatColumn" }, "auth": { "Project": [], @@ -6443,7 +6919,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIntegerColumn" + "replaceWith": "tablesDB.createIntegerColumn" }, "auth": { "Project": [], @@ -6566,7 +7042,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIntegerColumn" + "replaceWith": "tablesDB.updateIntegerColumn" }, "auth": { "Project": [], @@ -6691,7 +7167,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIpColumn" + "replaceWith": "tablesDB.createIpColumn" }, "auth": { "Project": [], @@ -6802,7 +7278,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateIpColumn" + "replaceWith": "tablesDB.updateIpColumn" }, "auth": { "Project": [], @@ -6915,7 +7391,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRelationshipColumn" + "replaceWith": "tablesDB.createRelationshipColumn" }, "auth": { "Project": [], @@ -7053,7 +7529,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createStringColumn" + "replaceWith": "tablesDB.createStringColumn" }, "auth": { "Project": [], @@ -7177,7 +7653,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateStringColumn" + "replaceWith": "tablesDB.updateStringColumn" }, "auth": { "Project": [], @@ -7296,7 +7772,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createUrlColumn" + "replaceWith": "tablesDB.createUrlColumn" }, "auth": { "Project": [], @@ -7407,7 +7883,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateUrlColumn" + "replaceWith": "tablesDB.updateUrlColumn" }, "auth": { "Project": [], @@ -7549,7 +8025,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getColumn" + "replaceWith": "tablesDB.getColumn" }, "auth": { "Project": [], @@ -7623,7 +8099,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteColumn" + "replaceWith": "tablesDB.deleteColumn" }, "auth": { "Project": [], @@ -7704,7 +8180,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRelationshipColumn" + "replaceWith": "tablesDB.updateRelationshipColumn" }, "auth": { "Project": [], @@ -7812,7 +8288,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listRows" + "replaceWith": "tablesDB.listRows" }, "auth": { "Project": [], @@ -7899,7 +8375,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" }, "methods": [ { @@ -7933,7 +8409,7 @@ "demo": "databases\/create-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRow" + "replaceWith": "tablesDB.createRow" } }, { @@ -7964,7 +8440,7 @@ "demo": "databases\/create-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createRows" + "replaceWith": "tablesDB.createRows" } } ], @@ -8080,7 +8556,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" }, "methods": [ { @@ -8111,7 +8587,7 @@ "demo": "databases\/upsert-documents.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRows" + "replaceWith": "tablesDB.upsertRows" } } ], @@ -8207,7 +8683,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRows" + "replaceWith": "tablesDB.updateRows" }, "auth": { "Project": [], @@ -8304,7 +8780,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRows" + "replaceWith": "tablesDB.deleteRows" }, "auth": { "Project": [], @@ -8395,7 +8871,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getRow" + "replaceWith": "tablesDB.getRow" }, "auth": { "Project": [], @@ -8490,7 +8966,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" }, "methods": [ { @@ -8524,7 +9000,7 @@ "demo": "databases\/upsert-document.md", "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.upsertRow" + "replaceWith": "tablesDB.upsertRow" } } ], @@ -8636,7 +9112,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.updateRow" + "replaceWith": "tablesDB.updateRow" }, "auth": { "Project": [], @@ -8738,7 +9214,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteRow" + "replaceWith": "tablesDB.deleteRow" }, "auth": { "Project": [], @@ -8824,7 +9300,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.decrementRowColumn" + "replaceWith": "tablesDB.decrementRowColumn" }, "auth": { "Project": [], @@ -8938,7 +9414,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.incrementRowColumn" + "replaceWith": "tablesDB.incrementRowColumn" }, "auth": { "Project": [], @@ -9048,7 +9524,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.listIndexes" + "replaceWith": "tablesDB.listIndexes" }, "auth": { "Project": [], @@ -9132,7 +9608,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.createIndex" + "replaceWith": "tablesDB.createIndex" }, "auth": { "Project": [], @@ -9264,7 +9740,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.getIndex" + "replaceWith": "tablesDB.getIndex" }, "auth": { "Project": [], @@ -9338,7 +9814,7 @@ "packaging": false, "deprecated": { "since": "1.8.0", - "replaceWith": "tablesDb.deleteIndex" + "replaceWith": "tablesDB.deleteIndex" }, "auth": { "Project": [], @@ -14369,7 +14845,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSms", "group": "messages", @@ -14387,6 +14863,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + }, + "methods": [ + { + "name": "createSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMS" + } + }, + { + "name": "createSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "content", + "topics", + "users", + "targets", + "draft", + "scheduledAt" + ], + "required": [ + "messageId", + "content" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/message" + } + ], + "description": "Create a new SMS message.", + "demo": "messaging\/create-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14488,7 +15034,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSms", "group": "messages", @@ -14506,6 +15052,74 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + }, + "methods": [ + { + "name": "updateSms", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-sms.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMS" + } + }, + { + "name": "updateSMS", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "messageId", + "topics", + "users", + "targets", + "content", + "draft", + "scheduledAt" + ], + "required": [ + "messageId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/message" + } + ], + "description": "Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.\n", + "demo": "messaging\/update-s-m-s.md" + } + ], "auth": { "Project": [], "Key": [] @@ -14942,7 +15556,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createApnsProvider", "group": "providers", @@ -14960,6 +15574,78 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + }, + "methods": [ + { + "name": "createApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createAPNSProvider" + } + }, + { + "name": "createAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Apple Push Notification service provider.", + "demo": "messaging\/create-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15058,7 +15744,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateApnsProvider", "group": "providers", @@ -15076,6 +15762,76 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + }, + "methods": [ + { + "name": "updateApnsProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-apns-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateAPNSProvider" + } + }, + { + "name": "updateAPNSProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "authKey", + "authKeyId", + "teamId", + "bundleId", + "sandbox" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Apple Push Notification service provider by its unique ID.", + "demo": "messaging\/update-a-p-n-s-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15172,7 +15928,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createFcmProvider", "group": "providers", @@ -15190,6 +15946,70 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + }, + "methods": [ + { + "name": "createFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createFCMProvider" + } + }, + { + "name": "createFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "serviceAccountJSON", + "enabled" + ], + "required": [ + "providerId", + "name" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new Firebase Cloud Messaging provider.", + "demo": "messaging\/create-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -15264,7 +16084,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateFcmProvider", "group": "providers", @@ -15282,6 +16102,68 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + }, + "methods": [ + { + "name": "updateFcmProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-fcm-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateFCMProvider" + } + }, + { + "name": "updateFCMProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "enabled", + "serviceAccountJSON" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a Firebase Cloud Messaging provider by its unique ID.", + "demo": "messaging\/update-f-c-m-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -16044,7 +16926,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createSmtpProvider", "group": "providers", @@ -16062,6 +16944,92 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + }, + "methods": [ + { + "name": "createSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createSMTPProvider" + } + }, + { + "name": "createSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId", + "name", + "host" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/provider" + } + ], + "description": "Create a new SMTP provider.", + "demo": "messaging\/create-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -16204,7 +17172,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateSmtpProvider", "group": "providers", @@ -16222,6 +17190,88 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + }, + "methods": [ + { + "name": "updateSmtpProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-smtp-provider.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateSMTPProvider" + } + }, + { + "name": "updateSMTPProvider", + "namespace": "messaging", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "providerId", + "name", + "host", + "port", + "username", + "password", + "encryption", + "autoTLS", + "mailer", + "fromName", + "fromEmail", + "replyToName", + "replyToEmail", + "enabled" + ], + "required": [ + "providerId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/provider" + } + ], + "description": "Update a SMTP provider by its unique ID.", + "demo": "messaging\/update-s-m-t-p-provider.md" + } + ], "auth": { "Project": [], "Key": [] @@ -21656,13 +22706,13 @@ "\/tablesdb": { "get": { "summary": "List databases", - "operationId": "tablesDbList", + "operationId": "tablesDBList", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.", "responses": { @@ -21680,7 +22730,7 @@ "weight": 375, "cookies": false, "type": "", - "demo": "tables-db\/list.md", + "demo": "tables-d-b\/list.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list.md", "rate-limit": 0, "rate-time": 3600, @@ -21727,7 +22777,7 @@ }, "post": { "summary": "Create database", - "operationId": "tablesDbCreate", + "operationId": "tablesDBCreate", "consumes": [ "application\/json" ], @@ -21735,7 +22785,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a new Database.\n", "responses": { @@ -21753,7 +22803,7 @@ "weight": 371, "cookies": false, "type": "", - "demo": "tables-db\/create.md", + "demo": "tables-d-b\/create.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create.md", "rate-limit": 0, "rate-time": 3600, @@ -21812,13 +22862,13 @@ "\/tablesdb\/{databaseId}": { "get": { "summary": "Get database", - "operationId": "tablesDbGet", + "operationId": "tablesDBGet", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a database by its unique ID. This endpoint response returns a JSON object with the database metadata.", "responses": { @@ -21836,7 +22886,7 @@ "weight": 372, "cookies": false, "type": "", - "demo": "tables-db\/get.md", + "demo": "tables-d-b\/get.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get.md", "rate-limit": 0, "rate-time": 3600, @@ -21870,7 +22920,7 @@ }, "put": { "summary": "Update database", - "operationId": "tablesDbUpdate", + "operationId": "tablesDBUpdate", "consumes": [ "application\/json" ], @@ -21878,7 +22928,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a database by its unique ID.", "responses": { @@ -21896,7 +22946,7 @@ "weight": 373, "cookies": false, "type": "", - "demo": "tables-db\/update.md", + "demo": "tables-d-b\/update.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update.md", "rate-limit": 0, "rate-time": 3600, @@ -21954,13 +23004,13 @@ }, "delete": { "summary": "Delete database", - "operationId": "tablesDbDelete", + "operationId": "tablesDBDelete", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a database by its unique ID. Only API keys with with databases.write scope can delete a database.", "responses": { @@ -21975,7 +23025,7 @@ "weight": 374, "cookies": false, "type": "", - "demo": "tables-db\/delete.md", + "demo": "tables-d-b\/delete.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete.md", "rate-limit": 0, "rate-time": 3600, @@ -22011,13 +23061,13 @@ "\/tablesdb\/{databaseId}\/tables": { "get": { "summary": "List tables", - "operationId": "tablesDbListTables", + "operationId": "tablesDBListTables", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all tables that belong to the provided databaseId. You can use the search parameter to filter your results.", "responses": { @@ -22035,7 +23085,7 @@ "weight": 382, "cookies": false, "type": "", - "demo": "tables-db\/list-tables.md", + "demo": "tables-d-b\/list-tables.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-tables.md", "rate-limit": 0, "rate-time": 3600, @@ -22090,7 +23140,7 @@ }, "post": { "summary": "Create table", - "operationId": "tablesDbCreateTable", + "operationId": "tablesDBCreateTable", "consumes": [ "application\/json" ], @@ -22098,9 +23148,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Table. Before using this route, you should create a new database resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Table", @@ -22116,7 +23166,7 @@ "weight": 378, "cookies": false, "type": "", - "demo": "tables-db\/create-table.md", + "demo": "tables-d-b\/create-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22198,13 +23248,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}": { "get": { "summary": "Get table", - "operationId": "tablesDbGetTable", + "operationId": "tablesDBGetTable", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a table by its unique ID. This endpoint response returns a JSON object with the table metadata.", "responses": { @@ -22222,7 +23272,7 @@ "weight": 379, "cookies": false, "type": "", - "demo": "tables-db\/get-table.md", + "demo": "tables-d-b\/get-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22264,7 +23314,7 @@ }, "put": { "summary": "Update table", - "operationId": "tablesDbUpdateTable", + "operationId": "tablesDBUpdateTable", "consumes": [ "application\/json" ], @@ -22272,7 +23322,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a table by its unique ID.", "responses": { @@ -22290,7 +23340,7 @@ "weight": 380, "cookies": false, "type": "", - "demo": "tables-db\/update-table.md", + "demo": "tables-d-b\/update-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22371,13 +23421,13 @@ }, "delete": { "summary": "Delete table", - "operationId": "tablesDbDeleteTable", + "operationId": "tablesDBDeleteTable", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a table by its unique ID. Only users with write permissions have access to delete this resource.", "responses": { @@ -22392,7 +23442,7 @@ "weight": 381, "cookies": false, "type": "", - "demo": "tables-db\/delete-table.md", + "demo": "tables-d-b\/delete-table.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-table.md", "rate-limit": 0, "rate-time": 3600, @@ -22436,13 +23486,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns": { "get": { "summary": "List columns", - "operationId": "tablesDbListColumns", + "operationId": "tablesDBListColumns", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List columns in the table.", "responses": { @@ -22460,7 +23510,7 @@ "weight": 387, "cookies": false, "type": "", - "demo": "tables-db\/list-columns.md", + "demo": "tables-d-b\/list-columns.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-columns.md", "rate-limit": 0, "rate-time": 3600, @@ -22516,7 +23566,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean": { "post": { "summary": "Create boolean column", - "operationId": "tablesDbCreateBooleanColumn", + "operationId": "tablesDBCreateBooleanColumn", "consumes": [ "application\/json" ], @@ -22524,7 +23574,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a boolean column.\n", "responses": { @@ -22542,7 +23592,7 @@ "weight": 388, "cookies": false, "type": "", - "demo": "tables-db\/create-boolean-column.md", + "demo": "tables-d-b\/create-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22574,7 +23624,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -22623,7 +23673,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/boolean\/{key}": { "patch": { "summary": "Update boolean column", - "operationId": "tablesDbUpdateBooleanColumn", + "operationId": "tablesDBUpdateBooleanColumn", "consumes": [ "application\/json" ], @@ -22631,7 +23681,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a boolean column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22649,7 +23699,7 @@ "weight": 389, "cookies": false, "type": "", - "demo": "tables-db\/update-boolean-column.md", + "demo": "tables-d-b\/update-boolean-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-boolean-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22681,7 +23731,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -22732,7 +23782,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime": { "post": { "summary": "Create datetime column", - "operationId": "tablesDbCreateDatetimeColumn", + "operationId": "tablesDBCreateDatetimeColumn", "consumes": [ "application\/json" ], @@ -22740,7 +23790,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a date time column according to the ISO 8601 standard.", "responses": { @@ -22758,7 +23808,7 @@ "weight": 390, "cookies": false, "type": "", - "demo": "tables-db\/create-datetime-column.md", + "demo": "tables-d-b\/create-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22839,7 +23889,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/datetime\/{key}": { "patch": { "summary": "Update dateTime column", - "operationId": "tablesDbUpdateDatetimeColumn", + "operationId": "tablesDBUpdateDatetimeColumn", "consumes": [ "application\/json" ], @@ -22847,7 +23897,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a date time column. Changing the `default` value will not update already existing rows.", "responses": { @@ -22865,7 +23915,7 @@ "weight": 391, "cookies": false, "type": "", - "demo": "tables-db\/update-datetime-column.md", + "demo": "tables-d-b\/update-datetime-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-datetime-column.md", "rate-limit": 0, "rate-time": 3600, @@ -22948,7 +23998,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email": { "post": { "summary": "Create email column", - "operationId": "tablesDbCreateEmailColumn", + "operationId": "tablesDBCreateEmailColumn", "consumes": [ "application\/json" ], @@ -22956,7 +24006,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an email column.\n", "responses": { @@ -22974,7 +24024,7 @@ "weight": 392, "cookies": false, "type": "", - "demo": "tables-db\/create-email-column.md", + "demo": "tables-d-b\/create-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23055,7 +24105,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/email\/{key}": { "patch": { "summary": "Update email column", - "operationId": "tablesDbUpdateEmailColumn", + "operationId": "tablesDBUpdateEmailColumn", "consumes": [ "application\/json" ], @@ -23063,7 +24113,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an email column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23081,7 +24131,7 @@ "weight": 393, "cookies": false, "type": "", - "demo": "tables-db\/update-email-column.md", + "demo": "tables-d-b\/update-email-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-email-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23164,7 +24214,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum": { "post": { "summary": "Create enum column", - "operationId": "tablesDbCreateEnumColumn", + "operationId": "tablesDBCreateEnumColumn", "consumes": [ "application\/json" ], @@ -23172,7 +24222,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an enumeration column. The `elements` param acts as a white-list of accepted values for this column.", "responses": { @@ -23190,7 +24240,7 @@ "weight": 394, "cookies": false, "type": "", - "demo": "tables-db\/create-enum-column.md", + "demo": "tables-d-b\/create-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23281,7 +24331,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/enum\/{key}": { "patch": { "summary": "Update enum column", - "operationId": "tablesDbUpdateEnumColumn", + "operationId": "tablesDBUpdateEnumColumn", "consumes": [ "application\/json" ], @@ -23289,7 +24339,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an enum column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23307,7 +24357,7 @@ "weight": 395, "cookies": false, "type": "", - "demo": "tables-db\/update-enum-column.md", + "demo": "tables-d-b\/update-enum-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-enum-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23400,7 +24450,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float": { "post": { "summary": "Create float column", - "operationId": "tablesDbCreateFloatColumn", + "operationId": "tablesDBCreateFloatColumn", "consumes": [ "application\/json" ], @@ -23408,7 +24458,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a float column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23426,7 +24476,7 @@ "weight": 396, "cookies": false, "type": "", - "demo": "tables-db\/create-float-column.md", + "demo": "tables-d-b\/create-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23519,7 +24569,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/float\/{key}": { "patch": { "summary": "Update float column", - "operationId": "tablesDbUpdateFloatColumn", + "operationId": "tablesDBUpdateFloatColumn", "consumes": [ "application\/json" ], @@ -23527,7 +24577,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a float column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23545,7 +24595,7 @@ "weight": 397, "cookies": false, "type": "", - "demo": "tables-db\/update-float-column.md", + "demo": "tables-d-b\/update-float-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-float-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23640,7 +24690,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer": { "post": { "summary": "Create integer column", - "operationId": "tablesDbCreateIntegerColumn", + "operationId": "tablesDBCreateIntegerColumn", "consumes": [ "application\/json" ], @@ -23648,7 +24698,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create an integer column. Optionally, minimum and maximum values can be provided.\n", "responses": { @@ -23666,7 +24716,7 @@ "weight": 398, "cookies": false, "type": "", - "demo": "tables-db\/create-integer-column.md", + "demo": "tables-d-b\/create-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23759,7 +24809,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/integer\/{key}": { "patch": { "summary": "Update integer column", - "operationId": "tablesDbUpdateIntegerColumn", + "operationId": "tablesDBUpdateIntegerColumn", "consumes": [ "application\/json" ], @@ -23767,7 +24817,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an integer column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -23785,7 +24835,7 @@ "weight": 399, "cookies": false, "type": "", - "demo": "tables-db\/update-integer-column.md", + "demo": "tables-d-b\/update-integer-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-integer-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23880,7 +24930,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip": { "post": { "summary": "Create IP address column", - "operationId": "tablesDbCreateIpColumn", + "operationId": "tablesDBCreateIpColumn", "consumes": [ "application\/json" ], @@ -23888,7 +24938,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create IP address column.\n", "responses": { @@ -23906,7 +24956,7 @@ "weight": 400, "cookies": false, "type": "", - "demo": "tables-db\/create-ip-column.md", + "demo": "tables-d-b\/create-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -23987,7 +25037,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/ip\/{key}": { "patch": { "summary": "Update IP address column", - "operationId": "tablesDbUpdateIpColumn", + "operationId": "tablesDBUpdateIpColumn", "consumes": [ "application\/json" ], @@ -23995,7 +25045,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an ip column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24013,7 +25063,7 @@ "weight": 401, "cookies": false, "type": "", - "demo": "tables-db\/update-ip-column.md", + "demo": "tables-d-b\/update-ip-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-ip-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24096,7 +25146,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/relationship": { "post": { "summary": "Create relationship column", - "operationId": "tablesDbCreateRelationshipColumn", + "operationId": "tablesDBCreateRelationshipColumn", "consumes": [ "application\/json" ], @@ -24104,7 +25154,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -24122,7 +25172,7 @@ "weight": 402, "cookies": false, "type": "", - "demo": "tables-db\/create-relationship-column.md", + "demo": "tables-d-b\/create-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24230,7 +25280,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string": { "post": { "summary": "Create string column", - "operationId": "tablesDbCreateStringColumn", + "operationId": "tablesDBCreateStringColumn", "consumes": [ "application\/json" ], @@ -24238,7 +25288,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a string column.\n", "responses": { @@ -24256,7 +25306,7 @@ "weight": 404, "cookies": false, "type": "", - "demo": "tables-db\/create-string-column.md", + "demo": "tables-d-b\/create-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24288,7 +25338,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -24350,7 +25400,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/string\/{key}": { "patch": { "summary": "Update string column", - "operationId": "tablesDbUpdateStringColumn", + "operationId": "tablesDBUpdateStringColumn", "consumes": [ "application\/json" ], @@ -24358,7 +25408,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a string column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24376,7 +25426,7 @@ "weight": 405, "cookies": false, "type": "", - "demo": "tables-db\/update-string-column.md", + "demo": "tables-d-b\/update-string-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-string-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24408,7 +25458,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -24465,7 +25515,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url": { "post": { "summary": "Create URL column", - "operationId": "tablesDbCreateUrlColumn", + "operationId": "tablesDBCreateUrlColumn", "consumes": [ "application\/json" ], @@ -24473,7 +25523,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Create a URL column.\n", "responses": { @@ -24491,7 +25541,7 @@ "weight": 406, "cookies": false, "type": "", - "demo": "tables-db\/create-url-column.md", + "demo": "tables-d-b\/create-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24572,7 +25622,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/url\/{key}": { "patch": { "summary": "Update URL column", - "operationId": "tablesDbUpdateUrlColumn", + "operationId": "tablesDBUpdateUrlColumn", "consumes": [ "application\/json" ], @@ -24580,7 +25630,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update an url column. Changing the `default` value will not update already existing rows.\n", "responses": { @@ -24598,7 +25648,7 @@ "weight": 407, "cookies": false, "type": "", - "demo": "tables-db\/update-url-column.md", + "demo": "tables-d-b\/update-url-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-url-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24681,13 +25731,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}": { "get": { "summary": "Get column", - "operationId": "tablesDbGetColumn", + "operationId": "tablesDBGetColumn", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get column by ID.", "responses": { @@ -24736,7 +25786,7 @@ "weight": 385, "cookies": false, "type": "", - "demo": "tables-db\/get-column.md", + "demo": "tables-d-b\/get-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24785,13 +25835,13 @@ }, "delete": { "summary": "Delete column", - "operationId": "tablesDbDeleteColumn", + "operationId": "tablesDBDeleteColumn", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Deletes a column.", "responses": { @@ -24806,7 +25856,7 @@ "weight": 386, "cookies": false, "type": "", - "demo": "tables-db\/delete-column.md", + "demo": "tables-d-b\/delete-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24857,7 +25907,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/columns\/{key}\/relationship": { "patch": { "summary": "Update relationship column", - "operationId": "tablesDbUpdateRelationshipColumn", + "operationId": "tablesDBUpdateRelationshipColumn", "consumes": [ "application\/json" ], @@ -24865,7 +25915,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update relationship column. [Learn more about relationship columns](https:\/\/appwrite.io\/docs\/databases-relationships#relationship-columns).\n", "responses": { @@ -24883,7 +25933,7 @@ "weight": 403, "cookies": false, "type": "", - "demo": "tables-db\/update-relationship-column.md", + "demo": "tables-d-b\/update-relationship-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-relationship-column.md", "rate-limit": 0, "rate-time": 3600, @@ -24962,13 +26012,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes": { "get": { "summary": "List indexes", - "operationId": "tablesDbListIndexes", + "operationId": "tablesDBListIndexes", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "List indexes on the table.", "responses": { @@ -24986,7 +26036,7 @@ "weight": 411, "cookies": false, "type": "", - "demo": "tables-db\/list-indexes.md", + "demo": "tables-d-b\/list-indexes.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-indexes.md", "rate-limit": 0, "rate-time": 3600, @@ -25018,7 +26068,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25040,7 +26090,7 @@ }, "post": { "summary": "Create index", - "operationId": "tablesDbCreateIndex", + "operationId": "tablesDBCreateIndex", "consumes": [ "application\/json" ], @@ -25048,7 +26098,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Creates an index on the columns listed. Your index should include all the columns you will query in a single request.\nType can be `key`, `fulltext`, or `unique`.", "responses": { @@ -25066,7 +26116,7 @@ "weight": 408, "cookies": false, "type": "", - "demo": "tables-db\/create-index.md", + "demo": "tables-d-b\/create-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25098,7 +26148,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25170,13 +26220,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/indexes\/{key}": { "get": { "summary": "Get index", - "operationId": "tablesDbGetIndex", + "operationId": "tablesDBGetIndex", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get index by ID.", "responses": { @@ -25194,7 +26244,7 @@ "weight": 409, "cookies": false, "type": "", - "demo": "tables-db\/get-index.md", + "demo": "tables-d-b\/get-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25226,7 +26276,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25243,13 +26293,13 @@ }, "delete": { "summary": "Delete index", - "operationId": "tablesDbDeleteIndex", + "operationId": "tablesDBDeleteIndex", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete an index.", "responses": { @@ -25264,7 +26314,7 @@ "weight": 410, "cookies": false, "type": "", - "demo": "tables-db\/delete-index.md", + "demo": "tables-d-b\/delete-index.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-index.md", "rate-limit": 0, "rate-time": 3600, @@ -25296,7 +26346,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25315,13 +26365,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows": { "get": { "summary": "List rows", - "operationId": "tablesDbListRows", + "operationId": "tablesDBListRows", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a list of all the user's rows in a given table. You can use the query params to filter your results.", "responses": { @@ -25339,7 +26389,7 @@ "weight": 420, "cookies": false, "type": "", - "demo": "tables-db\/list-rows.md", + "demo": "tables-d-b\/list-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/list-rows.md", "rate-limit": 0, "rate-time": 3600, @@ -25374,7 +26424,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the TableDB service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdbdb#tablesdbCreate).", "required": true, "type": "string", "x-example": "", @@ -25396,7 +26446,7 @@ }, "post": { "summary": "Create row", - "operationId": "tablesDbCreateRow", + "operationId": "tablesDBCreateRow", "consumes": [ "application\/json" ], @@ -25404,9 +26454,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25422,7 +26472,7 @@ "weight": 412, "cookies": false, "type": "", - "demo": "tables-db\/create-row.md", + "demo": "tables-d-b\/create-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/create-row.md", "rate-limit": 120, "rate-time": 60, @@ -25436,7 +26486,7 @@ "methods": [ { "name": "createRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create row", "auth": { "Project": [], @@ -25461,12 +26511,12 @@ "model": "#\/definitions\/row" } ], - "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-row.md" + "description": "Create a new Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-row.md" }, { "name": "createRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "Create rows", "auth": { "Project": [], @@ -25488,8 +26538,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/create-rows.md" + "description": "Create new Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/create-rows.md" } ], "auth": { @@ -25516,7 +26566,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate). Make sure to define columns before creating rows.", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate). Make sure to define columns before creating rows.", "required": true, "type": "string", "x-example": "", @@ -25565,7 +26615,7 @@ }, "put": { "summary": "Create or update rows", - "operationId": "tablesDbUpsertRows", + "operationId": "tablesDBUpsertRows", "consumes": [ "application\/json" ], @@ -25573,9 +26623,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", "responses": { "201": { "description": "Rows List", @@ -25591,7 +26641,7 @@ "weight": 417, "cookies": false, "type": "", - "demo": "tables-db\/upsert-rows.md", + "demo": "tables-d-b\/upsert-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25605,7 +26655,7 @@ "methods": [ { "name": "upsertRows", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -25627,8 +26677,8 @@ "model": "#\/definitions\/rowList" } ], - "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.\n", - "demo": "tables-db\/upsert-rows.md" + "description": "Create or update Rows. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.\n", + "demo": "tables-d-b\/upsert-rows.md" } ], "auth": { @@ -25684,7 +26734,7 @@ }, "patch": { "summary": "Update rows", - "operationId": "tablesDbUpdateRows", + "operationId": "tablesDBUpdateRows", "consumes": [ "application\/json" ], @@ -25692,7 +26742,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.", "responses": { @@ -25710,7 +26760,7 @@ "weight": 415, "cookies": false, "type": "", - "demo": "tables-db\/update-rows.md", + "demo": "tables-d-b\/update-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-rows.md", "rate-limit": 120, "rate-time": 60, @@ -25777,7 +26827,7 @@ }, "delete": { "summary": "Delete rows", - "operationId": "tablesDbDeleteRows", + "operationId": "tablesDBDeleteRows", "consumes": [ "application\/json" ], @@ -25785,7 +26835,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Bulk delete rows using queries, if no queries are passed then all rows are deleted.", "responses": { @@ -25803,7 +26853,7 @@ "weight": 419, "cookies": false, "type": "", - "demo": "tables-db\/delete-rows.md", + "demo": "tables-d-b\/delete-rows.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-rows.md", "rate-limit": 60, "rate-time": 60, @@ -25836,7 +26886,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25866,13 +26916,13 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}": { "get": { "summary": "Get row", - "operationId": "tablesDbGetRow", + "operationId": "tablesDBGetRow", "consumes": [], "produces": [ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Get a row by its unique ID. This endpoint response returns a JSON object with the row data.", "responses": { @@ -25890,7 +26940,7 @@ "weight": 413, "cookies": false, "type": "", - "demo": "tables-db\/get-row.md", + "demo": "tables-d-b\/get-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/get-row.md", "rate-limit": 0, "rate-time": 3600, @@ -25925,7 +26975,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -25955,7 +27005,7 @@ }, "put": { "summary": "Create or update a row", - "operationId": "tablesDbUpsertRow", + "operationId": "tablesDBUpsertRow", "consumes": [ "application\/json" ], @@ -25963,9 +27013,9 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", "responses": { "201": { "description": "Row", @@ -25981,7 +27031,7 @@ "weight": 416, "cookies": false, "type": "", - "demo": "tables-db\/upsert-row.md", + "demo": "tables-d-b\/upsert-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/upsert-row.md", "rate-limit": 120, "rate-time": 60, @@ -25995,7 +27045,7 @@ "methods": [ { "name": "upsertRow", - "namespace": "tablesDb", + "namespace": "tablesDB", "desc": "", "auth": { "Project": [], @@ -26019,8 +27069,8 @@ "model": "#\/definitions\/row" } ], - "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/databases#databasesCreateTable) API or directly from your database console.", - "demo": "tables-db\/upsert-row.md" + "description": "Create or update a Row. Before using this route, you should create a new table resource using either a [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreateTable) API or directly from your database console.", + "demo": "tables-d-b\/upsert-row.md" } ], "auth": { @@ -26089,7 +27139,7 @@ }, "patch": { "summary": "Update row", - "operationId": "tablesDbUpdateRow", + "operationId": "tablesDBUpdateRow", "consumes": [ "application\/json" ], @@ -26097,7 +27147,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Update a row by its unique ID. Using the patch method you can pass only specific fields that will get updated.", "responses": { @@ -26115,7 +27165,7 @@ "weight": 414, "cookies": false, "type": "", - "demo": "tables-db\/update-row.md", + "demo": "tables-d-b\/update-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/update-row.md", "rate-limit": 120, "rate-time": 60, @@ -26192,13 +27242,13 @@ }, "delete": { "summary": "Delete row", - "operationId": "tablesDbDeleteRow", + "operationId": "tablesDBDeleteRow", "consumes": [ "application\/json" ], "produces": [], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Delete a row by its unique ID.", "responses": { @@ -26213,7 +27263,7 @@ "weight": 418, "cookies": false, "type": "", - "demo": "tables-db\/delete-row.md", + "demo": "tables-d-b\/delete-row.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/delete-row.md", "rate-limit": 60, "rate-time": 60, @@ -26248,7 +27298,7 @@ }, { "name": "tableId", - "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tables#tablesCreate).", + "description": "Table ID. You can create a new table using the Database service [server integration](https:\/\/appwrite.io\/docs\/server\/tablesdb#tablesDBCreate).", "required": true, "type": "string", "x-example": "", @@ -26268,7 +27318,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/decrement": { "patch": { "summary": "Decrement row column", - "operationId": "tablesDbDecrementRowColumn", + "operationId": "tablesDBDecrementRowColumn", "consumes": [ "application\/json" ], @@ -26276,7 +27326,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Decrement a specific column of a row by a given value.", "responses": { @@ -26294,7 +27344,7 @@ "weight": 423, "cookies": false, "type": "", - "demo": "tables-db\/decrement-row-column.md", + "demo": "tables-d-b\/decrement-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/decrement-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -26378,7 +27428,7 @@ "\/tablesdb\/{databaseId}\/tables\/{tableId}\/rows\/{rowId}\/{column}\/increment": { "patch": { "summary": "Increment row column", - "operationId": "tablesDbIncrementRowColumn", + "operationId": "tablesDBIncrementRowColumn", "consumes": [ "application\/json" ], @@ -26386,7 +27436,7 @@ "application\/json" ], "tags": [ - "tablesDb" + "tablesDB" ], "description": "Increment a specific column of a row by a given value.", "responses": { @@ -26404,7 +27454,7 @@ "weight": 422, "cookies": false, "type": "", - "demo": "tables-db\/increment-row-column.md", + "demo": "tables-d-b\/increment-row-column.md", "edit": "https:\/\/github.com\/appwrite\/appwrite\/edit\/master\/docs\/references\/tablesdb\/increment-row-column.md", "rate-limit": 120, "rate-time": 60, @@ -29434,7 +30484,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfa", "group": "users", @@ -29451,6 +30501,66 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + }, + "methods": [ + { + "name": "updateMfa", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-mfa.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFA" + } + }, + { + "name": "updateMFA", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "mfa" + ], + "required": [ + "userId", + "mfa" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/user" + } + ], + "description": "Enable or disable MFA on a user account.", + "demo": "users\/update-m-f-a.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29509,7 +30619,7 @@ "description": "No content" } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "deleteMfaAuthenticator", "group": "mfa", @@ -29526,6 +30636,64 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + }, + "methods": [ + { + "name": "deleteMfaAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-mfa-authenticator.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "deleteMFAAuthenticator" + } + }, + { + "name": "deleteMFAAuthenticator", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId", + "type" + ], + "required": [ + "userId", + "type" + ], + "responses": [ + { + "code": 204 + } + ], + "description": "Delete an authenticator app.", + "demo": "users\/delete-m-f-a-authenticator.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29582,7 +30750,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "listMfaFactors", "group": "mfa", @@ -29599,6 +30767,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + }, + "methods": [ + { + "name": "listMfaFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-mfa-factors.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "listMFAFactors" + } + }, + { + "name": "listMFAFactors", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaFactors" + } + ], + "description": "List the factors available on the account to be used as a MFA challange.", + "demo": "users\/list-m-f-a-factors.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29642,7 +30866,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "getMfaRecoveryCodes", "group": "mfa", @@ -29659,6 +30883,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + }, + "methods": [ + { + "name": "getMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "getMFARecoveryCodes" + } + }, + { + "name": "getMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/get-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29702,7 +30982,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "updateMfaRecoveryCodes", "group": "mfa", @@ -29719,6 +30999,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + }, + "methods": [ + { + "name": "updateMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "updateMFARecoveryCodes" + } + }, + { + "name": "updateMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 200, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](\/docs\/references\/cloud\/client-web\/account#createMfaRecoveryCodes) method.", + "demo": "users\/update-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -29762,7 +31098,7 @@ } } }, - "deprecated": false, + "deprecated": true, "x-appwrite": { "method": "createMfaRecoveryCodes", "group": "mfa", @@ -29779,6 +31115,62 @@ "server" ], "packaging": false, + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + }, + "methods": [ + { + "name": "createMfaRecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-mfa-recovery-codes.md", + "deprecated": { + "since": "1.8.0", + "replaceWith": "createMFARecoveryCodes" + } + }, + { + "name": "createMFARecoveryCodes", + "namespace": "users", + "desc": "", + "auth": { + "Project": [], + "Key": [] + }, + "parameters": [ + "userId" + ], + "required": [ + "userId" + ], + "responses": [ + { + "code": 201, + "model": "#\/definitions\/mfaRecoveryCodes" + } + ], + "description": "Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](\/docs\/references\/cloud\/client-web\/account#createMfaChallenge) method by client SDK.", + "demo": "users\/create-m-f-a-recovery-codes.md" + } + ], "auth": { "Project": [], "Key": [] @@ -31245,7 +32637,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of rows rows that matched your query.", + "description": "Total number of rows that matched your query.", "x-example": 5, "format": "int32" }, @@ -31274,7 +32666,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of documents rows that matched your query.", + "description": "Total number of documents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31303,7 +32695,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tables rows that matched your query.", + "description": "Total number of tables that matched your query.", "x-example": 5, "format": "int32" }, @@ -31332,7 +32724,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of collections rows that matched your query.", + "description": "Total number of collections that matched your query.", "x-example": 5, "format": "int32" }, @@ -31361,7 +32753,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of databases rows that matched your query.", + "description": "Total number of databases that matched your query.", "x-example": 5, "format": "int32" }, @@ -31390,7 +32782,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31419,7 +32811,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of indexes rows that matched your query.", + "description": "Total number of indexes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31448,7 +32840,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of users rows that matched your query.", + "description": "Total number of users that matched your query.", "x-example": 5, "format": "int32" }, @@ -31477,7 +32869,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sessions rows that matched your query.", + "description": "Total number of sessions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31506,7 +32898,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of identities rows that matched your query.", + "description": "Total number of identities that matched your query.", "x-example": 5, "format": "int32" }, @@ -31535,7 +32927,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of logs rows that matched your query.", + "description": "Total number of logs that matched your query.", "x-example": 5, "format": "int32" }, @@ -31564,7 +32956,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of files rows that matched your query.", + "description": "Total number of files that matched your query.", "x-example": 5, "format": "int32" }, @@ -31593,7 +32985,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of buckets rows that matched your query.", + "description": "Total number of buckets that matched your query.", "x-example": 5, "format": "int32" }, @@ -31622,7 +33014,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of tokens rows that matched your query.", + "description": "Total number of tokens that matched your query.", "x-example": 5, "format": "int32" }, @@ -31651,7 +33043,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of teams rows that matched your query.", + "description": "Total number of teams that matched your query.", "x-example": 5, "format": "int32" }, @@ -31680,7 +33072,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of memberships rows that matched your query.", + "description": "Total number of memberships that matched your query.", "x-example": 5, "format": "int32" }, @@ -31709,7 +33101,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of sites rows that matched your query.", + "description": "Total number of sites that matched your query.", "x-example": 5, "format": "int32" }, @@ -31738,7 +33130,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of functions rows that matched your query.", + "description": "Total number of functions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31767,7 +33159,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of frameworks rows that matched your query.", + "description": "Total number of frameworks that matched your query.", "x-example": 5, "format": "int32" }, @@ -31796,7 +33188,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of runtimes rows that matched your query.", + "description": "Total number of runtimes that matched your query.", "x-example": 5, "format": "int32" }, @@ -31825,7 +33217,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of deployments rows that matched your query.", + "description": "Total number of deployments that matched your query.", "x-example": 5, "format": "int32" }, @@ -31854,7 +33246,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of executions rows that matched your query.", + "description": "Total number of executions that matched your query.", "x-example": 5, "format": "int32" }, @@ -31883,7 +33275,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of countries rows that matched your query.", + "description": "Total number of countries that matched your query.", "x-example": 5, "format": "int32" }, @@ -31912,7 +33304,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of continents rows that matched your query.", + "description": "Total number of continents that matched your query.", "x-example": 5, "format": "int32" }, @@ -31941,7 +33333,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of languages rows that matched your query.", + "description": "Total number of languages that matched your query.", "x-example": 5, "format": "int32" }, @@ -31970,7 +33362,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of currencies rows that matched your query.", + "description": "Total number of currencies that matched your query.", "x-example": 5, "format": "int32" }, @@ -31999,7 +33391,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of phones rows that matched your query.", + "description": "Total number of phones that matched your query.", "x-example": 5, "format": "int32" }, @@ -32028,7 +33420,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of variables rows that matched your query.", + "description": "Total number of variables that matched your query.", "x-example": 5, "format": "int32" }, @@ -32057,7 +33449,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of localeCodes rows that matched your query.", + "description": "Total number of localeCodes that matched your query.", "x-example": 5, "format": "int32" }, @@ -32086,7 +33478,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of providers rows that matched your query.", + "description": "Total number of providers that matched your query.", "x-example": 5, "format": "int32" }, @@ -32115,7 +33507,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of messages rows that matched your query.", + "description": "Total number of messages that matched your query.", "x-example": 5, "format": "int32" }, @@ -32144,7 +33536,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of topics rows that matched your query.", + "description": "Total number of topics that matched your query.", "x-example": 5, "format": "int32" }, @@ -32173,7 +33565,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of subscribers rows that matched your query.", + "description": "Total number of subscribers that matched your query.", "x-example": 5, "format": "int32" }, @@ -32202,7 +33594,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of targets rows that matched your query.", + "description": "Total number of targets that matched your query.", "x-example": 5, "format": "int32" }, @@ -32231,7 +33623,7 @@ "properties": { "total": { "type": "integer", - "description": "Total number of specifications rows that matched your query.", + "description": "Total number of specifications that matched your query.", "x-example": 5, "format": "int32" }, diff --git a/composer.lock b/composer.lock index 66c5f71515..6d8199e941 100644 --- a/composer.lock +++ b/composer.lock @@ -4930,16 +4930,16 @@ "packages-dev": [ { "name": "appwrite/sdk-generator", - "version": "1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/appwrite/sdk-generator.git", - "reference": "4a6e0daa3486bbd9e0074c1231453b4e3758449b" + "reference": "c13516f944ab96a0048541c80abd251e2a16cf8b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/4a6e0daa3486bbd9e0074c1231453b4e3758449b", - "reference": "4a6e0daa3486bbd9e0074c1231453b4e3758449b", + "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/c13516f944ab96a0048541c80abd251e2a16cf8b", + "reference": "c13516f944ab96a0048541c80abd251e2a16cf8b", "shasum": "" }, "require": { @@ -4975,9 +4975,9 @@ "description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms", "support": { "issues": "https://github.com/appwrite/sdk-generator/issues", - "source": "https://github.com/appwrite/sdk-generator/tree/1.1.1" + "source": "https://github.com/appwrite/sdk-generator/tree/1.1.2" }, - "time": "2025-08-20T09:24:25+00:00" + "time": "2025-08-20T13:32:21+00:00" }, { "name": "doctrine/annotations", diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md index 4c7d10dde3..c88599d77e 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/create-row.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createRow( +tablesDB.createRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md index 67f3601e6e..36faf4b7aa 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/decrement-row-column.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.decrementRowColumn( +tablesDB.decrementRowColumn( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md index 776f6bd4ef..f2425ba470 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/delete-row.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.deleteRow( +tablesDB.deleteRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md index a0e20a3f9b..120f9960f7 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/get-row.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.getRow( +tablesDB.getRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md index b3d1c541bd..ba234e4b7f 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/increment-row-column.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.incrementRowColumn( +tablesDB.incrementRowColumn( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md b/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md index 9bd6f6d3e2..bf0d5e41c0 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/list-rows.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.listRows( +tablesDB.listRows( "", // databaseId "", // tableId listOf(), // queries (optional) diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md index fdcd8acaae..6600b2e863 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/update-row.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateRow( +tablesDB.updateRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md index 6c60b9ccdf..856b399025 100644 --- a/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-android/java/tablesdb/upsert-row.md @@ -6,9 +6,9 @@ Client client = new Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject(""); // Your project ID -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.upsertRow( +tablesDB.upsertRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md index 1e84ebd34f..e67513b86a 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/create-row.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.createRow( +val result = tablesDB.createRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md index 29c25475b1..42e6a389a5 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/decrement-row-column.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.decrementRowColumn( +val result = tablesDB.decrementRowColumn( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md index af6f5f5798..deb034fdf7 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/delete-row.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.deleteRow( +val result = tablesDB.deleteRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md index 3408f1dff5..32cf7795e7 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/get-row.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.getRow( +val result = tablesDB.getRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md index 7640be001e..8e4276e83e 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/increment-row-column.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.incrementRowColumn( +val result = tablesDB.incrementRowColumn( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md index b5bc755df6..8c61115f98 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/list-rows.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.listRows( +val result = tablesDB.listRows( databaseId = "", tableId = "", queries = listOf(), // (optional) diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md index cc837638fe..59f509e736 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/update-row.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.updateRow( +val result = tablesDB.updateRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md index f9f165edd9..ea32e4d188 100644 --- a/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-android/kotlin/tablesdb/upsert-row.md @@ -6,9 +6,9 @@ val client = Client(context) .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val result = tablesDb.upsertRow( +val result = tablesDB.upsertRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md index 56442a0713..512e1e13a1 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/create-row.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.createRow( +let row = try await tablesDB.createRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md index 0e619ce9a9..e05fa7c488 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/decrement-row-column.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.decrementRowColumn( +let row = try await tablesDB.decrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md index 11c1587464..3c8a7b0cc4 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/delete-row.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let result = try await tablesDb.deleteRow( +let result = try await tablesDB.deleteRow( databaseId: "", tableId: "", rowId: "" diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md index 6f8979978c..102114b556 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/get-row.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.getRow( +let row = try await tablesDB.getRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md index ac4b671738..84b7e30443 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/increment-row-column.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.incrementRowColumn( +let row = try await tablesDB.incrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md index b94bdaeef8..77203d0e34 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/list-rows.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let rowList = try await tablesDb.listRows( +let rowList = try await tablesDB.listRows( databaseId: "", tableId: "", queries: [] // optional diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md index 275ed59e62..d7ad6e69fe 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/update-row.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.updateRow( +let row = try await tablesDB.updateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md index 039891989e..5734e75d13 100644 --- a/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-apple/examples/tablesdb/upsert-row.md @@ -4,9 +4,9 @@ let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.upsertRow( +let row = try await tablesDB.upsertRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md index 74bef62e85..2416eef742 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/create-row.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.createRow( +Row result = await tablesDB.createRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md index 599ee481ff..1a629f1689 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/decrement-row-column.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.decrementRowColumn( +Row result = await tablesDB.decrementRowColumn( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md index 58ad1d31fa..ffcc38109f 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/delete-row.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -await tablesDb.deleteRow( +await tablesDB.deleteRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md index 9988ee2bb5..1939662410 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/get-row.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.getRow( +Row result = await tablesDB.getRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md index 34e09f2de6..78797bf44e 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/increment-row-column.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.incrementRowColumn( +Row result = await tablesDB.incrementRowColumn( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md index 1eff6ce2cb..5a8bda7c6f 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/list-rows.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -RowList result = await tablesDb.listRows( +RowList result = await tablesDB.listRows( databaseId: '', tableId: '', queries: [], // optional diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md index 2cffb7221f..f5eee41202 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/update-row.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.updateRow( +Row result = await tablesDB.updateRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md index d8386d5e84..9e34cb62a4 100644 --- a/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-flutter/examples/tablesdb/upsert-row.md @@ -4,9 +4,9 @@ Client client = Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.upsertRow( +Row result = await tablesDB.upsertRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md index 1806764e92..621e46a64e 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/create-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateRow( + tablesDBCreateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md index 5b5344575d..398ec19901 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/decrement-row-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbDecrementRowColumn( + tablesDBDecrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md index 1f18962dc8..1a08b0f60d 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/delete-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbDeleteRow( + tablesDBDeleteRow( databaseId: "", tableId: "", rowId: "" diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md index 0ef9edc6c4..b7ff87f387 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/increment-row-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbIncrementRowColumn( + tablesDBIncrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md index 8382bcf457..5a5b288ab8 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/update-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateRow( + tablesDBUpdateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md index f5ad299639..cc3b63de4a 100644 --- a/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-graphql/examples/tablesdb/upsert-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpsertRow( + tablesDBUpsertRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md index 0a1f03d398..b10cc9df25 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/create-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createRow({ +const result = await tablesDB.createRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md index 806748cbed..2524709613 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/decrement-row-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.decrementRowColumn({ +const result = await tablesDB.decrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md index ee1cdb96cd..0963368e63 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/delete-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.deleteRow({ +const result = await tablesDB.deleteRow({ databaseId: '', tableId: '', rowId: '' diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md index b1c82c86ea..aa7cc18d28 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/get-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getRow({ +const result = await tablesDB.getRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md index 515b41faa6..e7093e0942 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/increment-row-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.incrementRowColumn({ +const result = await tablesDB.incrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md index 51ef6d52a4..f54900e659 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/list-rows.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listRows({ +const result = await tablesDB.listRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md index 9d3e507930..e5c31bd3a6 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/update-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateRow({ +const result = await tablesDB.updateRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md index 41280aef25..443134dcf7 100644 --- a/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-react-native/examples/tablesdb/upsert-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.upsertRow({ +const result = await tablesDB.upsertRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md index 8c9ff7f766..a91207fdc7 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/create-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createRow({ +const result = await tablesDB.createRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md index a3f81cc5a8..2e9549fcee 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/decrement-row-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.decrementRowColumn({ +const result = await tablesDB.decrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md index f77eb1c159..8ea7e44283 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/delete-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.deleteRow({ +const result = await tablesDB.deleteRow({ databaseId: '', tableId: '', rowId: '' diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md index 79200e1a9e..904d3693f0 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/get-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getRow({ +const result = await tablesDB.getRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md index 672a23c859..144944a214 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/increment-row-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.incrementRowColumn({ +const result = await tablesDB.incrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md index b3c30a06ff..730eacc708 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/list-rows.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listRows({ +const result = await tablesDB.listRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md index 18f8ce697a..eaef81cc9c 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/update-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateRow({ +const result = await tablesDB.updateRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md index 0718d3c371..2e415527cf 100644 --- a/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/client-web/examples/tablesdb/upsert-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.upsertRow({ +const result = await tablesDB.upsertRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md index 3e21a3adfd..2503836de2 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-boolean-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createBooleanColumn \ +appwrite tablesDB createBooleanColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md index bee46cb18b..a01b64fce4 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-datetime-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createDatetimeColumn \ +appwrite tablesDB createDatetimeColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md index 3d0d4d6c31..003f4374b4 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-email-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createEmailColumn \ +appwrite tablesDB createEmailColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md index 6a8ea71b32..14edc0294d 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-enum-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createEnumColumn \ +appwrite tablesDB createEnumColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md index a4f7b003f0..3e86dc733f 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-float-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createFloatColumn \ +appwrite tablesDB createFloatColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md index 3da867eeee..816e80735c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-index.md @@ -1,4 +1,4 @@ -appwrite tablesDb createIndex \ +appwrite tablesDB createIndex \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md index a5f9a7a585..fdb7565030 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-integer-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createIntegerColumn \ +appwrite tablesDB createIntegerColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md index aa937279d0..b84f4ba2fb 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-ip-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createIpColumn \ +appwrite tablesDB createIpColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md index c7897d66dc..deca698489 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-relationship-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createRelationshipColumn \ +appwrite tablesDB createRelationshipColumn \ --databaseId \ --tableId \ --relatedTableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md index 0a040309f8..a9916115a5 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-row.md @@ -1,4 +1,4 @@ -appwrite tablesDb createRow \ +appwrite tablesDB createRow \ --databaseId \ --tableId \ --rowId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md index d8158ad81f..d1c43201b9 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-rows.md @@ -1,4 +1,4 @@ -appwrite tablesDb createRows \ +appwrite tablesDB createRows \ --databaseId \ --tableId \ --rows one two three diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md index e28501575a..188aa268de 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-string-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createStringColumn \ +appwrite tablesDB createStringColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md index 9ae952ab7f..ce5b3c234a 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-table.md @@ -1,4 +1,4 @@ -appwrite tablesDb createTable \ +appwrite tablesDB createTable \ --databaseId \ --tableId \ --name \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md index 9d229828c0..649e203618 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create-url-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb createUrlColumn \ +appwrite tablesDB createUrlColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md index 894dee5a21..b1b6946be9 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/create.md @@ -1,4 +1,4 @@ -appwrite tablesDb create \ +appwrite tablesDB create \ --databaseId \ --name \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md index d232f985ad..3d8dc8c497 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/decrement-row-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb decrementRowColumn \ +appwrite tablesDB decrementRowColumn \ --databaseId \ --tableId \ --rowId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md index a1e43d4ba5..edcff274fb 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb deleteColumn \ +appwrite tablesDB deleteColumn \ --databaseId \ --tableId \ --key '' diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md index ecd9afe3ac..70e50aacdd 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-index.md @@ -1,4 +1,4 @@ -appwrite tablesDb deleteIndex \ +appwrite tablesDB deleteIndex \ --databaseId \ --tableId \ --key '' diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md index c9e849b696..e26f8e2d97 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-row.md @@ -1,4 +1,4 @@ -appwrite tablesDb deleteRow \ +appwrite tablesDB deleteRow \ --databaseId \ --tableId \ --rowId diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md index f38131607d..456c706a8d 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-rows.md @@ -1,4 +1,4 @@ -appwrite tablesDb deleteRows \ +appwrite tablesDB deleteRows \ --databaseId \ --tableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md index ae48ae5002..cd218706ef 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete-table.md @@ -1,3 +1,3 @@ -appwrite tablesDb deleteTable \ +appwrite tablesDB deleteTable \ --databaseId \ --tableId diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md index a41c3ec058..2ba8a45970 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/delete.md @@ -1,2 +1,2 @@ -appwrite tablesDb delete \ +appwrite tablesDB delete \ --databaseId diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md index 102709886f..63d618bb92 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb getColumn \ +appwrite tablesDB getColumn \ --databaseId \ --tableId \ --key '' diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md index cf5d2bd944..208fccd170 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-index.md @@ -1,4 +1,4 @@ -appwrite tablesDb getIndex \ +appwrite tablesDB getIndex \ --databaseId \ --tableId \ --key '' diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md index 655c7d69ef..cb2610764c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-row.md @@ -1,4 +1,4 @@ -appwrite tablesDb getRow \ +appwrite tablesDB getRow \ --databaseId \ --tableId \ --rowId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md index 3d2aab1821..ccaac73f92 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table-usage.md @@ -1,4 +1,4 @@ -appwrite tablesDb getTableUsage \ +appwrite tablesDB getTableUsage \ --databaseId \ --tableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md index 60c3a5a42d..2aa2de375d 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-table.md @@ -1,3 +1,3 @@ -appwrite tablesDb getTable \ +appwrite tablesDB getTable \ --databaseId \ --tableId diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md index 90be79b0c2..e98fd43199 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get-usage.md @@ -1,3 +1,3 @@ -appwrite tablesDb getUsage \ +appwrite tablesDB getUsage \ --databaseId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md index 46cec46b34..9323fadd3a 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/get.md @@ -1,2 +1,2 @@ -appwrite tablesDb get \ +appwrite tablesDB get \ --databaseId diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md index 317fe8939c..9c9742240b 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/increment-row-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb incrementRowColumn \ +appwrite tablesDB incrementRowColumn \ --databaseId \ --tableId \ --rowId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md index 0f5812cd48..b6b7ce4b8b 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-columns.md @@ -1,4 +1,4 @@ -appwrite tablesDb listColumns \ +appwrite tablesDB listColumns \ --databaseId \ --tableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md index a226483b72..6e506cfd99 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-indexes.md @@ -1,4 +1,4 @@ -appwrite tablesDb listIndexes \ +appwrite tablesDB listIndexes \ --databaseId \ --tableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md index baa7e90e6c..2dc6fbe61c 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-row-logs.md @@ -1,4 +1,4 @@ -appwrite tablesDb listRowLogs \ +appwrite tablesDB listRowLogs \ --databaseId \ --tableId \ --rowId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md index 496ba61cc2..5b06216b27 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-rows.md @@ -1,4 +1,4 @@ -appwrite tablesDb listRows \ +appwrite tablesDB listRows \ --databaseId \ --tableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md index 71647b27f3..9135168abe 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-table-logs.md @@ -1,4 +1,4 @@ -appwrite tablesDb listTableLogs \ +appwrite tablesDB listTableLogs \ --databaseId \ --tableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md index 6d4eb7bd90..5a7b3badfb 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-tables.md @@ -1,4 +1,4 @@ -appwrite tablesDb listTables \ +appwrite tablesDB listTables \ --databaseId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md index 9622b7a6e0..3b5c6fa1ce 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list-usage.md @@ -1,2 +1,2 @@ -appwrite tablesDb listUsage \ +appwrite tablesDB listUsage \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md index dd10ab3499..591d65d7d9 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/list.md @@ -1,3 +1,3 @@ -appwrite tablesDb list \ +appwrite tablesDB list \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md index c3a2994f93..911bb9fbac 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-boolean-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateBooleanColumn \ +appwrite tablesDB updateBooleanColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md index 301d5d2768..874c24091f 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-datetime-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateDatetimeColumn \ +appwrite tablesDB updateDatetimeColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md index d9fb44912e..72757f365f 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-email-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateEmailColumn \ +appwrite tablesDB updateEmailColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md index f5879d1f3a..216610e7fe 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-enum-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateEnumColumn \ +appwrite tablesDB updateEnumColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md index 9c6de6f14d..984903fdcd 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-float-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateFloatColumn \ +appwrite tablesDB updateFloatColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md index cf0d04e940..a2252ab3b5 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-integer-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateIntegerColumn \ +appwrite tablesDB updateIntegerColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md index 81f5f93b6b..b96c4cfbf5 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-ip-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateIpColumn \ +appwrite tablesDB updateIpColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md index e079f772a2..d5b7197835 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-relationship-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateRelationshipColumn \ +appwrite tablesDB updateRelationshipColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md index 891d91cafe..c9f1da454e 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-row.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateRow \ +appwrite tablesDB updateRow \ --databaseId \ --tableId \ --rowId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md index 993c7a3380..da7871741f 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-rows.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateRows \ +appwrite tablesDB updateRows \ --databaseId \ --tableId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md index 0d1d6dee7a..11329614c3 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-string-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateStringColumn \ +appwrite tablesDB updateStringColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md index 81eced6439..3c939b08aa 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-table.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateTable \ +appwrite tablesDB updateTable \ --databaseId \ --tableId \ --name \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md index 07be8e8717..c49abfe056 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update-url-column.md @@ -1,4 +1,4 @@ -appwrite tablesDb updateUrlColumn \ +appwrite tablesDB updateUrlColumn \ --databaseId \ --tableId \ --key '' \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md index 5b1d733353..4e651e4792 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/update.md @@ -1,4 +1,4 @@ -appwrite tablesDb update \ +appwrite tablesDB update \ --databaseId \ --name \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md index c3a2633d4e..1143f40a9d 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-row.md @@ -1,4 +1,4 @@ -appwrite tablesDb upsertRow \ +appwrite tablesDB upsertRow \ --databaseId \ --tableId \ --rowId \ diff --git a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md index 42693ac519..53ec4e42b5 100644 --- a/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/console-cli/examples/tablesdb/upsert-rows.md @@ -1,4 +1,4 @@ -appwrite tablesDb upsertRows \ +appwrite tablesDB upsertRows \ --databaseId \ --tableId \ --rows one two three diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md index b946e38b0d..77adb1d036 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-boolean-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createBooleanColumn({ +const result = await tablesDB.createBooleanColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md index cc2b1e71be..9e3d045d88 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-datetime-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createDatetimeColumn({ +const result = await tablesDB.createDatetimeColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md index d73434b66a..d2f6755e05 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-email-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createEmailColumn({ +const result = await tablesDB.createEmailColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md index 5008963c85..bd952252e9 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-enum-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createEnumColumn({ +const result = await tablesDB.createEnumColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md index 41d4e97bf6..edd016c926 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-float-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createFloatColumn({ +const result = await tablesDB.createFloatColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md index 5bc28d7382..eb987abeb4 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-index.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createIndex({ +const result = await tablesDB.createIndex({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md index a6aafccd57..eb702e9ca3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-integer-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createIntegerColumn({ +const result = await tablesDB.createIntegerColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md index 30020e9403..bfa128cbb1 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-ip-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createIpColumn({ +const result = await tablesDB.createIpColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md index 6a2d0c9641..4ba126a3b6 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-relationship-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createRelationshipColumn({ +const result = await tablesDB.createRelationshipColumn({ databaseId: '', tableId: '', relatedTableId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md index f54a428533..7f8828e0ba 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createRow({ +const result = await tablesDB.createRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md index 75499b3d88..2ca61c2fc5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-rows.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createRows({ +const result = await tablesDB.createRows({ databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md index 36e436051c..2dbc2b4c24 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-string-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createStringColumn({ +const result = await tablesDB.createStringColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md index fc49449b4f..954c2926b6 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-table.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createTable({ +const result = await tablesDB.createTable({ databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md index c623f863b9..a8b2de2a78 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create-url-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.createUrlColumn({ +const result = await tablesDB.createUrlColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/create.md b/docs/examples/1.8.x/console-web/examples/tablesdb/create.md index c3fce72556..ee22cd918e 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/create.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.create({ +const result = await tablesDB.create({ databaseId: '', name: '', enabled: false diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md index 877f4e283a..94f8b4bdc3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/decrement-row-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.decrementRowColumn({ +const result = await tablesDB.decrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md index f05c59ed10..d56ee69744 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.deleteColumn({ +const result = await tablesDB.deleteColumn({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md index 68c76434ea..c3ec6b0d76 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-index.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.deleteIndex({ +const result = await tablesDB.deleteIndex({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md index 1b10d0ba95..7cd13422c3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.deleteRow({ +const result = await tablesDB.deleteRow({ databaseId: '', tableId: '', rowId: '' diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md index 992092b471..922a5667b5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-rows.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.deleteRows({ +const result = await tablesDB.deleteRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md index 5d035e9de4..4b00cd4206 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete-table.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.deleteTable({ +const result = await tablesDB.deleteTable({ databaseId: '', tableId: '' }); diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md b/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md index 4237e92d37..10e37d4859 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/delete.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.delete({ +const result = await tablesDB.delete({ databaseId: '' }); diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md index 307cf0a0fd..f47f88ce16 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getColumn({ +const result = await tablesDB.getColumn({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md index 3599ae7007..be69012616 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-index.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getIndex({ +const result = await tablesDB.getIndex({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md index f09122787a..cc2e7bf269 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getRow({ +const result = await tablesDB.getRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md index 3c8f6875b1..b2d781464d 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table-usage.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getTableUsage({ +const result = await tablesDB.getTableUsage({ databaseId: '', tableId: '', range: UsageRange.TwentyFourHours diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md index bd1ae6f7bf..2c3efa9f60 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-table.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getTable({ +const result = await tablesDB.getTable({ databaseId: '', tableId: '' }); diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md index 76cf398c7b..3323b1870c 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get-usage.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.getUsage({ +const result = await tablesDB.getUsage({ databaseId: '', range: UsageRange.TwentyFourHours }); diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/get.md b/docs/examples/1.8.x/console-web/examples/tablesdb/get.md index b97ecdbb57..1efef449d7 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/get.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.get({ +const result = await tablesDB.get({ databaseId: '' }); diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md index 61b2d4b9c5..d6a8fcd9bf 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/increment-row-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.incrementRowColumn({ +const result = await tablesDB.incrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md index 5c18ef020b..8109b06183 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-columns.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listColumns({ +const result = await tablesDB.listColumns({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md index f555de9585..db45cfeae9 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-indexes.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listIndexes({ +const result = await tablesDB.listIndexes({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md index e8eb90802f..bcbde9ebf3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-row-logs.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listRowLogs({ +const result = await tablesDB.listRowLogs({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md index c3030c6f92..71feb2b507 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-rows.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listRows({ +const result = await tablesDB.listRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md index 329e7910d6..48d6f526fd 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-table-logs.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listTableLogs({ +const result = await tablesDB.listTableLogs({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md index a71c82bf57..117afe54df 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-tables.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listTables({ +const result = await tablesDB.listTables({ databaseId: '', queries: [], search: '' diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md index b741479d4c..5563dea6e5 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list-usage.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.listUsage({ +const result = await tablesDB.listUsage({ range: UsageRange.TwentyFourHours }); diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/list.md b/docs/examples/1.8.x/console-web/examples/tablesdb/list.md index 683d721c71..cd88e84d51 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/list.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.list({ +const result = await tablesDB.list({ queries: [], search: '' }); diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md index f28f052737..1b44b10871 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-boolean-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateBooleanColumn({ +const result = await tablesDB.updateBooleanColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md index a2f05e8e4f..c6ba97cabf 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-datetime-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateDatetimeColumn({ +const result = await tablesDB.updateDatetimeColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md index 9750673d4f..b975de18ed 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-email-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateEmailColumn({ +const result = await tablesDB.updateEmailColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md index 8fa1ebbebf..0bd0edf878 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-enum-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateEnumColumn({ +const result = await tablesDB.updateEnumColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md index 6740b1b5c8..87e52ba251 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-float-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateFloatColumn({ +const result = await tablesDB.updateFloatColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md index ae698ce68f..0cade112bd 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-integer-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateIntegerColumn({ +const result = await tablesDB.updateIntegerColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md index 437488a475..bf4561bb4d 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-ip-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateIpColumn({ +const result = await tablesDB.updateIpColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md index 9f34a2548d..1a416484e3 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-relationship-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateRelationshipColumn({ +const result = await tablesDB.updateRelationshipColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md index c9707a5194..541a5f5b07 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateRow({ +const result = await tablesDB.updateRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md index 73e963d5d7..65066f144f 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-rows.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateRows({ +const result = await tablesDB.updateRows({ databaseId: '', tableId: '', data: {}, diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md index ab01d7ccdd..8e77bc68ba 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-string-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateStringColumn({ +const result = await tablesDB.updateStringColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md index 58c65e93a8..8dfc46ee1b 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-table.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateTable({ +const result = await tablesDB.updateTable({ databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md index 51edefa22e..202de5e087 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update-url-column.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.updateUrlColumn({ +const result = await tablesDB.updateUrlColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/update.md b/docs/examples/1.8.x/console-web/examples/tablesdb/update.md index 5e3c2d51ec..1ea4f1e7b4 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/update.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.update({ +const result = await tablesDB.update({ databaseId: '', name: '', enabled: false diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md index d114f37b3c..1d5585eebb 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-row.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.upsertRow({ +const result = await tablesDB.upsertRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md index c93dffb76e..0c4d0a46a4 100644 --- a/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/console-web/examples/tablesdb/upsert-rows.md @@ -4,9 +4,9 @@ const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject(''); // Your project ID -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const result = await tablesDb.upsertRows({ +const result = await tablesDB.upsertRows({ databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md index 7faac9e067..c5cf470db9 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-boolean-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnBoolean result = await tablesDb.createBooleanColumn( +ColumnBoolean result = await tablesDB.createBooleanColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md index 9519db81f2..d905fd7b45 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-datetime-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnDatetime result = await tablesDb.createDatetimeColumn( +ColumnDatetime result = await tablesDB.createDatetimeColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md index 6ce8ed3764..e0ab5cc3df 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-email-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnEmail result = await tablesDb.createEmailColumn( +ColumnEmail result = await tablesDB.createEmailColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md index 9584d81f16..fd8f2b0186 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-enum-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnEnum result = await tablesDb.createEnumColumn( +ColumnEnum result = await tablesDB.createEnumColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md index 6092f58478..d1a2fc3e8b 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-float-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnFloat result = await tablesDb.createFloatColumn( +ColumnFloat result = await tablesDB.createFloatColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md index 014663989e..77e8066c66 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-index.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnIndex result = await tablesDb.createIndex( +ColumnIndex result = await tablesDB.createIndex( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md index 5f4eb0b81a..eca497aa93 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-integer-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnInteger result = await tablesDb.createIntegerColumn( +ColumnInteger result = await tablesDB.createIntegerColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md index 44e9ce38b2..3969ef33e3 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-ip-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnIp result = await tablesDb.createIpColumn( +ColumnIp result = await tablesDB.createIpColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md index 1b61250d84..0f095afba3 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-relationship-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnRelationship result = await tablesDb.createRelationshipColumn( +ColumnRelationship result = await tablesDB.createRelationshipColumn( databaseId: '', tableId: '', relatedTableId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md index 5724e3ed3d..8fc0b0b269 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-row.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.createRow( +Row result = await tablesDB.createRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md index 4f4e1c4572..49e3dfff83 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-rows.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -RowList result = await tablesDb.createRows( +RowList result = await tablesDB.createRows( databaseId: '', tableId: '', rows: [], diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md index a5d53a0e7d..0123563ff2 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-string-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnString result = await tablesDb.createStringColumn( +ColumnString result = await tablesDB.createStringColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md index bb8206dc4c..39e68f6691 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-table.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Table result = await tablesDb.createTable( +Table result = await tablesDB.createTable( databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md index ac181814bc..aa07ef6ce8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create-url-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnUrl result = await tablesDb.createUrlColumn( +ColumnUrl result = await tablesDB.createUrlColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md index 830b5898fc..e727009871 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/create.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Database result = await tablesDb.create( +Database result = await tablesDB.create( databaseId: '', name: '', enabled: false, // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md index 1f3a5e91b1..b2fe718f8c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/decrement-row-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.decrementRowColumn( +Row result = await tablesDB.decrementRowColumn( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md index f86e7f1027..26ba26b9f0 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -await tablesDb.deleteColumn( +await tablesDB.deleteColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md index 3727bd4134..b3693baf2c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-index.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -await tablesDb.deleteIndex( +await tablesDB.deleteIndex( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md index 8ebdf733f3..54dd26d47e 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-row.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -await tablesDb.deleteRow( +await tablesDB.deleteRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md index 932e647541..f6e07bf537 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-rows.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -await tablesDb.deleteRows( +await tablesDB.deleteRows( databaseId: '', tableId: '', queries: [], // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md index c9504d3eaf..1e3fed2409 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete-table.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -await tablesDb.deleteTable( +await tablesDB.deleteTable( databaseId: '', tableId: '', ); diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md index c8ea781831..62fdd7f702 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/delete.md @@ -5,8 +5,8 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -await tablesDb.delete( +await tablesDB.delete( databaseId: '', ); diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md index 898945fa63..47751ebbc0 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); - result = await tablesDb.getColumn( + result = await tablesDB.getColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md index eb8703d2ee..6ac144a994 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-index.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnIndex result = await tablesDb.getIndex( +ColumnIndex result = await tablesDB.getIndex( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md index abd412b1bf..28e5661781 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-row.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.getRow( +Row result = await tablesDB.getRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md index becce95148..6bf94a6b31 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get-table.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Table result = await tablesDb.getTable( +Table result = await tablesDB.getTable( databaseId: '', tableId: '', ); diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md index 44628b3c19..2ba416d00c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/get.md @@ -5,8 +5,8 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Database result = await tablesDb.get( +Database result = await tablesDB.get( databaseId: '', ); diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md index 35cc48d31e..4bc376b4aa 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/increment-row-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.incrementRowColumn( +Row result = await tablesDB.incrementRowColumn( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md index 608ff1e6bc..de0f3e28a1 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-columns.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnList result = await tablesDb.listColumns( +ColumnList result = await tablesDB.listColumns( databaseId: '', tableId: '', queries: [], // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md index c78eaddf7c..7ebc371d48 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-indexes.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnIndexList result = await tablesDb.listIndexes( +ColumnIndexList result = await tablesDB.listIndexes( databaseId: '', tableId: '', queries: [], // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md index 07b2733a45..874cd8c7bc 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-rows.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -RowList result = await tablesDb.listRows( +RowList result = await tablesDB.listRows( databaseId: '', tableId: '', queries: [], // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md index 5d18cd5b57..12e301b33f 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list-tables.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -TableList result = await tablesDb.listTables( +TableList result = await tablesDB.listTables( databaseId: '', queries: [], // (optional) search: '', // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md index 38b73b4326..80cb5623dd 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/list.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -DatabaseList result = await tablesDb.list( +DatabaseList result = await tablesDB.list( queries: [], // (optional) search: '', // (optional) ); diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md index 7ca6e5e306..85353b1893 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-boolean-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnBoolean result = await tablesDb.updateBooleanColumn( +ColumnBoolean result = await tablesDB.updateBooleanColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md index 0ea38fe98d..99fbbbb3be 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-datetime-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnDatetime result = await tablesDb.updateDatetimeColumn( +ColumnDatetime result = await tablesDB.updateDatetimeColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md index 0fdc6521c4..70690d898b 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-email-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnEmail result = await tablesDb.updateEmailColumn( +ColumnEmail result = await tablesDB.updateEmailColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md index 5f4403fe12..3c8e4f0652 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-enum-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnEnum result = await tablesDb.updateEnumColumn( +ColumnEnum result = await tablesDB.updateEnumColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md index bfb1d7c39c..f07f8bc896 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-float-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnFloat result = await tablesDb.updateFloatColumn( +ColumnFloat result = await tablesDB.updateFloatColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md index c1ae288767..6119d82c37 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-integer-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnInteger result = await tablesDb.updateIntegerColumn( +ColumnInteger result = await tablesDB.updateIntegerColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md index c1d9123fe2..a62f1d6553 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-ip-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnIp result = await tablesDb.updateIpColumn( +ColumnIp result = await tablesDB.updateIpColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md index 5f0fafb45c..e23fb77aeb 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-relationship-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnRelationship result = await tablesDb.updateRelationshipColumn( +ColumnRelationship result = await tablesDB.updateRelationshipColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md index 31535b4e24..63c0a26e35 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-row.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.updateRow( +Row result = await tablesDB.updateRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md index b8d47a3596..a12d63f3ab 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-rows.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -RowList result = await tablesDb.updateRows( +RowList result = await tablesDB.updateRows( databaseId: '', tableId: '', data: {}, // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md index 7ef30e4bda..01559318e8 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-string-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnString result = await tablesDb.updateStringColumn( +ColumnString result = await tablesDB.updateStringColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md index 0ff11cdf6e..080370ce11 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-table.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Table result = await tablesDb.updateTable( +Table result = await tablesDB.updateTable( databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md index 7075ba157c..1f2da1671c 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update-url-column.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -ColumnUrl result = await tablesDb.updateUrlColumn( +ColumnUrl result = await tablesDB.updateUrlColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md index 72b50f0b96..3bf2d15c5b 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/update.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Database result = await tablesDb.update( +Database result = await tablesDB.update( databaseId: '', name: '', enabled: false, // (optional) diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md index 95720df089..7470ed55f7 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-row.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -Row result = await tablesDb.upsertRow( +Row result = await tablesDB.upsertRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md index e6e9cb107e..1d0273b187 100644 --- a/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-dart/examples/tablesdb/upsert-rows.md @@ -5,9 +5,9 @@ Client client = Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -TablesDb tablesDb = TablesDb(client); +TablesDb tablesDB = TablesDb(client); -RowList result = await tablesDb.upsertRows( +RowList result = await tablesDB.upsertRows( databaseId: '', tableId: '', rows: [], diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-boolean-column.md index 410cee12a2..e387644a3b 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-boolean-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createBooleanColumn({ +const response = await tablesDB.createBooleanColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-datetime-column.md index 19267e0910..beadae5380 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-datetime-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createDatetimeColumn({ +const response = await tablesDB.createDatetimeColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-email-column.md index 22b2a9d24e..fdd828a3f8 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-email-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createEmailColumn({ +const response = await tablesDB.createEmailColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-enum-column.md index b2dcc88687..6f387e61cb 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-enum-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createEnumColumn({ +const response = await tablesDB.createEnumColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-float-column.md index 4cf2b55c5c..e76fe8a0d6 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-float-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createFloatColumn({ +const response = await tablesDB.createFloatColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-index.md index efb1f12c85..59ad847981 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-index.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createIndex({ +const response = await tablesDB.createIndex({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-integer-column.md index ccbda0b4d2..da917585fb 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-integer-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createIntegerColumn({ +const response = await tablesDB.createIntegerColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-ip-column.md index c5c2fa6e27..d60fb51c9e 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-ip-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createIpColumn({ +const response = await tablesDB.createIpColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-relationship-column.md index a50ffcdb29..bee1546c6b 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-relationship-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createRelationshipColumn({ +const response = await tablesDB.createRelationshipColumn({ databaseId: '', tableId: '', relatedTableId: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-row.md index 6f0646332c..7caf1de840 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-row.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createRow({ +const response = await tablesDB.createRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-rows.md index 87f7d2e52b..a61610268a 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-rows.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createRows({ +const response = await tablesDB.createRows({ databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-string-column.md index 3b0bf5b9ab..b746a4a389 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-string-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createStringColumn({ +const response = await tablesDB.createStringColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-table.md index 596f4e3b55..bcf47d5e98 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-table.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createTable({ +const response = await tablesDB.createTable({ databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-url-column.md index 014f54bd37..f0fca4d6da 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create-url-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.createUrlColumn({ +const response = await tablesDB.createUrlColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/create.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/create.md index 618e4c6789..03d72c5d99 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/create.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.create({ +const response = await tablesDB.create({ databaseId: '', name: '', enabled: false diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/decrement-row-column.md index 67fd811bc3..0084d8070b 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/decrement-row-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.decrementRowColumn({ +const response = await tablesDB.decrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-column.md index 2ba1140995..d327ea7983 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.deleteColumn({ +const response = await tablesDB.deleteColumn({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-index.md index e1b77edc5e..a80fa6084f 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-index.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.deleteIndex({ +const response = await tablesDB.deleteIndex({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-row.md index f18b6ac1ce..55639a4782 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-row.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.deleteRow({ +const response = await tablesDB.deleteRow({ databaseId: '', tableId: '', rowId: '' diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-rows.md index 659150fb81..8681dcc542 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-rows.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.deleteRows({ +const response = await tablesDB.deleteRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-table.md index 1be63ed274..0a20657346 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete-table.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.deleteTable({ +const response = await tablesDB.deleteTable({ databaseId: '', tableId: '' }); diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete.md index 12c92bf5ea..90dcc26f78 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/delete.md @@ -5,8 +5,8 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.delete({ +const response = await tablesDB.delete({ databaseId: '' }); diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-column.md index 559953580d..25b591c3d3 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.getColumn({ +const response = await tablesDB.getColumn({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-index.md index 708c22ae78..5d7679fb44 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-index.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.getIndex({ +const response = await tablesDB.getIndex({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-row.md index 0e9f079c46..b59cf5a419 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-row.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.getRow({ +const response = await tablesDB.getRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-table.md index 91b4957722..c0e0cd6b06 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/get-table.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.getTable({ +const response = await tablesDB.getTable({ databaseId: '', tableId: '' }); diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/get.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/get.md index b5fc2f7ade..24044880e7 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/get.md @@ -5,8 +5,8 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.get({ +const response = await tablesDB.get({ databaseId: '' }); diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/increment-row-column.md index 03b59d520b..a67416457e 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/increment-row-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.incrementRowColumn({ +const response = await tablesDB.incrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-columns.md index 7c061e9d25..6b04a95488 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-columns.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.listColumns({ +const response = await tablesDB.listColumns({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-indexes.md index d2b0010d80..4759fb7af7 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-indexes.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.listIndexes({ +const response = await tablesDB.listIndexes({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-rows.md index 764bfa701f..c614050e53 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-rows.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.listRows({ +const response = await tablesDB.listRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-tables.md index 3b74c36d54..7d1605577e 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/list-tables.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.listTables({ +const response = await tablesDB.listTables({ databaseId: '', queries: [], search: '' diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/list.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/list.md index 5af10e4e62..957fffca70 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/list.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.list({ +const response = await tablesDB.list({ queries: [], search: '' }); diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-boolean-column.md index af6a9625d6..a4c2ff02bb 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-boolean-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateBooleanColumn({ +const response = await tablesDB.updateBooleanColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-datetime-column.md index b704445d3d..ae2316ee3c 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-datetime-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateDatetimeColumn({ +const response = await tablesDB.updateDatetimeColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-email-column.md index 28f243ccf4..6d482ebdb8 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-email-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateEmailColumn({ +const response = await tablesDB.updateEmailColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-enum-column.md index 6f44394051..7485d6d175 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-enum-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateEnumColumn({ +const response = await tablesDB.updateEnumColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-float-column.md index 8b1c50e1ee..ba32233413 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-float-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateFloatColumn({ +const response = await tablesDB.updateFloatColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-integer-column.md index e2b5af0861..dd5ffe58a7 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-integer-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateIntegerColumn({ +const response = await tablesDB.updateIntegerColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-ip-column.md index 54bf616f57..bb2b1e1d9d 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-ip-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateIpColumn({ +const response = await tablesDB.updateIpColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-relationship-column.md index de8d3db42e..36f387796f 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-relationship-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateRelationshipColumn({ +const response = await tablesDB.updateRelationshipColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-row.md index 35b1b27e69..0449e63631 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-row.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateRow({ +const response = await tablesDB.updateRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-rows.md index 3e5cba802a..2b25e12064 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-rows.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateRows({ +const response = await tablesDB.updateRows({ databaseId: '', tableId: '', data: {}, diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-string-column.md index b763d378ec..716c6d4769 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-string-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateStringColumn({ +const response = await tablesDB.updateStringColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-table.md index 54d60ed598..4dc1178449 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-table.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateTable({ +const response = await tablesDB.updateTable({ databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-url-column.md index c09ee6e690..0506553dc6 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update-url-column.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.updateUrlColumn({ +const response = await tablesDB.updateUrlColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/update.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/update.md index 8504e63bd3..569cd94848 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/update.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.update({ +const response = await tablesDB.update({ databaseId: '', name: '', enabled: false diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-row.md index dda7dad592..5e9874ba0d 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-row.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.upsertRow({ +const response = await tablesDB.upsertRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-rows.md index 173235105a..b502f37e33 100644 --- a/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-deno/examples/tablesdb/upsert-rows.md @@ -5,9 +5,9 @@ const client = new Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new TablesDb(client); +const tablesDB = new TablesDb(client); -const response = await tablesDb.upsertRows({ +const response = await tablesDB.upsertRows({ databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md index 06bc07a8a1..e90609b1df 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-boolean-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnBoolean result = await tablesDb.CreateBooleanColumn( +ColumnBoolean result = await tablesDB.CreateBooleanColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md index d810517988..542354b5d5 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-datetime-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnDatetime result = await tablesDb.CreateDatetimeColumn( +ColumnDatetime result = await tablesDB.CreateDatetimeColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md index d57f858a9e..f1bcacbbf2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-email-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnEmail result = await tablesDb.CreateEmailColumn( +ColumnEmail result = await tablesDB.CreateEmailColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md index 149ae86134..0c7b009b88 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-enum-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnEnum result = await tablesDb.CreateEnumColumn( +ColumnEnum result = await tablesDB.CreateEnumColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md index 41dd45edfb..251a479461 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-float-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnFloat result = await tablesDb.CreateFloatColumn( +ColumnFloat result = await tablesDB.CreateFloatColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md index 380a07051b..0b3acf96c1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-index.md @@ -8,9 +8,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnIndex result = await tablesDb.CreateIndex( +ColumnIndex result = await tablesDB.CreateIndex( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md index 2bae4eae51..d234ad2b7c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-integer-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnInteger result = await tablesDb.CreateIntegerColumn( +ColumnInteger result = await tablesDB.CreateIntegerColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md index 4f94fd9dd5..9fdca3f60b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-ip-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnIp result = await tablesDb.CreateIpColumn( +ColumnIp result = await tablesDB.CreateIpColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md index e3b22f1dd8..f19dc1d5ba 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-relationship-column.md @@ -8,9 +8,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnRelationship result = await tablesDb.CreateRelationshipColumn( +ColumnRelationship result = await tablesDB.CreateRelationshipColumn( databaseId: "", tableId: "", relatedTableId: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md index 5bf1e0fe38..367f188992 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-row.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Row result = await tablesDb.CreateRow( +Row result = await tablesDB.CreateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md index 889437e063..60c0028ad6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -RowList result = await tablesDb.CreateRows( +RowList result = await tablesDB.CreateRows( databaseId: "", tableId: "", rows: new List() diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md index 97ce907de6..dd49081b5b 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-string-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnString result = await tablesDb.CreateStringColumn( +ColumnString result = await tablesDB.CreateStringColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md index 8d1dbc9694..5c34ff9412 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-table.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Table result = await tablesDb.CreateTable( +Table result = await tablesDB.CreateTable( databaseId: "", tableId: "", name: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md index d89ebd33d6..a10ac7b801 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create-url-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnUrl result = await tablesDb.CreateUrlColumn( +ColumnUrl result = await tablesDB.CreateUrlColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md index a1fc21fb0a..f3f2184a35 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/create.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Database result = await tablesDb.Create( +Database result = await tablesDB.Create( databaseId: "", name: "", enabled: false // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md index 77ebbf7702..409929e04f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/decrement-row-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Row result = await tablesDb.DecrementRowColumn( +Row result = await tablesDB.DecrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md index e95f483f38..36973875bd 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -await tablesDb.DeleteColumn( +await tablesDB.DeleteColumn( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md index da86a942f0..3fc011edf6 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-index.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -await tablesDb.DeleteIndex( +await tablesDB.DeleteIndex( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md index 77a79bb9b9..b4d2453f06 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-row.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -await tablesDb.DeleteRow( +await tablesDB.DeleteRow( databaseId: "", tableId: "", rowId: "" diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md index f703ebb30b..ee22665a8e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -await tablesDb.DeleteRows( +await tablesDB.DeleteRows( databaseId: "", tableId: "", queries: new List() // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md index 9be80ed0bf..17957d1942 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete-table.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -await tablesDb.DeleteTable( +await tablesDB.DeleteTable( databaseId: "", tableId: "" ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md index 50c36501d8..108b87eee0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/delete.md @@ -7,8 +7,8 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -await tablesDb.Delete( +await tablesDB.Delete( databaseId: "" ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md index 55b17c2923..0ef6ed379c 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); - result = await tablesDb.GetColumn( + result = await tablesDB.GetColumn( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md index 724e38d1d9..cee86f05e0 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-index.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnIndex result = await tablesDb.GetIndex( +ColumnIndex result = await tablesDB.GetIndex( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md index 4cc4ca82ed..6416bed2b9 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-row.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Row result = await tablesDb.GetRow( +Row result = await tablesDB.GetRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md index 59554e3bc5..79e12b79b2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get-table.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Table result = await tablesDb.GetTable( +Table result = await tablesDB.GetTable( databaseId: "", tableId: "" ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md index 2d9c80805a..1fa6343edb 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/get.md @@ -7,8 +7,8 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Database result = await tablesDb.Get( +Database result = await tablesDB.Get( databaseId: "" ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md index 6d9ce27e2e..5b83486483 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/increment-row-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Row result = await tablesDb.IncrementRowColumn( +Row result = await tablesDB.IncrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md index 9505574efc..ed3aba1d22 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-columns.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnList result = await tablesDb.ListColumns( +ColumnList result = await tablesDB.ListColumns( databaseId: "", tableId: "", queries: new List() // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md index 4284d1207f..282159658a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-indexes.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnIndexList result = await tablesDb.ListIndexes( +ColumnIndexList result = await tablesDB.ListIndexes( databaseId: "", tableId: "", queries: new List() // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md index 596c167a61..0a7ee4ba3f 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -RowList result = await tablesDb.ListRows( +RowList result = await tablesDB.ListRows( databaseId: "", tableId: "", queries: new List() // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md index 2c74b3b642..171dfca464 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list-tables.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -TableList result = await tablesDb.ListTables( +TableList result = await tablesDB.ListTables( databaseId: "", queries: new List(), // optional search: "" // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md index 916d004e84..c2117f73b4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/list.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -DatabaseList result = await tablesDb.List( +DatabaseList result = await tablesDB.List( queries: new List(), // optional search: "" // optional ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md index 3c0de4cba6..6630d50050 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-boolean-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnBoolean result = await tablesDb.UpdateBooleanColumn( +ColumnBoolean result = await tablesDB.UpdateBooleanColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md index ebbf61a7d7..fcef5a50b1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-datetime-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnDatetime result = await tablesDb.UpdateDatetimeColumn( +ColumnDatetime result = await tablesDB.UpdateDatetimeColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md index 1cf3efff05..0794b67812 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-email-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnEmail result = await tablesDb.UpdateEmailColumn( +ColumnEmail result = await tablesDB.UpdateEmailColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md index 82d1dd81d3..a64dc5071a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-enum-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnEnum result = await tablesDb.UpdateEnumColumn( +ColumnEnum result = await tablesDB.UpdateEnumColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md index 598c117b7a..fa76e5fb3a 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-float-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnFloat result = await tablesDb.UpdateFloatColumn( +ColumnFloat result = await tablesDB.UpdateFloatColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md index 4c6da922f6..36756b3427 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-integer-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnInteger result = await tablesDb.UpdateIntegerColumn( +ColumnInteger result = await tablesDB.UpdateIntegerColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md index 1ab4930f5e..dd51e10bf2 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-ip-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnIp result = await tablesDb.UpdateIpColumn( +ColumnIp result = await tablesDB.UpdateIpColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md index cac1342201..42cc022cc8 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-relationship-column.md @@ -8,9 +8,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnRelationship result = await tablesDb.UpdateRelationshipColumn( +ColumnRelationship result = await tablesDB.UpdateRelationshipColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md index 13465195db..40cf66d46e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-row.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Row result = await tablesDb.UpdateRow( +Row result = await tablesDB.UpdateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md index 67f7a62e49..53073776ea 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -RowList result = await tablesDb.UpdateRows( +RowList result = await tablesDB.UpdateRows( databaseId: "", tableId: "", data: [object], // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md index aa6c066554..f3862692a1 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-string-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnString result = await tablesDb.UpdateStringColumn( +ColumnString result = await tablesDB.UpdateStringColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md index cedf3992fd..f3e7f7f07e 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-table.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Table result = await tablesDb.UpdateTable( +Table result = await tablesDB.UpdateTable( databaseId: "", tableId: "", name: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md index 55dc4731cc..abc9479175 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update-url-column.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -ColumnUrl result = await tablesDb.UpdateUrlColumn( +ColumnUrl result = await tablesDB.UpdateUrlColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md index eb041d4ce8..fe05d09107 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/update.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Database result = await tablesDb.Update( +Database result = await tablesDB.Update( databaseId: "", name: "", enabled: false // optional diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md index 4de1826402..ddf7d611b4 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-row.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -Row result = await tablesDb.UpsertRow( +Row result = await tablesDB.UpsertRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md index cf9076c7d1..373ab6db80 100644 --- a/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-dotnet/examples/tablesdb/upsert-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .SetProject("") // Your project ID .SetKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -RowList result = await tablesDb.UpsertRows( +RowList result = await tablesDB.UpsertRows( databaseId: "", tableId: "", rows: new List() diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md index 7dff4ecd2d..e137c6bd3d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-boolean-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateBooleanColumn( + tablesDBCreateBooleanColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md index 1da8f084e1..bad8c08bd4 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-datetime-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateDatetimeColumn( + tablesDBCreateDatetimeColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md index 78aa06ade2..76d286f934 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-email-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateEmailColumn( + tablesDBCreateEmailColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md index ca3d50536e..7a7b2d3950 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-enum-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateEnumColumn( + tablesDBCreateEnumColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md index 5a4eb4d9c1..46cb266032 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-float-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateFloatColumn( + tablesDBCreateFloatColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md index 3152fed2cc..530ac45773 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-index.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateIndex( + tablesDBCreateIndex( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md index caa429bc65..96e232a16d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-integer-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateIntegerColumn( + tablesDBCreateIntegerColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md index dcd754a3ab..5e48bbe805 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-ip-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateIpColumn( + tablesDBCreateIpColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md index 6c5727f60f..9ecd70ab55 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-relationship-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateRelationshipColumn( + tablesDBCreateRelationshipColumn( databaseId: "", tableId: "", relatedTableId: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md index 1806764e92..621e46a64e 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateRow( + tablesDBCreateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md index 6710016156..25dc9a367d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-rows.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateRows( + tablesDBCreateRows( databaseId: "", tableId: "", rows: [] diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md index ed39c788c6..453e692aae 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-string-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateStringColumn( + tablesDBCreateStringColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md index 235c0354d3..61203b9359 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-table.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateTable( + tablesDBCreateTable( databaseId: "", tableId: "", name: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md index 11068ab090..0fdbba66c2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create-url-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreateUrlColumn( + tablesDBCreateUrlColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md index 0be740f91e..5e3490229b 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/create.md @@ -1,5 +1,5 @@ mutation { - tablesDbCreate( + tablesDBCreate( databaseId: "", name: "", enabled: false diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md index 5b5344575d..398ec19901 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/decrement-row-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbDecrementRowColumn( + tablesDBDecrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md index 121e532adb..5e7011bc6a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbDeleteColumn( + tablesDBDeleteColumn( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md index 15bc0ed99a..3d58300005 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-index.md @@ -1,5 +1,5 @@ mutation { - tablesDbDeleteIndex( + tablesDBDeleteIndex( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md index 1f18962dc8..1a08b0f60d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbDeleteRow( + tablesDBDeleteRow( databaseId: "", tableId: "", rowId: "" diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md index 7447220f61..dfa7c13779 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-rows.md @@ -1,5 +1,5 @@ mutation { - tablesDbDeleteRows( + tablesDBDeleteRows( databaseId: "", tableId: "", queries: [] diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md index 2c65ae6996..9894ba4cc5 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete-table.md @@ -1,5 +1,5 @@ mutation { - tablesDbDeleteTable( + tablesDBDeleteTable( databaseId: "", tableId: "" ) { diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md index 84a0e5af03..4c6bd3e645 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/delete.md @@ -1,5 +1,5 @@ mutation { - tablesDbDelete( + tablesDBDelete( databaseId: "" ) { status diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md index 0ef9edc6c4..b7ff87f387 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/increment-row-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbIncrementRowColumn( + tablesDBIncrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md index 734d6951e0..11fb782eeb 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-boolean-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateBooleanColumn( + tablesDBUpdateBooleanColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md index 1922bfd94a..5e7cf0b761 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-datetime-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateDatetimeColumn( + tablesDBUpdateDatetimeColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md index b15877366d..16274b798d 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-email-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateEmailColumn( + tablesDBUpdateEmailColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md index 75096bbcfe..a14745bad9 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-enum-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateEnumColumn( + tablesDBUpdateEnumColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md index 063037cfff..6320721bd0 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-float-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateFloatColumn( + tablesDBUpdateFloatColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md index ddd0f55f13..57d7b27fec 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-integer-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateIntegerColumn( + tablesDBUpdateIntegerColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md index ee063d3252..c14f286718 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-ip-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateIpColumn( + tablesDBUpdateIpColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md index 308c2455be..95ebb86fdd 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-relationship-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateRelationshipColumn( + tablesDBUpdateRelationshipColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md index 8382bcf457..5a5b288ab8 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateRow( + tablesDBUpdateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md index 07a9e10d9a..4816748352 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-rows.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateRows( + tablesDBUpdateRows( databaseId: "", tableId: "", data: "{}", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md index 303d4e12fb..cbbebf632a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-string-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateStringColumn( + tablesDBUpdateStringColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md index 96a97e6838..b19a3603b2 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-table.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateTable( + tablesDBUpdateTable( databaseId: "", tableId: "", name: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md index 3b6595ab83..a823846347 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update-url-column.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdateUrlColumn( + tablesDBUpdateUrlColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md index 05901fa652..9c77c69735 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/update.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpdate( + tablesDBUpdate( databaseId: "", name: "", enabled: false diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md index f5ad299639..cc3b63de4a 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-row.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpsertRow( + tablesDBUpsertRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md index ec1f03ae0c..f4e01c0af7 100644 --- a/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-graphql/examples/tablesdb/upsert-rows.md @@ -1,5 +1,5 @@ mutation { - tablesDbUpsertRows( + tablesDBUpsertRows( databaseId: "", tableId: "", rows: [] diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md index 76976cecb1..c24a4d021b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-boolean-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createBooleanColumn( +tablesDB.createBooleanColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md index 5608fdaf1e..2f86b6e14f 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-datetime-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createDatetimeColumn( +tablesDB.createDatetimeColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md index 098a585833..9f3e329fd1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-email-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createEmailColumn( +tablesDB.createEmailColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md index 1a56df8ba4..afdc266d64 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-enum-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createEnumColumn( +tablesDB.createEnumColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md index af9a3e3520..7b434e7eee 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-float-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createFloatColumn( +tablesDB.createFloatColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md index b33ba2cadc..fc2259ffd0 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-index.md @@ -8,9 +8,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createIndex( +tablesDB.createIndex( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md index 313f53d9fa..66dd17f162 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-integer-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createIntegerColumn( +tablesDB.createIntegerColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md index d995ea85b9..c947200e42 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-ip-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createIpColumn( +tablesDB.createIpColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md index 8aa904fe81..7ae73a9c41 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-relationship-column.md @@ -8,9 +8,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createRelationshipColumn( +tablesDB.createRelationshipColumn( "", // databaseId "", // tableId "", // relatedTableId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md index 6a379cfd30..38f4f045dd 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-row.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createRow( +tablesDB.createRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md index 0e8a46ec7b..928d64ed5a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createRows( +tablesDB.createRows( "", // databaseId "", // tableId listOf(), // rows diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md index 6388663022..87485627ad 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-string-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createStringColumn( +tablesDB.createStringColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md index 1c546bf405..55efd6cc41 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-table.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createTable( +tablesDB.createTable( "", // databaseId "", // tableId "", // name diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md index 6e2caff925..59e14b30b8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create-url-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.createUrlColumn( +tablesDB.createUrlColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md index 76fac7a818..7ab45192a5 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/create.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.create( +tablesDB.create( "", // databaseId "", // name false, // enabled (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md index 9d75b65a5f..a01ddea9eb 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/decrement-row-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.decrementRowColumn( +tablesDB.decrementRowColumn( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md index 2dbfb45230..1fdab510fe 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.deleteColumn( +tablesDB.deleteColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md index ac045c1dd7..769ca5994d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-index.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.deleteIndex( +tablesDB.deleteIndex( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md index f0ce9ffcf1..3fb738c7ad 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-row.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.deleteRow( +tablesDB.deleteRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md index e6ebd6627b..78120a1c60 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.deleteRows( +tablesDB.deleteRows( "", // databaseId "", // tableId listOf(), // queries (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md index e7004659e5..962b66025d 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete-table.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.deleteTable( +tablesDB.deleteTable( "", // databaseId "", // tableId new CoroutineCallback<>((result, error) -> { diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md index 8f00c7f74e..a7e8194c68 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/delete.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.delete( +tablesDB.delete( "", // databaseId new CoroutineCallback<>((result, error) -> { if (error != null) { diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md index 4c64195677..4cec4f0d68 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.getColumn( +tablesDB.getColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md index 469d6aa7aa..77ebe68a9b 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-index.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.getIndex( +tablesDB.getIndex( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md index 5bc6a012fb..8c61ae480a 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-row.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.getRow( +tablesDB.getRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md index a03f008a85..12919607e9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get-table.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.getTable( +tablesDB.getTable( "", // databaseId "", // tableId new CoroutineCallback<>((result, error) -> { diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md index c5c0a6409a..bc88b9d793 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/get.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.get( +tablesDB.get( "", // databaseId new CoroutineCallback<>((result, error) -> { if (error != null) { diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md index 0f3cc0897b..41c68a8818 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/increment-row-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.incrementRowColumn( +tablesDB.incrementRowColumn( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md index 0d5dca61ba..3284834dc9 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-columns.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.listColumns( +tablesDB.listColumns( "", // databaseId "", // tableId listOf(), // queries (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md index 3450f1e724..ff0b945845 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-indexes.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.listIndexes( +tablesDB.listIndexes( "", // databaseId "", // tableId listOf(), // queries (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md index 9173767048..67e96fd0a4 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.listRows( +tablesDB.listRows( "", // databaseId "", // tableId listOf(), // queries (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md index 4b99430eb6..36cc47fde1 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list-tables.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.listTables( +tablesDB.listTables( "", // databaseId listOf(), // queries (optional) "", // search (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md index 3d69059766..f9455e5e29 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/list.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.list( +tablesDB.list( listOf(), // queries (optional) "", // search (optional) new CoroutineCallback<>((result, error) -> { diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md index bd93250e56..2d6846bc41 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-boolean-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateBooleanColumn( +tablesDB.updateBooleanColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md index ac81f43f40..1ad2b53ae2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-datetime-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateDatetimeColumn( +tablesDB.updateDatetimeColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md index a8f5e1341a..d8ecbe6931 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-email-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateEmailColumn( +tablesDB.updateEmailColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md index 24dd809a5d..f12b957346 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-enum-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateEnumColumn( +tablesDB.updateEnumColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md index 5875225e72..1546596d75 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-float-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateFloatColumn( +tablesDB.updateFloatColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md index ef5f329832..4ce82e8f65 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-integer-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateIntegerColumn( +tablesDB.updateIntegerColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md index c7010e4871..7790032de8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-ip-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateIpColumn( +tablesDB.updateIpColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md index f417691dda..43c1b5191e 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-relationship-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateRelationshipColumn( +tablesDB.updateRelationshipColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md index 9756aa13c3..8563de3064 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-row.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateRow( +tablesDB.updateRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md index e813de2f18..1f711466db 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateRows( +tablesDB.updateRows( "", // databaseId "", // tableId mapOf( "a" to "b" ), // data (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md index 115a2595bb..028cbde634 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-string-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateStringColumn( +tablesDB.updateStringColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md index 1bcd8a9ac7..f7f506c5d8 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-table.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateTable( +tablesDB.updateTable( "", // databaseId "", // tableId "", // name diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md index 0b15649a1e..cce6be5727 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update-url-column.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.updateUrlColumn( +tablesDB.updateUrlColumn( "", // databaseId "", // tableId "", // key diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md index 3c29c3cba1..de8a530052 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/update.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.update( +tablesDB.update( "", // databaseId "", // name false, // enabled (optional) diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md index 6eaf665fbb..d208f005c2 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-row.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setSession(""); // The user session to authenticate with -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.upsertRow( +tablesDB.upsertRow( "", // databaseId "", // tableId "", // rowId diff --git a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md index 4af4f61192..4467732374 100644 --- a/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-kotlin/java/tablesdb/upsert-rows.md @@ -7,9 +7,9 @@ Client client = new Client() .setProject("") // Your project ID .setKey(""); // Your secret API key -TablesDb tablesDb = new TablesDb(client); +TablesDb tablesDB = new TablesDb(client); -tablesDb.upsertRows( +tablesDB.upsertRows( "", // databaseId "", // tableId listOf(), // rows diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md index befa843860..6466b4a9d5 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-boolean-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createBooleanColumn( +val response = tablesDB.createBooleanColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md index 01130c8f65..339ad0116b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-datetime-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createDatetimeColumn( +val response = tablesDB.createDatetimeColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md index 9d47a820c5..95ec8c392f 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-email-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createEmailColumn( +val response = tablesDB.createEmailColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md index 49b7430803..0a79dad848 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-enum-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createEnumColumn( +val response = tablesDB.createEnumColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md index db2dac01f2..589911fc73 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-float-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createFloatColumn( +val response = tablesDB.createFloatColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md index a0da817eeb..d6b2eb9225 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-index.md @@ -8,9 +8,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createIndex( +val response = tablesDB.createIndex( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md index 6297cdfa63..bd22054c35 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-integer-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createIntegerColumn( +val response = tablesDB.createIntegerColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md index 67052c85f4..1169279219 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-ip-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createIpColumn( +val response = tablesDB.createIpColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md index c1f130493e..c07f99eedc 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-relationship-column.md @@ -8,9 +8,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createRelationshipColumn( +val response = tablesDB.createRelationshipColumn( databaseId = "", tableId = "", relatedTableId = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md index 217f2eeb12..15914ef32e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-row.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createRow( +val response = tablesDB.createRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md index 01a3554a2f..0e7627c38a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-rows.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createRows( +val response = tablesDB.createRows( databaseId = "", tableId = "", rows = listOf() diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md index 9061a1a022..cbd96668dd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-string-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createStringColumn( +val response = tablesDB.createStringColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md index f1603fbb38..e1f2d16d17 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-table.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createTable( +val response = tablesDB.createTable( databaseId = "", tableId = "", name = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md index 2c8f7af331..b73dd29958 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create-url-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.createUrlColumn( +val response = tablesDB.createUrlColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md index b8b58aae83..c9fcb5aa4e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/create.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.create( +val response = tablesDB.create( databaseId = "", name = "", enabled = false // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md index cab810ad96..fe98e8ac6e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/decrement-row-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.decrementRowColumn( +val response = tablesDB.decrementRowColumn( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md index ef3eaaebcf..d632c9f091 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.deleteColumn( +val response = tablesDB.deleteColumn( databaseId = "", tableId = "", key = "" diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md index 4bca972b94..0057c39c47 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-index.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.deleteIndex( +val response = tablesDB.deleteIndex( databaseId = "", tableId = "", key = "" diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md index 4e2eee31dc..652204753c 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-row.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.deleteRow( +val response = tablesDB.deleteRow( databaseId = "", tableId = "", rowId = "" diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md index c73332c104..8bfe75e0ab 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-rows.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.deleteRows( +val response = tablesDB.deleteRows( databaseId = "", tableId = "", queries = listOf() // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md index 87b20e58f3..94e9a44667 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete-table.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.deleteTable( +val response = tablesDB.deleteTable( databaseId = "", tableId = "" ) diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md index 3af192a0d3..9c121c9464 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/delete.md @@ -7,8 +7,8 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.delete( +val response = tablesDB.delete( databaseId = "" ) diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md index 78710b658c..c21b7c9a0e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.getColumn( +val response = tablesDB.getColumn( databaseId = "", tableId = "", key = "" diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md index 00c9285d77..7986abb13e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-index.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.getIndex( +val response = tablesDB.getIndex( databaseId = "", tableId = "", key = "" diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md index 98e92980ac..039997c4e1 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-row.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.getRow( +val response = tablesDB.getRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md index 6484d40823..4b279bcae0 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get-table.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.getTable( +val response = tablesDB.getTable( databaseId = "", tableId = "" ) diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md index 16a0739b01..9e951cfad8 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/get.md @@ -7,8 +7,8 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.get( +val response = tablesDB.get( databaseId = "" ) diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md index 44782ddb40..d88acda9bd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/increment-row-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.incrementRowColumn( +val response = tablesDB.incrementRowColumn( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md index e4b10d980b..8b8f393c89 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-columns.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.listColumns( +val response = tablesDB.listColumns( databaseId = "", tableId = "", queries = listOf() // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md index 231ddcc20b..23d8590d1b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-indexes.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.listIndexes( +val response = tablesDB.listIndexes( databaseId = "", tableId = "", queries = listOf() // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md index 735c425739..ebef0d72d2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-rows.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.listRows( +val response = tablesDB.listRows( databaseId = "", tableId = "", queries = listOf() // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md index cb7d2d5972..7d6f72b9a4 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list-tables.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.listTables( +val response = tablesDB.listTables( databaseId = "", queries = listOf(), // optional search = "" // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md index e23135d794..2c282dd50a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/list.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.list( +val response = tablesDB.list( queries = listOf(), // optional search = "" // optional ) diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md index 8090da0983..9a4e9d19aa 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-boolean-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateBooleanColumn( +val response = tablesDB.updateBooleanColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md index 14f38d5384..9ecfda822a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-datetime-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateDatetimeColumn( +val response = tablesDB.updateDatetimeColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md index 5214918280..664c75842e 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-email-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateEmailColumn( +val response = tablesDB.updateEmailColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md index 2e2be5ac53..ae868a86c2 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-enum-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateEnumColumn( +val response = tablesDB.updateEnumColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md index 9519eb329a..b179fe7d8a 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-float-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateFloatColumn( +val response = tablesDB.updateFloatColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md index db7e172bd7..7bcd352f22 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-integer-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateIntegerColumn( +val response = tablesDB.updateIntegerColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md index bed46752d0..5a75824b12 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-ip-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateIpColumn( +val response = tablesDB.updateIpColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md index 12a63607c5..f6660e5243 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-relationship-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateRelationshipColumn( +val response = tablesDB.updateRelationshipColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md index 51e801444b..6040f503cd 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-row.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateRow( +val response = tablesDB.updateRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md index 008665b6f4..0705cba6dc 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-rows.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateRows( +val response = tablesDB.updateRows( databaseId = "", tableId = "", data = mapOf( "a" to "b" ), // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md index 9890f9566b..aeaa5c1f54 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-string-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateStringColumn( +val response = tablesDB.updateStringColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md index a38286fd91..0f881f8beb 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-table.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateTable( +val response = tablesDB.updateTable( databaseId = "", tableId = "", name = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md index ac0dcd2ffc..92c60e2ad3 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update-url-column.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.updateUrlColumn( +val response = tablesDB.updateUrlColumn( databaseId = "", tableId = "", key = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md index 931750782b..a3239b847b 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/update.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.update( +val response = tablesDB.update( databaseId = "", name = "", enabled = false // optional diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md index 09286e405a..88b4a48416 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-row.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.upsertRow( +val response = tablesDB.upsertRow( databaseId = "", tableId = "", rowId = "", diff --git a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md index cd335841e0..872737d72d 100644 --- a/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-kotlin/kotlin/tablesdb/upsert-rows.md @@ -7,9 +7,9 @@ val client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -val tablesDb = TablesDb(client) +val tablesDB = TablesDb(client) -val response = tablesDb.upsertRows( +val response = tablesDB.upsertRows( databaseId = "", tableId = "", rows = listOf() diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md index f0625707b2..73afdbe7bb 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-boolean-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createBooleanColumn({ +const result = await tablesDB.createBooleanColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md index 7bd4fe87e9..0bca502686 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-datetime-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createDatetimeColumn({ +const result = await tablesDB.createDatetimeColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md index 0256fc1d9b..7c3c331f54 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-email-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createEmailColumn({ +const result = await tablesDB.createEmailColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md index c7f40cf6f0..c0cefb661a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-enum-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createEnumColumn({ +const result = await tablesDB.createEnumColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md index 5f94c1c3b9..2712e90986 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-float-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createFloatColumn({ +const result = await tablesDB.createFloatColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md index d261f706c2..a845a1ff78 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-index.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createIndex({ +const result = await tablesDB.createIndex({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md index 8178bf3a6c..78784908c1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-integer-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createIntegerColumn({ +const result = await tablesDB.createIntegerColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md index c8eff98a06..9b6501fef1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-ip-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createIpColumn({ +const result = await tablesDB.createIpColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md index b1d439be50..65b6e684cc 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-relationship-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createRelationshipColumn({ +const result = await tablesDB.createRelationshipColumn({ databaseId: '', tableId: '', relatedTableId: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md index be5ac27745..6b4f6612a4 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-row.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createRow({ +const result = await tablesDB.createRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md index a41f591d56..f929495385 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-rows.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createRows({ +const result = await tablesDB.createRows({ databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md index a33c4389b3..5ed0952e6d 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-string-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createStringColumn({ +const result = await tablesDB.createStringColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md index 22758d2029..f84984dfaf 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-table.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createTable({ +const result = await tablesDB.createTable({ databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md index 2aaf12825e..3ce201b846 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create-url-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.createUrlColumn({ +const result = await tablesDB.createUrlColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md index ef780a4fd6..d5ca903039 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/create.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.create({ +const result = await tablesDB.create({ databaseId: '', name: '', enabled: false diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md index d87a3d21e2..8b0bd92efa 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/decrement-row-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.decrementRowColumn({ +const result = await tablesDB.decrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md index 5b79f8e993..8e11795dc6 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.deleteColumn({ +const result = await tablesDB.deleteColumn({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md index 981c0e90a5..6e5ddab54c 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-index.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.deleteIndex({ +const result = await tablesDB.deleteIndex({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md index 251e84d545..7a8be24d58 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-row.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.deleteRow({ +const result = await tablesDB.deleteRow({ databaseId: '', tableId: '', rowId: '' diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md index 7312886f6d..ad5a8802d2 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-rows.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.deleteRows({ +const result = await tablesDB.deleteRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md index 3498977ca1..36f8153246 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete-table.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.deleteTable({ +const result = await tablesDB.deleteTable({ databaseId: '', tableId: '' }); diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md index fe3c70f8fa..910b0d7d61 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/delete.md @@ -5,8 +5,8 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.delete({ +const result = await tablesDB.delete({ databaseId: '' }); diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md index afb568293f..0d7492b8ca 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.getColumn({ +const result = await tablesDB.getColumn({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md index 27ecca9e42..686531853a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-index.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.getIndex({ +const result = await tablesDB.getIndex({ databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md index 83dd9fdd7a..7b64b7fa2b 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-row.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.getRow({ +const result = await tablesDB.getRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md index 12aa91dc58..5bf3ab9e43 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get-table.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.getTable({ +const result = await tablesDB.getTable({ databaseId: '', tableId: '' }); diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md index 35b732ccb5..4940ca8034 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/get.md @@ -5,8 +5,8 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.get({ +const result = await tablesDB.get({ databaseId: '' }); diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md index bce48f90e6..9c995e4a44 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/increment-row-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.incrementRowColumn({ +const result = await tablesDB.incrementRowColumn({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md index d0d584df05..37d8c8d066 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-columns.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.listColumns({ +const result = await tablesDB.listColumns({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md index cfbf121f84..02a1ec2611 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-indexes.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.listIndexes({ +const result = await tablesDB.listIndexes({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md index fa5cc43061..9d775bcdab 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-rows.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.listRows({ +const result = await tablesDB.listRows({ databaseId: '', tableId: '', queries: [] diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md index 2575318301..f7549ffe46 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list-tables.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.listTables({ +const result = await tablesDB.listTables({ databaseId: '', queries: [], search: '' diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md index db2033251f..a39515b114 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/list.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.list({ +const result = await tablesDB.list({ queries: [], search: '' }); diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md index 26c6b359ac..aad425061a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-boolean-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateBooleanColumn({ +const result = await tablesDB.updateBooleanColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md index 2917a4f8ce..c7a53661de 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-datetime-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateDatetimeColumn({ +const result = await tablesDB.updateDatetimeColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md index 452ddc1b83..818ed49b6e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-email-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateEmailColumn({ +const result = await tablesDB.updateEmailColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md index 9964c243db..b84deffd84 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-enum-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateEnumColumn({ +const result = await tablesDB.updateEnumColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md index e717e0e42c..bb008a965a 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-float-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateFloatColumn({ +const result = await tablesDB.updateFloatColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md index 97b05ef564..c0ce0a24e3 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-integer-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateIntegerColumn({ +const result = await tablesDB.updateIntegerColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md index a5b6a173fc..9a5c8bfc08 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-ip-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateIpColumn({ +const result = await tablesDB.updateIpColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md index a67b8c4f2a..ba73767f31 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-relationship-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateRelationshipColumn({ +const result = await tablesDB.updateRelationshipColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md index c2e608c275..58863d68b8 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-row.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateRow({ +const result = await tablesDB.updateRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md index e756e57646..ade4de49fa 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-rows.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateRows({ +const result = await tablesDB.updateRows({ databaseId: '', tableId: '', data: {}, diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md index 648e1d8116..6e7de46061 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-string-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateStringColumn({ +const result = await tablesDB.updateStringColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md index 04577b801c..aa11cd890e 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-table.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateTable({ +const result = await tablesDB.updateTable({ databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md index b1d976ee88..3f40a47843 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update-url-column.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.updateUrlColumn({ +const result = await tablesDB.updateUrlColumn({ databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md index 0e60bb8194..1946a0b890 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/update.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.update({ +const result = await tablesDB.update({ databaseId: '', name: '', enabled: false diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md index 089b89c9c5..7c826b98f1 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-row.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setSession(''); // The user session to authenticate with -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.upsertRow({ +const result = await tablesDB.upsertRow({ databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md index 79f2968499..598657e049 100644 --- a/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-nodejs/examples/tablesdb/upsert-rows.md @@ -5,9 +5,9 @@ const client = new sdk.Client() .setProject('') // Your project ID .setKey(''); // Your secret API key -const tablesDb = new sdk.TablesDb(client); +const tablesDB = new sdk.TablesDb(client); -const result = await tablesDb.upsertRows({ +const result = await tablesDB.upsertRows({ databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md index 5a609b6bdb..bcf811dcce 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-boolean-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createBooleanColumn( +$result = $tablesDB->createBooleanColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md index 9ac6470e73..9c0b99e3c5 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-datetime-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createDatetimeColumn( +$result = $tablesDB->createDatetimeColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md index c0102f280c..5237d75ff0 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-email-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createEmailColumn( +$result = $tablesDB->createEmailColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md index eb299bb70a..2e318f2965 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-enum-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createEnumColumn( +$result = $tablesDB->createEnumColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md index 3fad52675c..b2718f9e8a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-float-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createFloatColumn( +$result = $tablesDB->createFloatColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md index ecb9cf8470..671d0b9913 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-index.md @@ -9,9 +9,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createIndex( +$result = $tablesDB->createIndex( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md index f6ef4b29f4..845ef33dda 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-integer-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createIntegerColumn( +$result = $tablesDB->createIntegerColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md index 3b993a145b..f755d7f674 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-ip-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createIpColumn( +$result = $tablesDB->createIpColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md index 713541c3c4..fe79c9bb0b 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-relationship-column.md @@ -9,9 +9,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createRelationshipColumn( +$result = $tablesDB->createRelationshipColumn( databaseId: '', tableId: '', relatedTableId: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md index bfdd395c42..47cbd8460b 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-row.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createRow( +$result = $tablesDB->createRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md index 8b5868a1ee..ab3a3132f7 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-rows.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createRows( +$result = $tablesDB->createRows( databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md index 8534713a5a..4c666af8c7 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-string-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createStringColumn( +$result = $tablesDB->createStringColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md index d72fa62fe1..ada0ba9287 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-table.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createTable( +$result = $tablesDB->createTable( databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md index e180b08d6c..6ab42ca65c 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create-url-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->createUrlColumn( +$result = $tablesDB->createUrlColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/create.md b/docs/examples/1.8.x/server-php/examples/tablesdb/create.md index 2c82e73b67..a11ea05cbd 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/create.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->create( +$result = $tablesDB->create( databaseId: '', name: '', enabled: false // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md index c4c7c633c7..da58e364c9 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/decrement-row-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->decrementRowColumn( +$result = $tablesDB->decrementRowColumn( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md index 84f665c59a..c1780eab52 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->deleteColumn( +$result = $tablesDB->deleteColumn( databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md index f979e897ca..bf9892af1f 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-index.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->deleteIndex( +$result = $tablesDB->deleteIndex( databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md index f71cd5825c..efc8ad43bc 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-row.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->deleteRow( +$result = $tablesDB->deleteRow( databaseId: '', tableId: '', rowId: '' diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md index 81056edcf6..10bafa7f14 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-rows.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->deleteRows( +$result = $tablesDB->deleteRows( databaseId: '', tableId: '', queries: [] // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md index 3df53e52d5..19f3affc24 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete-table.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->deleteTable( +$result = $tablesDB->deleteTable( databaseId: '', tableId: '' ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md index 10131084a9..4fcb6a40bb 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/delete.md @@ -8,8 +8,8 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->delete( +$result = $tablesDB->delete( databaseId: '' ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md index 9a3af22ae2..7bd8f75d54 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->getColumn( +$result = $tablesDB->getColumn( databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md index 9847d6ae06..006da829b1 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-index.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->getIndex( +$result = $tablesDB->getIndex( databaseId: '', tableId: '', key: '' diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md index 40487b693a..db4c6464cc 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-row.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->getRow( +$result = $tablesDB->getRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md index 6e85066509..8fc5b580d4 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get-table.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->getTable( +$result = $tablesDB->getTable( databaseId: '', tableId: '' ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/get.md b/docs/examples/1.8.x/server-php/examples/tablesdb/get.md index 8e79508ecf..5432f3e592 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/get.md @@ -8,8 +8,8 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->get( +$result = $tablesDB->get( databaseId: '' ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md index bf986b6d2b..92b883fc71 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/increment-row-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->incrementRowColumn( +$result = $tablesDB->incrementRowColumn( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md index 4e3631ea8e..6df523260c 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-columns.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->listColumns( +$result = $tablesDB->listColumns( databaseId: '', tableId: '', queries: [] // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md index 5a777e9a74..0f53d8a711 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-indexes.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->listIndexes( +$result = $tablesDB->listIndexes( databaseId: '', tableId: '', queries: [] // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md index 7674a4b8ad..7cdc47cba7 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-rows.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->listRows( +$result = $tablesDB->listRows( databaseId: '', tableId: '', queries: [] // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md index a46fdafa81..ca141f0f09 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list-tables.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->listTables( +$result = $tablesDB->listTables( databaseId: '', queries: [], // optional search: '' // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/list.md b/docs/examples/1.8.x/server-php/examples/tablesdb/list.md index d03a68b700..ea320a05e4 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/list.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->list( +$result = $tablesDB->list( queries: [], // optional search: '' // optional ); \ No newline at end of file diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md index ed043ae425..a219130bc8 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-boolean-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateBooleanColumn( +$result = $tablesDB->updateBooleanColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md index 3b7aa77f11..f3bc01932a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-datetime-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateDatetimeColumn( +$result = $tablesDB->updateDatetimeColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md index 9833589123..892d8b253c 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-email-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateEmailColumn( +$result = $tablesDB->updateEmailColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md index dbbadbaea1..9758c9e152 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-enum-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateEnumColumn( +$result = $tablesDB->updateEnumColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md index 2ac1708962..861301c25f 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-float-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateFloatColumn( +$result = $tablesDB->updateFloatColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md index b81911f709..7bd361582a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-integer-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateIntegerColumn( +$result = $tablesDB->updateIntegerColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md index 2eddf86a77..08542a9741 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-ip-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateIpColumn( +$result = $tablesDB->updateIpColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md index c36e79acd9..db04a62542 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-relationship-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateRelationshipColumn( +$result = $tablesDB->updateRelationshipColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md index c6df2e0deb..8edfaea0f5 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-row.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateRow( +$result = $tablesDB->updateRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md index 83497276fe..4fa6d6e25a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-rows.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateRows( +$result = $tablesDB->updateRows( databaseId: '', tableId: '', data: [], // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md index 457c4baaa1..956f57c8a9 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-string-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateStringColumn( +$result = $tablesDB->updateStringColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md index 6cd7f0f051..0fd306a1fd 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-table.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateTable( +$result = $tablesDB->updateTable( databaseId: '', tableId: '', name: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md index 43a3e45522..8379a2441a 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update-url-column.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->updateUrlColumn( +$result = $tablesDB->updateUrlColumn( databaseId: '', tableId: '', key: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/update.md b/docs/examples/1.8.x/server-php/examples/tablesdb/update.md index fe6764ecff..6b4039f880 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/update.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->update( +$result = $tablesDB->update( databaseId: '', name: '', enabled: false // optional diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md index db02dc2aa5..271f02d516 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-row.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setSession(''); // The user session to authenticate with -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->upsertRow( +$result = $tablesDB->upsertRow( databaseId: '', tableId: '', rowId: '', diff --git a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md index 77d321a6ae..524fe7cf38 100644 --- a/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-php/examples/tablesdb/upsert-rows.md @@ -8,9 +8,9 @@ $client = (new Client()) ->setProject('') // Your project ID ->setKey(''); // Your secret API key -$tablesDb = new TablesDb($client); +$tablesDB = new TablesDb($client); -$result = $tablesDb->upsertRows( +$result = $tablesDB->upsertRows( databaseId: '', tableId: '', rows: [] diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md index 2e25e1bdab..170fa78a6e 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-boolean-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnBoolean = try await tablesDb.createBooleanColumn( +let columnBoolean = try await tablesDB.createBooleanColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md index b60b1dacb2..b93d982dea 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-datetime-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnDatetime = try await tablesDb.createDatetimeColumn( +let columnDatetime = try await tablesDB.createDatetimeColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md index 859fce5667..96dade4d15 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-email-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnEmail = try await tablesDb.createEmailColumn( +let columnEmail = try await tablesDB.createEmailColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md index d19f7244cc..47df48eef4 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-enum-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnEnum = try await tablesDb.createEnumColumn( +let columnEnum = try await tablesDB.createEnumColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md index 5a2aee019e..657038ff78 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-float-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnFloat = try await tablesDb.createFloatColumn( +let columnFloat = try await tablesDB.createFloatColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md index f01174c3e1..8a46e58f40 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-index.md @@ -6,9 +6,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnIndex = try await tablesDb.createIndex( +let columnIndex = try await tablesDB.createIndex( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md index 513161722a..cd59abc9c8 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-integer-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnInteger = try await tablesDb.createIntegerColumn( +let columnInteger = try await tablesDB.createIntegerColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md index 2388c895a5..5608584079 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-ip-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnIp = try await tablesDb.createIpColumn( +let columnIp = try await tablesDB.createIpColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md index 3dc765a2f3..6eb4225c91 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-relationship-column.md @@ -6,9 +6,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnRelationship = try await tablesDb.createRelationshipColumn( +let columnRelationship = try await tablesDB.createRelationshipColumn( databaseId: "", tableId: "", relatedTableId: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md index 601bd325b3..8110a11db0 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-row.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.createRow( +let row = try await tablesDB.createRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md index e685ae7d1d..06be899164 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-rows.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let rowList = try await tablesDb.createRows( +let rowList = try await tablesDB.createRows( databaseId: "", tableId: "", rows: [] diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md index c1f308237b..20c63e6837 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-string-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnString = try await tablesDb.createStringColumn( +let columnString = try await tablesDB.createStringColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md index 631afb61aa..b3e5d5cb46 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-table.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let table = try await tablesDb.createTable( +let table = try await tablesDB.createTable( databaseId: "", tableId: "", name: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md index b2e991760e..8d4b33cae9 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create-url-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnUrl = try await tablesDb.createUrlColumn( +let columnUrl = try await tablesDB.createUrlColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md index 2586404fcb..39c290d8f7 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/create.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let database = try await tablesDb.create( +let database = try await tablesDB.create( databaseId: "", name: "", enabled: false // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md index b7b8ae5d3f..fde6f82397 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/decrement-row-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.decrementRowColumn( +let row = try await tablesDB.decrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md index 781b1097cf..431ec695ae 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let result = try await tablesDb.deleteColumn( +let result = try await tablesDB.deleteColumn( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md index 8fb2386770..9fe64a982a 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-index.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let result = try await tablesDb.deleteIndex( +let result = try await tablesDB.deleteIndex( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md index e533aa3af7..2011cbdb12 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-row.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let result = try await tablesDb.deleteRow( +let result = try await tablesDB.deleteRow( databaseId: "", tableId: "", rowId: "" diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md index 700736975d..de5d6c44ef 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-rows.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let rowList = try await tablesDb.deleteRows( +let rowList = try await tablesDB.deleteRows( databaseId: "", tableId: "", queries: [] // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md index 2d2df8f185..88548f1bce 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete-table.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let result = try await tablesDb.deleteTable( +let result = try await tablesDB.deleteTable( databaseId: "", tableId: "" ) diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md index 0c26a0d3c5..90f86aad86 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/delete.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let result = try await tablesDb.delete( +let result = try await tablesDB.delete( databaseId: "" ) diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md index 21fe88cf50..5778ed5587 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let result = try await tablesDb.getColumn( +let result = try await tablesDB.getColumn( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md index 2022d1e1ae..81d283a010 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-index.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnIndex = try await tablesDb.getIndex( +let columnIndex = try await tablesDB.getIndex( databaseId: "", tableId: "", key: "" diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md index 45961f86e9..e618909e23 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-row.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.getRow( +let row = try await tablesDB.getRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md index 391adcd098..35f032c3d0 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get-table.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let table = try await tablesDb.getTable( +let table = try await tablesDB.getTable( databaseId: "", tableId: "" ) diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md index 2442a7d086..3b8398ba66 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/get.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let database = try await tablesDb.get( +let database = try await tablesDB.get( databaseId: "" ) diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md index 63054fa55b..b8c02138ab 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/increment-row-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.incrementRowColumn( +let row = try await tablesDB.incrementRowColumn( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md index 33010e684b..862da16c43 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-columns.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnList = try await tablesDb.listColumns( +let columnList = try await tablesDB.listColumns( databaseId: "", tableId: "", queries: [] // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md index 621ffa1e42..e490623b88 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-indexes.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnIndexList = try await tablesDb.listIndexes( +let columnIndexList = try await tablesDB.listIndexes( databaseId: "", tableId: "", queries: [] // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md index de9b682456..7db68865c2 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-rows.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let rowList = try await tablesDb.listRows( +let rowList = try await tablesDB.listRows( databaseId: "", tableId: "", queries: [] // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md index 8fe8d56b6b..f648c7b46e 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list-tables.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let tableList = try await tablesDb.listTables( +let tableList = try await tablesDB.listTables( databaseId: "", queries: [], // optional search: "" // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md index cc10b51d17..b6b3943049 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/list.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let databaseList = try await tablesDb.list( +let databaseList = try await tablesDB.list( queries: [], // optional search: "" // optional ) diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md index c3d7e07408..a53ad804a6 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-boolean-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnBoolean = try await tablesDb.updateBooleanColumn( +let columnBoolean = try await tablesDB.updateBooleanColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md index a2d71f4232..39f85e4923 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-datetime-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnDatetime = try await tablesDb.updateDatetimeColumn( +let columnDatetime = try await tablesDB.updateDatetimeColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md index d59c83391b..f42925e834 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-email-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnEmail = try await tablesDb.updateEmailColumn( +let columnEmail = try await tablesDB.updateEmailColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md index 5f1b05e411..091e6d3931 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-enum-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnEnum = try await tablesDb.updateEnumColumn( +let columnEnum = try await tablesDB.updateEnumColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md index b2459e582d..2114ca4e55 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-float-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnFloat = try await tablesDb.updateFloatColumn( +let columnFloat = try await tablesDB.updateFloatColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md index 091664ae52..bca78837ce 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-integer-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnInteger = try await tablesDb.updateIntegerColumn( +let columnInteger = try await tablesDB.updateIntegerColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md index 87f2915ede..4f95f0ba8b 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-ip-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnIp = try await tablesDb.updateIpColumn( +let columnIp = try await tablesDB.updateIpColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md index 27e74605cc..5133f5220a 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-relationship-column.md @@ -6,9 +6,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnRelationship = try await tablesDb.updateRelationshipColumn( +let columnRelationship = try await tablesDB.updateRelationshipColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md index 6e7bd35b9f..68b0c5b5e0 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-row.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.updateRow( +let row = try await tablesDB.updateRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md index 4d331694b1..d9e901af25 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-rows.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let rowList = try await tablesDb.updateRows( +let rowList = try await tablesDB.updateRows( databaseId: "", tableId: "", data: [:], // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md index defa48edee..0c62214540 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-string-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnString = try await tablesDb.updateStringColumn( +let columnString = try await tablesDB.updateStringColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md index 348353590a..934eab37f9 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-table.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let table = try await tablesDb.updateTable( +let table = try await tablesDB.updateTable( databaseId: "", tableId: "", name: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md index e1fe5ce2e8..e92c14699b 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update-url-column.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let columnUrl = try await tablesDb.updateUrlColumn( +let columnUrl = try await tablesDB.updateUrlColumn( databaseId: "", tableId: "", key: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md index 041f026d10..f2e4ce66a2 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/update.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let database = try await tablesDb.update( +let database = try await tablesDB.update( databaseId: "", name: "", enabled: false // optional diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md index 6b1ddaf689..e82ac5553a 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-row.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setSession("") // The user session to authenticate with -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let row = try await tablesDb.upsertRow( +let row = try await tablesDB.upsertRow( databaseId: "", tableId: "", rowId: "", diff --git a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md index 62737e6e9f..d320bd0251 100644 --- a/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md +++ b/docs/examples/1.8.x/server-swift/examples/tablesdb/upsert-rows.md @@ -5,9 +5,9 @@ let client = Client() .setProject("") // Your project ID .setKey("") // Your secret API key -let tablesDb = TablesDb(client) +let tablesDB = TablesDb(client) -let rowList = try await tablesDb.upsertRows( +let rowList = try await tablesDB.upsertRows( databaseId: "", tableId: "", rows: [] diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Action.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Action.php index 441743225a..0939376c49 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Action.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Action.php @@ -63,7 +63,7 @@ abstract class Action extends UtopiaAction */ protected function getSdkNamespace(): string { - return $this->isCollectionsAPI() ? 'databases' : 'tablesDb'; + return $this->isCollectionsAPI() ? 'databases' : 'tablesDB'; } /** diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Action.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Action.php index de45522a43..bb536bc498 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Action.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Action.php @@ -76,7 +76,7 @@ abstract class Action extends UtopiaAction */ protected function getSdkNamespace(): string { - return $this->isCollectionsAPI() ? 'databases' : 'tablesDb'; + return $this->isCollectionsAPI() ? 'databases' : 'tablesDB'; } /** diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Create.php index d1f213c508..6c4be252a0 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Create.php @@ -55,7 +55,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createBooleanColumn', + replaceWith: 'tablesDB.createBooleanColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Update.php index ad17f12f7c..752e8c6c59 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Boolean/Update.php @@ -56,7 +56,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateBooleanColumn', + replaceWith: 'tablesDB.updateBooleanColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Create.php index fdc6a8eb63..5d5b8fe4bf 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Create.php @@ -56,7 +56,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createDatetimeColumn', + replaceWith: 'tablesDB.createDatetimeColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Update.php index ba7ea9c3c7..e1d1d40f75 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Datetime/Update.php @@ -57,7 +57,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateDatetimeColumn', + replaceWith: 'tablesDB.updateDatetimeColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Delete.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Delete.php index 3c7b532670..8dec7530bf 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Delete.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Delete.php @@ -57,7 +57,7 @@ class Delete extends Action contentType: ContentType::NONE, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.deleteColumn', + replaceWith: 'tablesDB.deleteColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Create.php index 3ad91b6144..bc58ca10af 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Create.php @@ -56,7 +56,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createEmailColumn', + replaceWith: 'tablesDB.createEmailColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Update.php index f196b08cae..53300725d7 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Email/Update.php @@ -57,7 +57,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateEmailColumn', + replaceWith: 'tablesDB.updateEmailColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Create.php index c78d710ee6..cd22e87d1c 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Create.php @@ -58,7 +58,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createEnumColumn', + replaceWith: 'tablesDB.createEnumColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Update.php index 8c26c970a9..951e43effe 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Enum/Update.php @@ -58,7 +58,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateEnumColumn', + replaceWith: 'tablesDB.updateEnumColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Create.php index c7619ca854..2a8253c22c 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Create.php @@ -58,7 +58,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createFloatColumn', + replaceWith: 'tablesDB.createFloatColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Update.php index 2995ff6346..327a766cee 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Float/Update.php @@ -57,7 +57,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateFloatColumn', + replaceWith: 'tablesDB.updateFloatColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Get.php index 89be3bcd8b..28ee584778 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Get.php @@ -60,7 +60,7 @@ class Get extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.getColumn', + replaceWith: 'tablesDB.getColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Create.php index 2488d64a55..aa699b4a49 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Create.php @@ -56,7 +56,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createIpColumn', + replaceWith: 'tablesDB.createIpColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Update.php index ece9020bf5..f61cf21732 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/IP/Update.php @@ -57,7 +57,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateIpColumn', + replaceWith: 'tablesDB.updateIpColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Create.php index d8b192aff8..81a11b0471 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Create.php @@ -58,7 +58,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createIntegerColumn', + replaceWith: 'tablesDB.createIntegerColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Update.php index c2cd40e8a9..11cfb24943 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Integer/Update.php @@ -57,7 +57,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateIntegerColumn', + replaceWith: 'tablesDB.updateIntegerColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Create.php index 425f82bd9a..a062816329 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Create.php @@ -58,7 +58,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createRelationshipColumn', + replaceWith: 'tablesDB.createRelationshipColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Update.php index c8d6fc48b1..c19c4ff046 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/Relationship/Update.php @@ -55,7 +55,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateRelationshipColumn', + replaceWith: 'tablesDB.updateRelationshipColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Create.php index 512dd2d886..592aa8ee93 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Create.php @@ -60,7 +60,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createStringColumn', + replaceWith: 'tablesDB.createStringColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Update.php index 9755b48c16..03efac1430 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/String/Update.php @@ -59,7 +59,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateStringColumn', + replaceWith: 'tablesDB.updateStringColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Create.php index 17bc2c6a1d..39153b3cb8 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Create.php @@ -56,7 +56,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createUrlColumn', + replaceWith: 'tablesDB.createUrlColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Update.php index 42106cd40e..7ace4d0683 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/URL/Update.php @@ -57,7 +57,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateUrlColumn', + replaceWith: 'tablesDB.updateUrlColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/XList.php index 27243291c4..1852290f76 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Attributes/XList.php @@ -54,7 +54,7 @@ class XList extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listColumns', + replaceWith: 'tablesDB.listColumns', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Create.php index 3f94b393cb..e06dae89bb 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Create.php @@ -65,7 +65,7 @@ class Create extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createTable', + replaceWith: 'tablesDB.createTable', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Delete.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Delete.php index b0d2c905cc..d20570fb43 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Delete.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Delete.php @@ -55,7 +55,7 @@ class Delete extends Action contentType: ContentType::NONE, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.deleteTable', + replaceWith: 'tablesDB.deleteTable', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Action.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Action.php index f0185b336b..ca5dc91cb4 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Action.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Action.php @@ -77,7 +77,7 @@ abstract class Action extends AppwriteAction */ protected function getSdkNamespace(): string { - return $this->isCollectionsAPI() ? 'databases' : 'tablesDb'; + return $this->isCollectionsAPI() ? 'databases' : 'tablesDB'; } /** diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Decrement.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Decrement.php index 49e06952fd..289dee5a8d 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Decrement.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Decrement.php @@ -66,7 +66,7 @@ class Decrement extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.decrementRowColumn', + replaceWith: 'tablesDB.decrementRowColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Increment.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Increment.php index 27f22d56cf..fe8bd2d225 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Increment.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Attribute/Increment.php @@ -66,7 +66,7 @@ class Increment extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.incrementRowColumn', + replaceWith: 'tablesDB.incrementRowColumn', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Delete.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Delete.php index a4f5255e35..fc4e2a8a91 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Delete.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Delete.php @@ -64,7 +64,7 @@ class Delete extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.deleteRows', + replaceWith: 'tablesDB.deleteRows', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Update.php index af315b4f7f..b5a4750c4f 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Update.php @@ -67,7 +67,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateRows', + replaceWith: 'tablesDB.updateRows', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Upsert.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Upsert.php index 2a24085056..d7d6e1abbe 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Upsert.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Bulk/Upsert.php @@ -64,7 +64,7 @@ class Upsert extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.upsertRows', + replaceWith: 'tablesDB.upsertRows', ), ) ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Create.php index 002cc90554..f2d678f411 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Create.php @@ -85,7 +85,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createRow', + replaceWith: 'tablesDB.createRow', ), ), new Method( @@ -109,7 +109,7 @@ class Create extends Action ], deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createRows', + replaceWith: 'tablesDB.createRows', ), ) ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Delete.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Delete.php index a76e272ee4..4ae1624f73 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Delete.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Delete.php @@ -65,7 +65,7 @@ class Delete extends Action contentType: ContentType::NONE, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.deleteRow', + replaceWith: 'tablesDB.deleteRow', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Get.php index 994cf3e375..7f621fb33a 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Get.php @@ -56,7 +56,7 @@ class Get extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.getRow', + replaceWith: 'tablesDB.getRow', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Logs/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Logs/XList.php index 2298147182..93c8639520 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Logs/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Logs/XList.php @@ -62,7 +62,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listRowLogs', + replaceWith: 'tablesDB.listRowLogs', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Update.php index 34b939bda3..4f5055abc4 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Update.php @@ -69,7 +69,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateRow', + replaceWith: 'tablesDB.updateRow', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Upsert.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Upsert.php index 05362cd996..b5a2bf9b74 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Upsert.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/Upsert.php @@ -71,7 +71,7 @@ class Upsert extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.upsertRow', + replaceWith: 'tablesDB.upsertRow', ), ), ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/XList.php index f2574af21c..57ca550c18 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Documents/XList.php @@ -59,7 +59,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listRows', + replaceWith: 'tablesDB.listRows', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Get.php index a66419905a..af4b6bf733 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Get.php @@ -50,7 +50,7 @@ class Get extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.getTable', + replaceWith: 'tablesDB.getTable', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Action.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Action.php index 76663e409f..f136fdd29b 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Action.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Action.php @@ -62,7 +62,7 @@ abstract class Action extends UtopiaAction */ final protected function getSdkNamespace(): string { - return $this->isCollectionsAPI() ? 'databases' : 'tablesDb'; + return $this->isCollectionsAPI() ? 'databases' : 'tablesDB'; } /** diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Create.php index ead36eaeac..04baa093d8 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Create.php @@ -65,7 +65,7 @@ class Create extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createIndex', + replaceWith: 'tablesDB.createIndex', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Delete.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Delete.php index 05ad863ef8..9ba4c98046 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Delete.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Delete.php @@ -60,7 +60,7 @@ class Delete extends Action contentType: ContentType::NONE, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.deleteIndex', + replaceWith: 'tablesDB.deleteIndex', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Get.php index 4dfbbe146c..9e05cc79c7 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/Get.php @@ -51,7 +51,7 @@ class Get extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.getIndex', + replaceWith: 'tablesDB.getIndex', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/XList.php index 6c1e4b1535..c0aa9457e7 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Indexes/XList.php @@ -56,7 +56,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listIndexes', + replaceWith: 'tablesDB.listIndexes', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Logs/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Logs/XList.php index f634b97c09..1309793234 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Logs/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Logs/XList.php @@ -62,7 +62,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listTableLogs', + replaceWith: 'tablesDB.listTableLogs', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Update.php index 54fddcf3b7..5bf740d7d1 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Update.php @@ -58,7 +58,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.updateTable', + replaceWith: 'tablesDB.updateTable', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Usage/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Usage/Get.php index 9dd9858557..9cf7b85267 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Usage/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/Usage/Get.php @@ -55,7 +55,7 @@ class Get extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.getTableUsage', + replaceWith: 'tablesDB.getTableUsage', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/XList.php index 1291142816..f2f7a2233a 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Collections/XList.php @@ -57,7 +57,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listTables', + replaceWith: 'tablesDB.listTables', ), )) ->param('databaseId', '', new UID(), 'Database ID.') diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Create.php index f3f0ebfec0..163e39b7ba 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Create.php @@ -58,7 +58,7 @@ class Create extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.createDatabase', + replaceWith: 'tablesDB.createDatabase', ) ) ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Delete.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Delete.php index bd0f52d3cd..7be96fa883 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Delete.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Delete.php @@ -51,7 +51,7 @@ class Delete extends Action contentType: ContentType::NONE, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.delete', + replaceWith: 'tablesDB.delete', ) ), ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Get.php index d910fc20de..c4626c804c 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Get.php @@ -46,7 +46,7 @@ class Get extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.get', + replaceWith: 'tablesDB.get', ) ), ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Logs/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Logs/XList.php index ed34257537..fd6ae05335 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Logs/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Logs/XList.php @@ -58,7 +58,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listDatabaseLogs', + replaceWith: 'tablesDB.listDatabaseLogs', ) ), ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Update.php index 95268cc2e4..d3057c1ca5 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Update.php @@ -52,7 +52,7 @@ class Update extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.update', + replaceWith: 'tablesDB.update', ) ), ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/Get.php index 69b1fb088d..4770d727a0 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/Get.php @@ -51,7 +51,7 @@ class Get extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.getUsage' + replaceWith: 'tablesDB.getUsage' ) ) ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/XList.php index bf8a53677b..c13149cfc7 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/Usage/XList.php @@ -49,7 +49,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.listUsage' + replaceWith: 'tablesDB.listUsage' ) ), ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/Databases/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/Databases/XList.php index 35ea455afc..d7c6245e5c 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/Databases/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/Databases/XList.php @@ -52,7 +52,7 @@ class XList extends Action contentType: ContentType::JSON, deprecated: new Deprecated( since: '1.8.0', - replaceWith: 'tablesDb.list', + replaceWith: 'tablesDB.list', ) ), ]) diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Create.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Create.php index 84e5ddd8dd..8993f00368 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Create.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Create.php @@ -33,7 +33,7 @@ class Create extends DatabaseCreate ->label('audits.event', 'database.create') ->label('audits.resource', 'database/{response.$id}') ->label('sdk', new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: 'tablesdb', name: 'create', description: '/docs/references/tablesdb/create.md', diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Delete.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Delete.php index 9c4d087d48..0a6cb3cd87 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Delete.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Delete.php @@ -31,7 +31,7 @@ class Delete extends DatabaseDelete ->label('audits.event', 'database.delete') ->label('audits.resource', 'database/{request.databaseId}') ->label('sdk', new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: 'tablesdb', name: 'delete', description: '/docs/references/tablesdb/delete.md', diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Get.php index 95c1f25ad5..9690f25370 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Get.php @@ -28,7 +28,7 @@ class Get extends DatabaseGet ->label('scope', 'databases.read') ->label('resourceType', RESOURCE_TYPE_DATABASES) ->label('sdk', new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: 'tablesdb', name: 'get', description: '/docs/references/tablesdb/get.md', diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Logs/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Logs/XList.php index 89d1dd485f..02403fe472 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Logs/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Logs/XList.php @@ -43,7 +43,7 @@ class XList extends Action ->label('resourceType', RESOURCE_TYPE_DATABASES) ->label('sdk', [ new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: 'logs', name: 'listDatabaseLogs', description: '/docs/references/tablesdb/get-logs.md', diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Update.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Update.php index 4a1d6c273c..10d4284947 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Update.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Update.php @@ -33,7 +33,7 @@ class Update extends DatabaseUpdate ->label('audits.event', 'database.update') ->label('audits.resource', 'database/{response.$id}') ->label('sdk', new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: 'tablesdb', name: 'update', description: '/docs/references/tablesdb/update.md', diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/Get.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/Get.php index 1f35adc749..dba7feee31 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/Get.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/Get.php @@ -30,7 +30,7 @@ class Get extends DatabaseUsageGet ->label('resourceType', RESOURCE_TYPE_DATABASES) ->label('sdk', [ new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: null, name: 'getUsage', description: '/docs/references/tablesdb/get-database-usage.md', diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/XList.php index 4a20d76c02..a67976211c 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Usage/XList.php @@ -29,7 +29,7 @@ class XList extends DatabaseUsageXList ->label('resourceType', RESOURCE_TYPE_DATABASES) ->label('sdk', [ new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: null, name: 'listUsage', description: '/docs/references/tablesdb/list-usage.md', diff --git a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/XList.php b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/XList.php index 90fc934755..3f2244566d 100644 --- a/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/XList.php +++ b/src/Appwrite/Platform/Modules/Databases/Http/TablesDB/XList.php @@ -29,7 +29,7 @@ class XList extends DatabaseXList ->label('scope', 'databases.read') ->label('resourceType', RESOURCE_TYPE_DATABASES) ->label('sdk', new Method( - namespace: 'tablesDb', + namespace: 'tablesDB', group: 'tablesdb', name: 'list', description: '/docs/references/tablesdb/list.md', diff --git a/src/Appwrite/SDK/Specification/Format.php b/src/Appwrite/SDK/Specification/Format.php index eed69b49ad..825f9bf01d 100644 --- a/src/Appwrite/SDK/Specification/Format.php +++ b/src/Appwrite/SDK/Specification/Format.php @@ -206,7 +206,7 @@ abstract class Format } } break; - case 'tablesDb': + case 'tablesDB': switch ($method) { case 'getUsage': case 'listUsage': @@ -485,7 +485,7 @@ abstract class Format return ['Twenty Four Hours', 'Thirty Days', 'Ninety Days']; } break; - case 'tablesDb': + case 'tablesDB': switch ($method) { case 'getUsage': case 'listUsage': diff --git a/tests/e2e/Services/GraphQL/Base.php b/tests/e2e/Services/GraphQL/Base.php index 820da7982e..46effc795a 100644 --- a/tests/e2e/Services/GraphQL/Base.php +++ b/tests/e2e/Services/GraphQL/Base.php @@ -542,15 +542,15 @@ trait Base } }'; case self::TABLESDB_CREATE_DATABASE: - return 'mutation tablesDbCreate($databaseId: String!, $name: String!) { - tablesDbCreate(databaseId: $databaseId, name: $name) { + return 'mutation tablesDBCreate($databaseId: String!, $name: String!) { + tablesDBCreate(databaseId: $databaseId, name: $name) { _id name } }'; case self::TABLESDB_GET_DATABASES: - return 'query tablesDbList { - tablesDbList { + return 'query tablesDBList { + tablesDBList { total databases { _id @@ -559,22 +559,22 @@ trait Base } }'; case self::TABLESDB_GET_DATABASE: - return 'query tablesDbGet($databaseId: String!) { - tablesDbGet(databaseId: $databaseId) { + return 'query tablesDBGet($databaseId: String!) { + tablesDBGet(databaseId: $databaseId) { _id name } }'; case self::TABLESDB_UPDATE_DATABASE: - return 'mutation tablesDbUpdate($databaseId: String!, $name: String!) { - tablesDbUpdate(databaseId: $databaseId, name: $name) { + return 'mutation tablesDBUpdate($databaseId: String!, $name: String!) { + tablesDBUpdate(databaseId: $databaseId, name: $name) { _id name } }'; case self::TABLESDB_DELETE_DATABASE: - return 'mutation tablesDbDelete($databaseId: String!) { - tablesDbDelete(databaseId: $databaseId) { + return 'mutation tablesDBDelete($databaseId: String!) { + tablesDBDelete(databaseId: $databaseId) { status } }'; @@ -624,8 +624,8 @@ trait Base } }'; case self::GET_TABLE: - return 'query tablesDbGetTable($databaseId: String!, $tableId: String!) { - tablesDbGetTable(databaseId: $databaseId, tableId: $tableId) { + return 'query tablesDBGetTable($databaseId: String!, $tableId: String!) { + tablesDBGetTable(databaseId: $databaseId, tableId: $tableId) { _id _permissions rowSecurity @@ -633,8 +633,8 @@ trait Base } }'; case self::GET_TABLES: - return 'query tablesDbListTables($databaseId: String!) { - tablesDbListTables(databaseId: $databaseId) { + return 'query tablesDBListTables($databaseId: String!) { + tablesDBListTables(databaseId: $databaseId) { total tables { _id @@ -645,8 +645,8 @@ trait Base } }'; case self::CREATE_TABLE: - return 'mutation tablesDbCreateTable($databaseId: String!, $tableId: String!, $name: String!, $rowSecurity: Boolean!, $permissions: [String!]!) { - tablesDbCreateTable(databaseId: $databaseId, tableId: $tableId, name: $name, rowSecurity: $rowSecurity, permissions: $permissions) { + return 'mutation tablesDBCreateTable($databaseId: String!, $tableId: String!, $name: String!, $rowSecurity: Boolean!, $permissions: [String!]!) { + tablesDBCreateTable(databaseId: $databaseId, tableId: $tableId, name: $name, rowSecurity: $rowSecurity, permissions: $permissions) { _id _permissions rowSecurity @@ -654,8 +654,8 @@ trait Base } }'; case self::UPDATE_TABLE: - return 'mutation tablesDbUpdateTable($databaseId: String!, $tableId: String!, $name: String!, $rowSecurity: Boolean!, $permissions: [String!], $enabled: Boolean) { - tablesDbUpdateTable(databaseId: $databaseId, tableId: $tableId, name: $name, rowSecurity: $rowSecurity, permissions: $permissions, enabled: $enabled) { + return 'mutation tablesDBUpdateTable($databaseId: String!, $tableId: String!, $name: String!, $rowSecurity: Boolean!, $permissions: [String!], $enabled: Boolean) { + tablesDBUpdateTable(databaseId: $databaseId, tableId: $tableId, name: $name, rowSecurity: $rowSecurity, permissions: $permissions, enabled: $enabled) { _id _permissions rowSecurity @@ -663,8 +663,8 @@ trait Base } }'; case self::DELETE_TABLE: - return 'mutation tablesDbDeleteTable($databaseId: String!, $tableId: String!) { - tablesDbDeleteTable(databaseId: $databaseId, tableId: $tableId) { + return 'mutation tablesDBDeleteTable($databaseId: String!, $tableId: String!) { + tablesDBDeleteTable(databaseId: $databaseId, tableId: $tableId) { status } }'; @@ -846,7 +846,7 @@ trait Base }'; case self::CREATE_STRING_COLUMN: return 'mutation createStringColumn($databaseId: String!, $tableId: String!, $key: String!, $size: Int!, $required: Boolean!, $default: String, $array: Boolean){ - tablesDbCreateStringColumn(databaseId: $databaseId, tableId: $tableId, key: $key, size: $size, required: $required, default: $default, array: $array) { + tablesDBCreateStringColumn(databaseId: $databaseId, tableId: $tableId, key: $key, size: $size, required: $required, default: $default, array: $array) { key required default @@ -855,7 +855,7 @@ trait Base }'; case self::CREATE_INTEGER_COLUMN: return 'mutation createIntegerColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $min: Int, $max: Int, $default: Int, $array: Boolean){ - tablesDbCreateIntegerColumn(databaseId: $databaseId, tableId: $tableId, key: $key, min: $min, max: $max, required: $required, default: $default, array: $array) { + tablesDBCreateIntegerColumn(databaseId: $databaseId, tableId: $tableId, key: $key, min: $min, max: $max, required: $required, default: $default, array: $array) { key required min @@ -866,7 +866,7 @@ trait Base }'; case self::CREATE_FLOAT_COLUMN: return 'mutation createFloatColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $min: Float, $max: Float, $default: Float, $array: Boolean){ - tablesDbCreateFloatColumn(databaseId: $databaseId, tableId: $tableId, key: $key, min: $min, max: $max, required: $required, default: $default, array: $array) { + tablesDBCreateFloatColumn(databaseId: $databaseId, tableId: $tableId, key: $key, min: $min, max: $max, required: $required, default: $default, array: $array) { key required min @@ -877,7 +877,7 @@ trait Base }'; case self::CREATE_BOOLEAN_COLUMN: return 'mutation createBooleanColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: Boolean, $array: Boolean){ - tablesDbCreateBooleanColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { + tablesDBCreateBooleanColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { key required default @@ -886,7 +886,7 @@ trait Base }'; case self::CREATE_URL_COLUMN: return 'mutation createUrlColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String, $array: Boolean){ - tablesDbCreateUrlColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { + tablesDBCreateUrlColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { key required default @@ -895,7 +895,7 @@ trait Base }'; case self::CREATE_EMAIL_COLUMN: return 'mutation createEmailColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String, $array: Boolean){ - tablesDbCreateEmailColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { + tablesDBCreateEmailColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { key required default @@ -904,7 +904,7 @@ trait Base }'; case self::CREATE_IP_COLUMN: return 'mutation createIpColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String, $array: Boolean){ - tablesDbCreateIpColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { + tablesDBCreateIpColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { key required default @@ -913,7 +913,7 @@ trait Base }'; case self::CREATE_ENUM_COLUMN: return 'mutation createEnumColumn($databaseId: String!, $tableId: String!, $key: String!, $elements: [String!]!, $required: Boolean!, $default: String, $array: Boolean){ - tablesDbCreateEnumColumn(databaseId: $databaseId, tableId: $tableId, key: $key, elements: $elements, required: $required, default: $default, array: $array) { + tablesDBCreateEnumColumn(databaseId: $databaseId, tableId: $tableId, key: $key, elements: $elements, required: $required, default: $default, array: $array) { key elements required @@ -923,7 +923,7 @@ trait Base }'; case self::CREATE_DATETIME_COLUMN: return 'mutation createDatetimeColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String, $array: Boolean){ - tablesDbCreateDatetimeColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { + tablesDBCreateDatetimeColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default, array: $array) { key required default @@ -932,7 +932,7 @@ trait Base }'; case self::CREATE_RELATIONSHIP_COLUMN: return 'mutation createRelationshipColumn($databaseId: String!, $tableId: String!, $relatedTableId: String!, $type: String!, $twoWay: Boolean, $key: String, $twoWayKey: String, $onDelete: String){ - tablesDbCreateRelationshipColumn(databaseId: $databaseId, tableId: $tableId, relatedTableId: $relatedTableId, type: $type, twoWay: $twoWay, key: $key, twoWayKey: $twoWayKey, onDelete: $onDelete) { + tablesDBCreateRelationshipColumn(databaseId: $databaseId, tableId: $tableId, relatedTableId: $relatedTableId, type: $type, twoWay: $twoWay, key: $key, twoWayKey: $twoWayKey, onDelete: $onDelete) { relatedTable relationType twoWay @@ -943,14 +943,14 @@ trait Base }'; case self::UPDATE_STRING_COLUMN: return 'mutation updateStringColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String){ - tablesDbUpdateStringColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { + tablesDBUpdateStringColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { required default } }'; case self::UPDATE_INTEGER_COLUMN: return 'mutation updateIntegerColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $min: Int!, $max: Int!, $default: Int){ - tablesDbUpdateIntegerColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, min: $min, max: $max, default: $default) { + tablesDBUpdateIntegerColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, min: $min, max: $max, default: $default) { required min max @@ -959,7 +959,7 @@ trait Base }'; case self::UPDATE_FLOAT_COLUMN: return 'mutation updateFloatColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $min: Float!, $max: Float!, $default: Float){ - tablesDbUpdateFloatColumn(databaseId: $databaseId, tableId: $tableId, key: $key, min: $min, max: $max, required: $required, default: $default) { + tablesDBUpdateFloatColumn(databaseId: $databaseId, tableId: $tableId, key: $key, min: $min, max: $max, required: $required, default: $default) { required min max @@ -968,35 +968,35 @@ trait Base }'; case self::UPDATE_BOOLEAN_COLUMN: return 'mutation updateBooleanColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: Boolean){ - tablesDbUpdateBooleanColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { + tablesDBUpdateBooleanColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { required default } }'; case self::UPDATE_URL_COLUMN: return 'mutation updateUrlColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String){ - tablesDbUpdateUrlColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { + tablesDBUpdateUrlColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { required default } }'; case self::UPDATE_EMAIL_COLUMN: return 'mutation updateEmailColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String){ - tablesDbUpdateEmailColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { + tablesDBUpdateEmailColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { required default } }'; case self::UPDATE_IP_COLUMN: return 'mutation updateIpColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String){ - tablesDbUpdateIpColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { + tablesDBUpdateIpColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { required default } }'; case self::UPDATE_ENUM_COLUMN: return 'mutation updateEnumColumn($databaseId: String!, $tableId: String!, $key: String!, $elements: [String!]!, $required: Boolean!, $default: String){ - tablesDbUpdateEnumColumn(databaseId: $databaseId, tableId: $tableId, key: $key, elements: $elements, required: $required, default: $default) { + tablesDBUpdateEnumColumn(databaseId: $databaseId, tableId: $tableId, key: $key, elements: $elements, required: $required, default: $default) { elements required default @@ -1004,14 +1004,14 @@ trait Base }'; case self::UPDATE_DATETIME_COLUMN: return 'mutation updateDatetimeColumn($databaseId: String!, $tableId: String!, $key: String!, $required: Boolean!, $default: String){ - tablesDbUpdateDatetimeColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { + tablesDBUpdateDatetimeColumn(databaseId: $databaseId, tableId: $tableId, key: $key, required: $required, default: $default) { required default } }'; case self::UPDATE_RELATIONSHIP_COLUMN: return 'mutation updateRelationshipColumn($databaseId: String!, $tableId: String!, $key: String!, $onDelete: String){ - tablesDbUpdateRelationshipColumn(databaseId: $databaseId, tableId: $tableId, key: $key, onDelete: $onDelete) { + tablesDBUpdateRelationshipColumn(databaseId: $databaseId, tableId: $tableId, key: $key, onDelete: $onDelete) { relatedTable relationType twoWay @@ -1055,7 +1055,7 @@ trait Base }'; case self::CREATE_COLUMN_INDEX: return 'mutation createIndex($databaseId: String!, $tableId: String!, $key: String!, $type: String!, $columns: [String!]!, $orders: [String!]){ - tablesDbCreateIndex(databaseId: $databaseId, tableId: $tableId, key: $key, type: $type, columns: $columns, orders: $orders) { + tablesDBCreateIndex(databaseId: $databaseId, tableId: $tableId, key: $key, type: $type, columns: $columns, orders: $orders) { key type status @@ -1063,7 +1063,7 @@ trait Base }'; case self::GET_COLUMN_INDEXES: return 'query listIndexes($databaseId: String!, $tableId: String!) { - tablesDbListIndexes(databaseId: $databaseId, tableId: $tableId) { + tablesDBListIndexes(databaseId: $databaseId, tableId: $tableId) { total indexes { key @@ -1074,7 +1074,7 @@ trait Base }'; case self::GET_COLUMN_INDEX: return 'query getIndex($databaseId: String!, $tableId: String!, $key: String!) { - tablesDbGetIndex(databaseId: $databaseId, tableId: $tableId, key: $key) { + tablesDBGetIndex(databaseId: $databaseId, tableId: $tableId, key: $key) { key type status @@ -1082,7 +1082,7 @@ trait Base }'; case self::DELETE_COLUMN_INDEX: return 'mutation deleteIndex($databaseId: String!, $tableId: String!, $key: String!) { - tablesDbDeleteIndex(databaseId: $databaseId, tableId: $tableId, key: $key) { + tablesDBDeleteIndex(databaseId: $databaseId, tableId: $tableId, key: $key) { status } }'; @@ -1109,7 +1109,7 @@ trait Base }'; case self::GET_COLUMNS: return 'query listColumns($databaseId: String!, $tableId: String!) { - tablesDbListColumns(databaseId: $databaseId, tableId: $tableId) { + tablesDBListColumns(databaseId: $databaseId, tableId: $tableId) { total columns { ...columnProperties @@ -1118,13 +1118,13 @@ trait Base }' . PHP_EOL . self::FRAGMENT_COLUMNS; case self::GET_COLUMN: return 'query getColumn($databaseId: String!, $tableId: String!, $key: String!) { - tablesDbGetColumn(databaseId: $databaseId, tableId: $tableId, key: $key) { + tablesDBGetColumn(databaseId: $databaseId, tableId: $tableId, key: $key) { ...columnProperties } }' . PHP_EOL . self::FRAGMENT_COLUMNS; case self::DELETE_COLUMN: return 'mutation deleteColumn($databaseId: String!, $tableId: String!, $key: String!) { - tablesDbDeleteColumn(databaseId: $databaseId, tableId: $tableId, key: $key) { + tablesDBDeleteColumn(databaseId: $databaseId, tableId: $tableId, key: $key) { status } }'; @@ -1171,7 +1171,7 @@ trait Base }'; case self::CREATE_ROWS: return 'mutation createRows($databaseId: String!, $tableId: String!, $rows: [Json!]!) { - tablesDbCreateRows(databaseId: $databaseId, tableId: $tableId, rows: $rows) { + tablesDBCreateRows(databaseId: $databaseId, tableId: $tableId, rows: $rows) { rows { _id _tableId @@ -1182,7 +1182,7 @@ trait Base }'; case self::GET_ROW: return 'query getRow($databaseId: String!, $tableId: String!, $rowId: String!) { - tablesDbGetRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId) { + tablesDBGetRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId) { _id _tableId _permissions @@ -1191,7 +1191,7 @@ trait Base }'; case self::GET_ROWS: return 'query listRows($databaseId: String!, $tableId: String!, $queries: [String!] = []) { - tablesDbListRows(databaseId: $databaseId, tableId: $tableId, queries: $queries) { + tablesDBListRows(databaseId: $databaseId, tableId: $tableId, queries: $queries) { total rows { _id @@ -1204,7 +1204,7 @@ trait Base }'; case self::CREATE_ROW: return 'mutation createRow($databaseId: String!, $tableId: String!, $rowId: String!, $data: Json!, $permissions: [String!]) { - tablesDbCreateRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId, data: $data, permissions: $permissions) { + tablesDBCreateRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId, data: $data, permissions: $permissions) { _id _tableId _permissions @@ -1332,7 +1332,7 @@ trait Base }'; case self::UPDATE_ROW: return 'mutation updateRow($databaseId: String!, $tableId: String!, $rowId: String!, $data: Json!, $permissions: [String!]) { - tablesDbUpdateRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId, data: $data, permissions: $permissions) { + tablesDBUpdateRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId, data: $data, permissions: $permissions) { _id _tableId data @@ -1340,7 +1340,7 @@ trait Base }'; case self::UPSERT_ROW: return 'mutation upsertRow($databaseId: String!, $tableId: String!, $rowId: String!, $data: Json!, $permissions: [String!] = []) { - tablesDbUpsertRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId, data: $data, permissions: $permissions) { + tablesDBUpsertRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId, data: $data, permissions: $permissions) { _id _databaseId _tableId @@ -1349,13 +1349,13 @@ trait Base }'; case self::DELETE_ROW: return 'mutation deleteRow($databaseId: String!, $tableId: String!, $rowId: String!) { - tablesDbDeleteRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId) { + tablesDBDeleteRow(databaseId: $databaseId, tableId: $tableId, rowId: $rowId) { status } }'; case self::UPDATE_ROWS: return 'mutation updateRows($databaseId: String!, $tableId: String!, $data: Json!, $queries: [String!]) { - tablesDbUpdateRows(databaseId: $databaseId, tableId: $tableId, data: $data, queries: $queries) { + tablesDBUpdateRows(databaseId: $databaseId, tableId: $tableId, data: $data, queries: $queries) { total rows { _id @@ -1368,7 +1368,7 @@ trait Base }'; case self::UPSERT_ROWS: return 'mutation upsertRows($databaseId: String!, $tableId: String!, $rows: [Json!]!) { - tablesDbUpsertRows(databaseId: $databaseId, tableId: $tableId, rows: $rows) { + tablesDBUpsertRows(databaseId: $databaseId, tableId: $tableId, rows: $rows) { total rows { _id @@ -1381,7 +1381,7 @@ trait Base }'; case self::DELETE_ROWS: return 'mutation deleteRows($databaseId: String!, $tableId: String!, $queries: [String!] = []) { - tablesDbDeleteRows(databaseId: $databaseId, tableId: $tableId, queries: $queries) { + tablesDBDeleteRows(databaseId: $databaseId, tableId: $tableId, queries: $queries) { total rows { _id @@ -3114,7 +3114,7 @@ trait Base _id name } - tablesDbCreate(databaseId: $databaseId, tableId: $tableId, name: $tableName, rowSecurity: $rowSecurity, permissions: $tablePermissions) { + tablesDBCreate(databaseId: $databaseId, tableId: $tableId, name: $tableName, rowSecurity: $rowSecurity, permissions: $tablePermissions) { _id _createdAt _updatedAt @@ -3131,7 +3131,7 @@ trait Base status } } - tablesDbCreateStringColumn(databaseId: $databaseId, tableId: $tableId, key: "name", size: 255, required: true) { + tablesDBCreateStringColumn(databaseId: $databaseId, tableId: $tableId, key: "name", size: 255, required: true) { key type status @@ -3140,7 +3140,7 @@ trait Base default array } - tablesDbCreateIntegerColumn(databaseId: $databaseId, tableId: $tableId, key: "age", min: 0, max: 150, required: true) { + tablesDBCreateIntegerColumn(databaseId: $databaseId, tableId: $tableId, key: "age", min: 0, max: 150, required: true) { key type status @@ -3150,7 +3150,7 @@ trait Base default array } - tablesDbCreateBooleanColumn(databaseId: $databaseId, tableId: $tableId, key: "alive", required: false, default: true) { + tablesDBCreateBooleanColumn(databaseId: $databaseId, tableId: $tableId, key: "alive", required: false, default: true) { key type status diff --git a/tests/e2e/Services/GraphQL/TablesDB/AbuseTest.php b/tests/e2e/Services/GraphQL/TablesDB/AbuseTest.php index 4dfbe9ec21..9fab95a9ea 100644 --- a/tests/e2e/Services/GraphQL/TablesDB/AbuseTest.php +++ b/tests/e2e/Services/GraphQL/TablesDB/AbuseTest.php @@ -155,7 +155,7 @@ class AbuseTest extends Scope 'x-appwrite-key' => $this->getProject()['apiKey'], ], $gqlPayload); - $tableId = $response['body']['data']['tablesDbCreateTable']['_id']; + $tableId = $response['body']['data']['tablesDBCreateTable']['_id']; $query = $this->getQuery(self::CREATE_STRING_COLUMN); $gqlPayload = [ diff --git a/tests/e2e/Services/GraphQL/TablesDB/AuthTest.php b/tests/e2e/Services/GraphQL/TablesDB/AuthTest.php index 7a3794da45..5b5e721323 100644 --- a/tests/e2e/Services/GraphQL/TablesDB/AuthTest.php +++ b/tests/e2e/Services/GraphQL/TablesDB/AuthTest.php @@ -128,7 +128,7 @@ class AuthTest extends Scope 'query' => $query, 'variables' => [ 'databaseId' => $this->database['body']['data']['databasesCreate']['_id'], - 'tableId' => $this->table['body']['data']['tablesDbCreateTable']['_id'], + 'tableId' => $this->table['body']['data']['tablesDBCreateTable']['_id'], 'key' => 'name', 'size' => 256, 'required' => true, @@ -154,7 +154,7 @@ class AuthTest extends Scope 'query' => $query, 'variables' => [ 'databaseId' => $this->database['body']['data']['databasesCreate']['_id'], - 'tableId' => $this->table['body']['data']['tablesDbCreateTable']['_id'], + 'tableId' => $this->table['body']['data']['tablesDBCreateTable']['_id'], 'rowId' => ID::unique(), 'data' => [ 'name' => 'John Doe', @@ -178,8 +178,8 @@ class AuthTest extends Scope 'query' => $query, 'variables' => [ 'databaseId' => $this->database['body']['data']['databasesCreate']['_id'], - 'tableId' => $this->table['body']['data']['tablesDbCreateTable']['_id'], - 'rowId' => $row['body']['data']['tablesDbCreateRow']['_id'], + 'tableId' => $this->table['body']['data']['tablesDBCreateTable']['_id'], + 'rowId' => $row['body']['data']['tablesDBCreateRow']['_id'], ] ]; $row = $this->client->call(Client::METHOD_POST, '/graphql', [ @@ -188,7 +188,7 @@ class AuthTest extends Scope 'cookie' => 'a_session_' . $projectId . '=' . $this->token1, ], $gqlPayload); - $this->assertIsArray($row['body']['data']['tablesDbGetRow']); + $this->assertIsArray($row['body']['data']['tablesDBGetRow']); $this->assertArrayNotHasKey('errors', $row['body']); // Try to read as account 2 @@ -213,7 +213,7 @@ class AuthTest extends Scope 'query' => $query, 'variables' => [ 'databaseId' => $this->database['body']['data']['databasesCreate']['_id'], - 'tableId' => $this->table['body']['data']['tablesDbCreateTable']['_id'], + 'tableId' => $this->table['body']['data']['tablesDBCreateTable']['_id'], 'rowId' => ID::unique(), 'data' => [ 'name' => 'John Doe', @@ -237,8 +237,8 @@ class AuthTest extends Scope 'query' => $query, 'variables' => [ 'databaseId' => $this->database['body']['data']['databasesCreate']['_id'], - 'tableId' => $this->table['body']['data']['tablesDbCreateTable']['_id'], - 'rowId' => $row['body']['data']['tablesDbCreateRow']['_id'], + 'tableId' => $this->table['body']['data']['tablesDBCreateTable']['_id'], + 'rowId' => $row['body']['data']['tablesDBCreateRow']['_id'], ] ]; $row = $this->client->call(Client::METHOD_POST, '/graphql', [ diff --git a/tests/e2e/Services/GraphQL/TablesDB/DatabaseClientTest.php b/tests/e2e/Services/GraphQL/TablesDB/DatabaseClientTest.php index bed9d6f8c1..80d891125a 100644 --- a/tests/e2e/Services/GraphQL/TablesDB/DatabaseClientTest.php +++ b/tests/e2e/Services/GraphQL/TablesDB/DatabaseClientTest.php @@ -38,7 +38,7 @@ class DatabaseClientTest extends Scope $this->assertIsArray($database['body']['data']); $this->assertArrayNotHasKey('errors', $database['body']); - $database = $database['body']['data']['tablesDbCreate']; + $database = $database['body']['data']['tablesDBCreate']; $this->assertEquals('Actors', $database['name']); return $database; @@ -75,7 +75,7 @@ class DatabaseClientTest extends Scope $this->assertIsArray($table['body']['data']); $this->assertArrayNotHasKey('errors', $table['body']); - $table = $table['body']['data']['tablesDbCreateTable']; + $table = $table['body']['data']['tablesDBCreateTable']; $this->assertEquals('Actors', $table['name']); return [ @@ -110,7 +110,7 @@ class DatabaseClientTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateStringColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateStringColumn']); return $data; } @@ -142,7 +142,7 @@ class DatabaseClientTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateIntegerColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateIntegerColumn']); return $data; } @@ -183,7 +183,7 @@ class DatabaseClientTest extends Scope $this->assertArrayNotHasKey('errors', $row['body']); $this->assertIsArray($row['body']['data']); - $row = $row['body']['data']['tablesDbCreateRow']; + $row = $row['body']['data']['tablesDBCreateRow']; $this->assertIsArray($row); return [ @@ -216,7 +216,7 @@ class DatabaseClientTest extends Scope $this->assertArrayNotHasKey('errors', $rows['body']); $this->assertIsArray($rows['body']['data']); - $this->assertIsArray($rows['body']['data']['tablesDbListRows']); + $this->assertIsArray($rows['body']['data']['tablesDBListRows']); } /** @@ -243,7 +243,7 @@ class DatabaseClientTest extends Scope $this->assertArrayNotHasKey('errors', $row['body']); $this->assertIsArray($row['body']['data']); - $this->assertIsArray($row['body']['data']['tablesDbGetRow']); + $this->assertIsArray($row['body']['data']['tablesDBGetRow']); } /** @@ -273,7 +273,7 @@ class DatabaseClientTest extends Scope $this->assertArrayNotHasKey('errors', $row['body']); $this->assertIsArray($row['body']['data']); - $row = $row['body']['data']['tablesDbUpdateRow']; + $row = $row['body']['data']['tablesDBUpdateRow']; $this->assertIsArray($row); $this->assertStringContainsString('New Row Name', $row['data']); @@ -330,7 +330,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $databaseId = $res['body']['data']['tablesDbCreate']['_id']; + $databaseId = $res['body']['data']['tablesDBCreate']['_id']; // Step 2: Create table $query = $this->getQuery(self::CREATE_TABLE); @@ -349,7 +349,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $tableId = $res['body']['data']['tablesDbCreateTable']['_id']; + $tableId = $res['body']['data']['tablesDBCreateTable']['_id']; // Step 3: Create column $query = $this->getQuery(self::CREATE_STRING_COLUMN); @@ -382,7 +382,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $this->assertCount(10, $res['body']['data']['tablesDbCreateRows']['rows']); + $this->assertCount(10, $res['body']['data']['tablesDBCreateRows']['rows']); return compact('databaseId', 'tableId', 'projectId'); } @@ -421,7 +421,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $this->assertCount(10, $res['body']['data']['tablesDbUpdateRows']['rows']); + $this->assertCount(10, $res['body']['data']['tablesDBUpdateRows']['rows']); // Step 2: Fetch and validate updated rows $query = $this->getQuery(self::GET_ROWS); @@ -437,7 +437,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertEquals(200, $res['headers']['status-code']); - $fetched = $res['body']['data']['tablesDbListRows']; + $fetched = $res['body']['data']['tablesDBListRows']; $this->assertEquals(10, $fetched['total']); foreach ($fetched['rows'] as $row) { @@ -490,7 +490,7 @@ class DatabaseClientTest extends Scope $response = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $upsertPayload); $this->assertArrayNotHasKey('errors', $response['body']); - $rows = $response['body']['data']['tablesDbUpsertRows']['rows']; + $rows = $response['body']['data']['tablesDBUpsertRows']['rows']; $this->assertCount(2, $rows); $rowMap = []; @@ -515,7 +515,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $fetchPayload); $this->assertEquals(200, $res['headers']['status-code']); - $fetched = $res['body']['data']['tablesDbListRows']; + $fetched = $res['body']['data']['tablesDBListRows']; $this->assertEquals(11, $fetched['total']); // Step 3: Upsert row with new permissions using `tablesUpsertRow` @@ -534,7 +534,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $updated = $res['body']['data']['tablesDbUpsertRow']; + $updated = $res['body']['data']['tablesDBUpsertRow']; $this->assertEquals('Row #10 Patched', json_decode($updated['data'], true)['name']); $this->assertEquals($data['databaseId'], $updated['_databaseId']); $this->assertEquals($data['tableId'], $updated['_tableId']); @@ -566,7 +566,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $deleted = $res['body']['data']['tablesDbDeleteRows']['rows']; + $deleted = $res['body']['data']['tablesDBDeleteRows']['rows']; $this->assertIsArray($deleted); $this->assertCount(11, $deleted); @@ -582,7 +582,7 @@ class DatabaseClientTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertEquals(200, $res['headers']['status-code']); - $this->assertEquals(0, $res['body']['data']['tablesDbListRows']['total']); + $this->assertEquals(0, $res['body']['data']['tablesDBListRows']['total']); return $data; } diff --git a/tests/e2e/Services/GraphQL/TablesDB/DatabaseServerTest.php b/tests/e2e/Services/GraphQL/TablesDB/DatabaseServerTest.php index dc43771784..676d570d74 100644 --- a/tests/e2e/Services/GraphQL/TablesDB/DatabaseServerTest.php +++ b/tests/e2e/Services/GraphQL/TablesDB/DatabaseServerTest.php @@ -39,7 +39,7 @@ class DatabaseServerTest extends Scope $this->assertIsArray($database['body']['data']); $this->assertArrayNotHasKey('errors', $database['body']); - $database = $database['body']['data']['tablesDbCreate']; + $database = $database['body']['data']['tablesDBCreate']; $this->assertEquals('Actors', $database['name']); return $database; @@ -75,7 +75,7 @@ class DatabaseServerTest extends Scope $this->assertIsArray($table['body']['data']); $this->assertArrayNotHasKey('errors', $table['body']); - $table = $table['body']['data']['tablesDbCreateTable']; + $table = $table['body']['data']['tablesDBCreateTable']; $this->assertEquals('Actors', $table['name']); $gqlPayload = [ @@ -101,7 +101,7 @@ class DatabaseServerTest extends Scope $this->assertIsArray($table2['body']['data']); $this->assertArrayNotHasKey('errors', $table2['body']); - $table2 = $table2['body']['data']['tablesDbCreateTable']; + $table2 = $table2['body']['data']['tablesDBCreateTable']; $this->assertEquals('Movies', $table2['name']); return [ @@ -138,7 +138,7 @@ class DatabaseServerTest extends Scope // TODO: @itznotabug - check for `encrypt` attribute in string column's response body as well! $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateStringColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateStringColumn']); return $data; } @@ -171,9 +171,9 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateStringColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateStringColumn']['required']); - $this->assertEquals('Default Value', $column['body']['data']['tablesDbUpdateStringColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateStringColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateStringColumn']['required']); + $this->assertEquals('Default Value', $column['body']['data']['tablesDBUpdateStringColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -206,7 +206,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateIntegerColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateIntegerColumn']); return $data; } @@ -241,11 +241,11 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateIntegerColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateIntegerColumn']['required']); - $this->assertEquals(12, $column['body']['data']['tablesDbUpdateIntegerColumn']['min']); - $this->assertEquals(160, $column['body']['data']['tablesDbUpdateIntegerColumn']['max']); - $this->assertEquals(50, $column['body']['data']['tablesDbUpdateIntegerColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateIntegerColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateIntegerColumn']['required']); + $this->assertEquals(12, $column['body']['data']['tablesDBUpdateIntegerColumn']['min']); + $this->assertEquals(160, $column['body']['data']['tablesDBUpdateIntegerColumn']['max']); + $this->assertEquals(50, $column['body']['data']['tablesDBUpdateIntegerColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -276,7 +276,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateBooleanColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateBooleanColumn']); return $data; } @@ -309,9 +309,9 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateBooleanColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateBooleanColumn']['required']); - $this->assertTrue($column['body']['data']['tablesDbUpdateBooleanColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateBooleanColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateBooleanColumn']['required']); + $this->assertTrue($column['body']['data']['tablesDBUpdateBooleanColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -345,7 +345,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateFloatColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateFloatColumn']); return $data; } @@ -380,11 +380,11 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateFloatColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateFloatColumn']['required']); - $this->assertEquals(100.0, $column['body']['data']['tablesDbUpdateFloatColumn']['min']); - $this->assertEquals(1000000.0, $column['body']['data']['tablesDbUpdateFloatColumn']['max']); - $this->assertEquals(2500.0, $column['body']['data']['tablesDbUpdateFloatColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateFloatColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateFloatColumn']['required']); + $this->assertEquals(100.0, $column['body']['data']['tablesDBUpdateFloatColumn']['min']); + $this->assertEquals(1000000.0, $column['body']['data']['tablesDBUpdateFloatColumn']['max']); + $this->assertEquals(2500.0, $column['body']['data']['tablesDBUpdateFloatColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -415,7 +415,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateEmailColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateEmailColumn']); return $data; } @@ -448,9 +448,9 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateEmailColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateEmailColumn']['required']); - $this->assertEquals('torsten@appwrite.io', $column['body']['data']['tablesDbUpdateEmailColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateEmailColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateEmailColumn']['required']); + $this->assertEquals('torsten@appwrite.io', $column['body']['data']['tablesDBUpdateEmailColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -486,7 +486,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateEnumColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateEnumColumn']); return $data; } @@ -525,11 +525,11 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateEnumColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateEnumColumn']['required']); - $this->assertEquals('tech', $column['body']['data']['tablesDbUpdateEnumColumn']['default']); - $this->assertContains('tech', $column['body']['data']['tablesDbUpdateEnumColumn']['elements']); - $this->assertNotContains('guest', $column['body']['data']['tablesDbUpdateEnumColumn']['elements']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateEnumColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateEnumColumn']['required']); + $this->assertEquals('tech', $column['body']['data']['tablesDBUpdateEnumColumn']['default']); + $this->assertContains('tech', $column['body']['data']['tablesDBUpdateEnumColumn']['elements']); + $this->assertNotContains('guest', $column['body']['data']['tablesDBUpdateEnumColumn']['elements']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -560,7 +560,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateDatetimeColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateDatetimeColumn']); return $data; } @@ -593,9 +593,9 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateDatetimeColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateDatetimeColumn']['required']); - $this->assertEquals('2000-01-01T00:00:00Z', $column['body']['data']['tablesDbUpdateDatetimeColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateDatetimeColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateDatetimeColumn']['required']); + $this->assertEquals('2000-01-01T00:00:00Z', $column['body']['data']['tablesDBUpdateDatetimeColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -628,7 +628,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateRelationshipColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateRelationshipColumn']); return $data; } @@ -659,7 +659,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateRelationshipColumn']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateRelationshipColumn']); return $data; } @@ -690,7 +690,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateIpColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateIpColumn']); return $data; } @@ -723,9 +723,9 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateIpColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateIpColumn']['required']); - $this->assertEquals('127.0.0.1', $column['body']['data']['tablesDbUpdateIpColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateIpColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateIpColumn']['required']); + $this->assertEquals('127.0.0.1', $column['body']['data']['tablesDBUpdateIpColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); return $data; @@ -757,7 +757,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbCreateUrlColumn']); + $this->assertIsArray($column['body']['data']['tablesDBCreateUrlColumn']); return $data; } @@ -790,9 +790,9 @@ class DatabaseServerTest extends Scope ], $this->getHeaders()), $gqlPayload); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbUpdateUrlColumn']); - $this->assertFalse($column['body']['data']['tablesDbUpdateUrlColumn']['required']); - $this->assertEquals('https://cloud.appwrite.io', $column['body']['data']['tablesDbUpdateUrlColumn']['default']); + $this->assertIsArray($column['body']['data']['tablesDBUpdateUrlColumn']); + $this->assertFalse($column['body']['data']['tablesDBUpdateUrlColumn']['required']); + $this->assertEquals('https://cloud.appwrite.io', $column['body']['data']['tablesDBUpdateUrlColumn']['default']); $this->assertEquals(200, $column['headers']['status-code']); } @@ -826,12 +826,12 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $index['body']); $this->assertIsArray($index['body']['data']); - $this->assertIsArray($index['body']['data']['tablesDbCreateIndex']); + $this->assertIsArray($index['body']['data']['tablesDBCreateIndex']); return [ 'database' => $data['database'], 'table' => $data['table'], - 'index' => $index['body']['data']['tablesDbCreateIndex'], + 'index' => $index['body']['data']['tablesDBCreateIndex'], ]; } @@ -877,7 +877,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $row['body']); $this->assertIsArray($row['body']['data']); - $row = $row['body']['data']['tablesDbCreateRow']; + $row = $row['body']['data']['tablesDBCreateRow']; $this->assertIsArray($row); return [ @@ -942,7 +942,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $databases['body']); $this->assertIsArray($databases['body']['data']); - $this->assertIsArray($databases['body']['data']['tablesDbList']); + $this->assertIsArray($databases['body']['data']['tablesDBList']); } /** @@ -967,7 +967,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $database['body']); $this->assertIsArray($database['body']['data']); - $this->assertIsArray($database['body']['data']['tablesDbGet']); + $this->assertIsArray($database['body']['data']['tablesDBGet']); } /** @@ -994,7 +994,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $tables['body']); $this->assertIsArray($tables['body']['data']); - $this->assertIsArray($tables['body']['data']['tablesDbListTables']); + $this->assertIsArray($tables['body']['data']['tablesDBListTables']); } /** @@ -1020,7 +1020,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $table['body']); $this->assertIsArray($table['body']['data']); - $this->assertIsArray($table['body']['data']['tablesDbGetTable']); + $this->assertIsArray($table['body']['data']['tablesDBGetTable']); } /** @@ -1047,7 +1047,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $columns['body']); $this->assertIsArray($columns['body']['data']); - $this->assertIsArray($columns['body']['data']['tablesDbListColumns']); + $this->assertIsArray($columns['body']['data']['tablesDBListColumns']); } /** @@ -1074,7 +1074,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $column['body']); $this->assertIsArray($column['body']['data']); - $this->assertIsArray($column['body']['data']['tablesDbGetColumn']); + $this->assertIsArray($column['body']['data']['tablesDBGetColumn']); } /** @@ -1100,7 +1100,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $indices['body']); $this->assertIsArray($indices['body']['data']); - $this->assertIsArray($indices['body']['data']['tablesDbListIndexes']); + $this->assertIsArray($indices['body']['data']['tablesDBListIndexes']); } /** @@ -1127,7 +1127,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $index['body']); $this->assertIsArray($index['body']['data']); - $this->assertIsArray($index['body']['data']['tablesDbGetIndex']); + $this->assertIsArray($index['body']['data']['tablesDBGetIndex']); } /** @@ -1153,7 +1153,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $rows['body']); $this->assertIsArray($rows['body']['data']); - $this->assertIsArray($rows['body']['data']['tablesDbListRows']); + $this->assertIsArray($rows['body']['data']['tablesDBListRows']); } /** @@ -1180,7 +1180,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $row['body']); $this->assertIsArray($row['body']['data']); - $this->assertIsArray($row['body']['data']['tablesDbGetRow']); + $this->assertIsArray($row['body']['data']['tablesDBGetRow']); } // /** @@ -1253,7 +1253,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $database['body']); $this->assertIsArray($database['body']['data']); - $this->assertIsArray($database['body']['data']['tablesDbUpdate']); + $this->assertIsArray($database['body']['data']['tablesDBUpdate']); } /** @@ -1281,7 +1281,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $table['body']); $this->assertIsArray($table['body']['data']); - $this->assertIsArray($table['body']['data']['tablesDbUpdateTable']); + $this->assertIsArray($table['body']['data']['tablesDBUpdateTable']); } /** @@ -1311,7 +1311,7 @@ class DatabaseServerTest extends Scope $this->assertArrayNotHasKey('errors', $row['body']); $this->assertIsArray($row['body']['data']); - $row = $row['body']['data']['tablesDbUpdateRow']; + $row = $row['body']['data']['tablesDBUpdateRow']; $this->assertIsArray($row); $this->assertStringContainsString('New Row Name', $row['data']); } @@ -1493,7 +1493,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $databaseId = $res['body']['data']['tablesDbCreate']['_id']; + $databaseId = $res['body']['data']['tablesDBCreate']['_id']; // Step 2: Create table $query = $this->getQuery(self::CREATE_TABLE); @@ -1512,7 +1512,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $tableId = $res['body']['data']['tablesDbCreateTable']['_id']; + $tableId = $res['body']['data']['tablesDBCreateTable']['_id']; // Step 3: Create column $query = $this->getQuery(self::CREATE_STRING_COLUMN); @@ -1545,7 +1545,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $this->assertCount(10, $res['body']['data']['tablesDbCreateRows']['rows']); + $this->assertCount(10, $res['body']['data']['tablesDBCreateRows']['rows']); return compact('databaseId', 'tableId', 'projectId'); } @@ -1583,7 +1583,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $this->assertCount(10, $res['body']['data']['tablesDbUpdateRows']['rows']); + $this->assertCount(10, $res['body']['data']['tablesDBUpdateRows']['rows']); // Step 2: Fetch and validate updated rows $query = $this->getQuery(self::GET_ROWS); @@ -1599,7 +1599,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertEquals(200, $res['headers']['status-code']); - $fetched = $res['body']['data']['tablesDbListRows']; + $fetched = $res['body']['data']['tablesDBListRows']; $this->assertEquals(10, $fetched['total']); foreach ($fetched['rows'] as $row) { @@ -1651,7 +1651,7 @@ class DatabaseServerTest extends Scope $response = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $upsertPayload); $this->assertArrayNotHasKey('errors', $response['body']); - $rows = $response['body']['data']['tablesDbUpsertRows']['rows']; + $rows = $response['body']['data']['tablesDBUpsertRows']['rows']; $this->assertCount(2, $rows); $rowMap = []; @@ -1676,7 +1676,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $fetchPayload); $this->assertEquals(200, $res['headers']['status-code']); - $fetched = $res['body']['data']['tablesDbListRows']; + $fetched = $res['body']['data']['tablesDBListRows']; $this->assertEquals(11, $fetched['total']); // Step 3: Upsert row with new permissions using `tablesUpsertRow` @@ -1695,7 +1695,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $updated = $res['body']['data']['tablesDbUpsertRow']; + $updated = $res['body']['data']['tablesDBUpsertRow']; $this->assertEquals('Row #10 Patched', json_decode($updated['data'], true)['name']); $this->assertEquals($data['databaseId'], $updated['_databaseId']); $this->assertEquals($data['tableId'], $updated['_tableId']); @@ -1726,7 +1726,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertArrayNotHasKey('errors', $res['body']); - $deleted = $res['body']['data']['tablesDbDeleteRows']['rows']; + $deleted = $res['body']['data']['tablesDBDeleteRows']['rows']; $this->assertIsArray($deleted); $this->assertCount(11, $deleted); @@ -1742,7 +1742,7 @@ class DatabaseServerTest extends Scope $res = $this->client->call(Client::METHOD_POST, '/graphql', $headers, $payload); $this->assertEquals(200, $res['headers']['status-code']); - $this->assertEquals(0, $res['body']['data']['tablesDbListRows']['total']); + $this->assertEquals(0, $res['body']['data']['tablesDBListRows']['total']); return $data; } From 6410e481d6ecb18e34ef659ab9f1b9a769e16b81 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 21 Aug 2025 18:29:39 +1200 Subject: [PATCH 3/4] Lint --- src/Appwrite/Utopia/Response/Model/BaseList.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Appwrite/Utopia/Response/Model/BaseList.php b/src/Appwrite/Utopia/Response/Model/BaseList.php index f1da542c6c..447a4436e3 100644 --- a/src/Appwrite/Utopia/Response/Model/BaseList.php +++ b/src/Appwrite/Utopia/Response/Model/BaseList.php @@ -31,8 +31,7 @@ class BaseList extends Model string $model, bool $paging = true, bool $public = true - ) - { + ) { $this->name = $name; $this->type = $type; $this->public = $public; From 5c0007abaa87e3eeccf5736389498034a835fb19 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 21 Aug 2025 21:32:39 +1200 Subject: [PATCH 4/4] Update lock --- composer.lock | 50 +++++++++++++++++++++++--------------------------- 1 file changed, 23 insertions(+), 27 deletions(-) diff --git a/composer.lock b/composer.lock index 6d8199e941..82f43a85a0 100644 --- a/composer.lock +++ b/composer.lock @@ -486,16 +486,16 @@ }, { "name": "composer/semver", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95", + "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95", "shasum": "" }, "require": { @@ -547,7 +547,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.3" + "source": "https://github.com/composer/semver/tree/3.4.4" }, "funding": [ { @@ -557,13 +557,9 @@ { "url": "https://github.com/composer", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" } ], - "time": "2024-09-19T14:15:21+00:00" + "time": "2025-08-20T19:15:30+00:00" }, { "name": "dragonmantank/cron-expression", @@ -898,16 +894,16 @@ }, { "name": "matomo/device-detector", - "version": "6.4.6", + "version": "6.4.7", "source": { "type": "git", "url": "https://github.com/matomo-org/device-detector.git", - "reference": "6f07f615199851548db47a900815d2ea2cdcde08" + "reference": "e53eed31bb1530851feebe52bd64c3451da19e77" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/6f07f615199851548db47a900815d2ea2cdcde08", - "reference": "6f07f615199851548db47a900815d2ea2cdcde08", + "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/e53eed31bb1530851feebe52bd64c3451da19e77", + "reference": "e53eed31bb1530851feebe52bd64c3451da19e77", "shasum": "" }, "require": { @@ -964,7 +960,7 @@ "source": "https://github.com/matomo-org/matomo", "wiki": "https://dev.matomo.org/" }, - "time": "2025-06-10T10:00:59+00:00" + "time": "2025-08-20T17:20:16+00:00" }, { "name": "mustangostang/spyc", @@ -4930,16 +4926,16 @@ "packages-dev": [ { "name": "appwrite/sdk-generator", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/appwrite/sdk-generator.git", - "reference": "c13516f944ab96a0048541c80abd251e2a16cf8b" + "reference": "bbd0fd9f222e606a0a25ff553e53ff92f0bdd0b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/c13516f944ab96a0048541c80abd251e2a16cf8b", - "reference": "c13516f944ab96a0048541c80abd251e2a16cf8b", + "url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/bbd0fd9f222e606a0a25ff553e53ff92f0bdd0b3", + "reference": "bbd0fd9f222e606a0a25ff553e53ff92f0bdd0b3", "shasum": "" }, "require": { @@ -4975,9 +4971,9 @@ "description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms", "support": { "issues": "https://github.com/appwrite/sdk-generator/issues", - "source": "https://github.com/appwrite/sdk-generator/tree/1.1.2" + "source": "https://github.com/appwrite/sdk-generator/tree/1.1.3" }, - "time": "2025-08-20T13:32:21+00:00" + "time": "2025-08-21T09:31:14+00:00" }, { "name": "doctrine/annotations", @@ -6159,16 +6155,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.24", + "version": "9.6.25", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "ea49afa29aeea25ea7bf9de9fdd7cab163cc0701" + "reference": "049c011e01be805202d8eebedef49f769a8ec7b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ea49afa29aeea25ea7bf9de9fdd7cab163cc0701", - "reference": "ea49afa29aeea25ea7bf9de9fdd7cab163cc0701", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/049c011e01be805202d8eebedef49f769a8ec7b7", + "reference": "049c011e01be805202d8eebedef49f769a8ec7b7", "shasum": "" }, "require": { @@ -6242,7 +6238,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.24" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.25" }, "funding": [ { @@ -6266,7 +6262,7 @@ "type": "tidelift" } ], - "time": "2025-08-10T08:32:42+00:00" + "time": "2025-08-20T14:38:31+00:00" }, { "name": "psr/cache",