Skip to content

Commit 3222d4e

Browse files
Merge pull request #29 from appwrite/dev
feat: add update teams sensitive attributes
2 parents 5b5a0ae + f229b05 commit 3222d4e

File tree

9 files changed

+72
-10
lines changed

9 files changed

+72
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
3333
To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:
3434

3535
```html
36-
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/[email protected].1"></script>
36+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/[email protected].2"></script>
3737
```
3838

3939

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const result = await databases.updateStringAttribute(
1212
'', // key
1313
false, // required
1414
'<DEFAULT>', // default
15-
null, // size (optional)
15+
1, // size (optional)
1616
'' // newKey (optional)
1717
);
1818

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { Client, Projects } from "@appwrite.io/console";
2+
3+
const client = new Client()
4+
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
5+
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
6+
7+
const projects = new Projects(client);
8+
9+
const result = await projects.updateTeamsSensitiveAttributes(
10+
'<PROJECT_ID>', // projectId
11+
false // enabled
12+
);
13+
14+
console.log(result);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@appwrite.io/console",
33
"homepage": "https://appwrite.io/support",
44
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5-
"version": "1.4.1",
5+
"version": "1.4.2",
66
"license": "BSD-3-Clause",
77
"main": "dist/cjs/sdk.js",
88
"exports": {

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ class Client {
304304
'x-sdk-name': 'Console',
305305
'x-sdk-platform': 'console',
306306
'x-sdk-language': 'web',
307-
'x-sdk-version': '1.4.1',
307+
'x-sdk-version': '1.4.2',
308308
'X-Appwrite-Response-Format': '1.6.0',
309309
};
310310

src/enums/runtime.ts

+1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ export enum Runtime {
5353
Bun10 = 'bun-1.0',
5454
Bun11 = 'bun-1.1',
5555
Go123 = 'go-1.23',
56+
Static1 = 'static-1',
5657
}

src/models.ts

+16-4
Original file line numberDiff line numberDiff line change
@@ -1848,11 +1848,11 @@ export namespace Models {
18481848
*/
18491849
userId: string;
18501850
/**
1851-
* User name.
1851+
* User name. Hide this attribute by disabling teams sensitive data in the Console.
18521852
*/
18531853
userName: string;
18541854
/**
1855-
* User email address.
1855+
* User email address. Hide this attribute by disabling teams sensitive data in the Console.
18561856
*/
18571857
userEmail: string;
18581858
/**
@@ -1876,7 +1876,7 @@ export namespace Models {
18761876
*/
18771877
confirm: boolean;
18781878
/**
1879-
* Multi factor authentication status, true if the user has MFA enabled or false otherwise.
1879+
* Multi factor authentication status, true if the user has MFA enabled or false otherwise. Hide this attribute by disabling teams sensitive data in the Console.
18801880
*/
18811881
mfa: boolean;
18821882
/**
@@ -2549,6 +2549,10 @@ export namespace Models {
25492549
* Whether or not to send session alert emails to users.
25502550
*/
25512551
authSessionAlerts: boolean;
2552+
/**
2553+
* Whether or not to show sensitive attributes in the teams API.
2554+
*/
2555+
teamsSensitiveAttributes: boolean;
25522556
/**
25532557
* List of Auth Providers.
25542558
*/
@@ -3979,6 +3983,10 @@ export namespace Models {
39793983
* The target identifier.
39803984
*/
39813985
identifier: string;
3986+
/**
3987+
* Is the target expired.
3988+
*/
3989+
expired: boolean;
39823990
}
39833991
/**
39843992
* Migration
@@ -4009,7 +4017,11 @@ export namespace Models {
40094017
*/
40104018
source: string;
40114019
/**
4012-
* Resources to migration.
4020+
* A string containing the type of destination of the migration.
4021+
*/
4022+
destination: string;
4023+
/**
4024+
* Resources to migrate.
40134025
*/
40144026
resources: string[];
40154027
/**

src/services/projects.ts

+35
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,41 @@ export class Projects {
614614
}
615615

616616

617+
return await this.client.call(
618+
'patch',
619+
uri,
620+
apiHeaders,
621+
payload
622+
);
623+
}
624+
/**
625+
* Update project team sensitive attributes
626+
*
627+
*
628+
* @param {string} projectId
629+
* @param {boolean} enabled
630+
* @throws {AppwriteException}
631+
* @returns {Promise<Models.Project>}
632+
*/
633+
async updateTeamsSensitiveAttributes(projectId: string, enabled: boolean): Promise<Models.Project> {
634+
if (typeof projectId === 'undefined') {
635+
throw new AppwriteException('Missing required parameter: "projectId"');
636+
}
637+
if (typeof enabled === 'undefined') {
638+
throw new AppwriteException('Missing required parameter: "enabled"');
639+
}
640+
const apiPath = '/projects/{projectId}/auth/teams-sensitive-attributes'.replace('{projectId}', projectId);
641+
const payload: Payload = {};
642+
if (typeof enabled !== 'undefined') {
643+
payload['enabled'] = enabled;
644+
}
645+
const uri = new URL(this.client.config.endpoint + apiPath);
646+
647+
const apiHeaders: { [header: string]: string } = {
648+
'content-type': 'application/json',
649+
}
650+
651+
617652
return await this.client.call(
618653
'patch',
619654
uri,

src/services/teams.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export class Teams {
215215
/**
216216
* List team memberships
217217
*
218-
* Use this endpoint to list a team&#039;s members using the team&#039;s ID. All team members have read access to this endpoint.
218+
* Use this endpoint to list a team&#039;s members using the team&#039;s ID. All team members have read access to this endpoint. Hide sensitive attributes (userName, userEmail and mfa) from the response by disabling teams sensitive data in the Console.
219219
*
220220
* @param {string} teamId
221221
* @param {string[]} queries
@@ -315,7 +315,7 @@ Please note that to avoid a [Redirect Attack](https://github.com/OWASP/CheatShee
315315
/**
316316
* Get team membership
317317
*
318-
* Get a team member by the membership unique id. All team members have read access for this resource.
318+
* Get a team member by the membership unique id. All team members have read access for this resource. Hide sensitive attributes (userName, userEmail and mfa) from the response by disabling teams sensitive data in the Console.
319319
*
320320
* @param {string} teamId
321321
* @param {string} membershipId

0 commit comments

Comments
 (0)