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": "react-native-appwrite",
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",
Copy file name to clipboardExpand all lines: src/services/avatars.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ export class Avatars extends Service {
101
101
* When one dimension is specified and the other is 0, the image is scaled with preserved aspect ratio. If both dimensions are 0, the API provides an image at source quality. If dimensions are not specified, the default size of image returned is 100x100px.
* @param {number} params.width - Image width. Pass an integer between 0 to 2000. Defaults to 100.
106
106
* @param {number} params.height - Image height. Pass an integer between 0 to 2000. Defaults to 100.
107
107
* @param {number} params.quality - Image quality. Pass an integer between 0 to 100. Defaults to keep existing image quality.
@@ -115,7 +115,7 @@ export class Avatars extends Service {
115
115
* When one dimension is specified and the other is 0, the image is scaled with preserved aspect ratio. If both dimensions are 0, the API provides an image at source quality. If dimensions are not specified, the default size of image returned is 100x100px.
Copy file name to clipboardExpand all lines: src/services/functions.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ export class Functions extends Service {
74
74
* @param {string} params.body - HTTP body of execution. Default value is empty string.
75
75
* @param {boolean} params.async - Execute code in the background. Default value is false.
76
76
* @param {string} params.xpath - HTTP path of execution. Path can include query params. Default value is /
77
-
* @param {ExecutionMethod} params.method - HTTP method of execution. Default value is GET.
77
+
* @param {ExecutionMethod} params.method - HTTP method of execution. Default value is POST.
78
78
* @param {object} params.headers - HTTP headers of execution. Defaults to empty.
79
79
* @param {string} params.scheduledAt - Scheduled execution time in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future with precision in minutes.
80
80
* @throws {AppwriteException}
@@ -88,7 +88,7 @@ export class Functions extends Service {
88
88
* @param {string} body - HTTP body of execution. Default value is empty string.
89
89
* @param {boolean} async - Execute code in the background. Default value is false.
90
90
* @param {string} xpath - HTTP path of execution. Path can include query params. Default value is /
91
-
* @param {ExecutionMethod} method - HTTP method of execution. Default value is GET.
91
+
* @param {ExecutionMethod} method - HTTP method of execution. Default value is POST.
92
92
* @param {object} headers - HTTP headers of execution. Defaults to empty.
93
93
* @param {string} scheduledAt - Scheduled execution time in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future with precision in minutes.
0 commit comments