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-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "@appwrite.io/console",
3
3
"homepage": "https://appwrite.io/support",
4
4
"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",
@@ -897,6 +904,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
897
904
/**
898
905
* List payment methods
899
906
*
907
+
* List payment methods for this account.
900
908
*
901
909
* @param {string[]} queries
902
910
* @throws {AppwriteException}
@@ -925,6 +933,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
925
933
/**
926
934
* Create new payment method
927
935
*
936
+
* Create a new payment method for the current user account.
928
937
*
929
938
* @throws {AppwriteException}
930
939
* @returns {Promise<Models.PaymentMethod>}
@@ -949,6 +958,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
949
958
/**
950
959
* Get payment method
951
960
*
961
+
* Get a specific payment method for the user.
952
962
*
953
963
* @param {string} paymentMethodId
954
964
* @throws {AppwriteException}
@@ -977,6 +987,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
977
987
/**
978
988
* Update payment method
979
989
*
990
+
* Update a new payment method for the current user account.
980
991
*
981
992
* @param {string} paymentMethodId
982
993
* @param {number} expiryMonth
@@ -1019,6 +1030,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
1019
1030
/**
1020
1031
* Delete payment method
1021
1032
*
1033
+
* Delete a specific payment method from a user's account.
1022
1034
*
1023
1035
* @param {string} paymentMethodId
1024
1036
* @throws {AppwriteException}
@@ -1047,6 +1059,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
1047
1059
/**
1048
1060
* Update payment method provider id
1049
1061
*
1062
+
* Update payment method provider.
1050
1063
*
1051
1064
* @param {string} paymentMethodId
1052
1065
* @param {string} providerMethodId
@@ -1089,6 +1102,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
1089
1102
/**
1090
1103
* Update payment method with new setup with mandates for indian cards
1091
1104
*
1105
+
* Update payment method mandate options.
1092
1106
*
1093
1107
* @param {string} paymentMethodId
1094
1108
* @throws {AppwriteException}
@@ -1695,6 +1709,7 @@ A user is limited to 10 active sessions at a time by default. [Learn more about
1695
1709
/**
1696
1710
* Create push target
1697
1711
*
1712
+
* Use this endpoint to register a device for push notifications. Provide a target ID (custom or generated using ID.unique()), a device identifier (usually a device token), and optionally specify which provider should send notifications to this target. The target is automatically linked to the current session and includes device information like brand and model.
1698
1713
*
1699
1714
* @param {string} targetId
1700
1715
* @param {string} identifier
@@ -1737,6 +1752,7 @@ A user is limited to 10 active sessions at a time by default. [Learn more about
1737
1752
/**
1738
1753
* Update push target
1739
1754
*
1755
+
* Update the currently logged in user's push notification target. You can modify the target's identifier (device token) and provider ID (token, email, phone etc.). The target must exist and belong to the current user. If you change the provider ID, notifications will be sent through the new messaging provider instead.
1740
1756
*
1741
1757
* @param {string} targetId
1742
1758
* @param {string} identifier
@@ -1772,6 +1788,7 @@ A user is limited to 10 active sessions at a time by default. [Learn more about
1772
1788
/**
1773
1789
* Delete push target
1774
1790
*
1791
+
* Delete a push notification target for the currently logged in user. After deletion, the device will no longer receive push notifications. The target must exist and belong to the current user.
Copy file name to clipboardExpand all lines: src/services/assistant.ts
+1
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ export class Assistant {
12
12
/**
13
13
* Ask query
14
14
*
15
+
* Send a prompt to the AI assistant and receive a response. This endpoint allows you to interact with Appwrite's AI assistant by sending questions or prompts and receiving helpful responses in real-time through a server-sent events stream.
0 commit comments