You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "appwrite",
3
3
"homepage": "https://appwrite.io/support",
4
4
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
Copy file name to clipboardExpand all lines: src/client.ts
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -382,7 +382,7 @@ class Client {
382
382
'x-sdk-name': 'Web',
383
383
'x-sdk-platform': 'client',
384
384
'x-sdk-language': 'web',
385
-
'x-sdk-version': '26.0.0',
385
+
'x-sdk-version': '26.1.0',
386
386
'X-Appwrite-Response-Format': '1.9.5',
387
387
};
388
388
@@ -526,7 +526,7 @@ class Client {
526
526
/**
527
527
* Set ImpersonateUserId
528
528
*
529
-
* Impersonate a user by ID on an already user-authenticated request. Requires the current request to be authenticated as a user with impersonator capability; X-Appwrite-Key alone is not sufficient. Impersonator users are intentionally granted users.read so they can discover a target before impersonation begins. Internal audit logs still attribute actions to the original impersonator and record the impersonated target only in internal audit payload data.
529
+
* Impersonate a user by ID
530
530
*
531
531
* @param value string
532
532
*
@@ -540,7 +540,7 @@ class Client {
540
540
/**
541
541
* Set ImpersonateUserEmail
542
542
*
543
-
* Impersonate a user by email on an already user-authenticated request. Requires the current request to be authenticated as a user with impersonator capability; X-Appwrite-Key alone is not sufficient. Impersonator users are intentionally granted users.read so they can discover a target before impersonation begins. Internal audit logs still attribute actions to the original impersonator and record the impersonated target only in internal audit payload data.
543
+
* Impersonate a user by email
544
544
*
545
545
* @param value string
546
546
*
@@ -554,7 +554,7 @@ class Client {
554
554
/**
555
555
* Set ImpersonateUserPhone
556
556
*
557
-
* Impersonate a user by phone on an already user-authenticated request. Requires the current request to be authenticated as a user with impersonator capability; X-Appwrite-Key alone is not sufficient. Impersonator users are intentionally granted users.read so they can discover a target before impersonation begins. Internal audit logs still attribute actions to the original impersonator and record the impersonated target only in internal audit payload data.
0 commit comments