@@ -60,7 +60,7 @@ class Functions(override val config: Config, override val supabaseClient: Supaba
60
60
61
61
/* *
62
62
* Invokes a remote edge function. The authorization token is automatically added to the request.
63
- * @param function The function to invoke
63
+ * @param function The function to invoke. If name of the function is renamed, use the slug after URL
64
64
* @param builder The request builder to configure the request
65
65
* @param region The region where the function is invoked
66
66
* @throws RestException or one of its subclasses if receiving an error response
@@ -77,7 +77,7 @@ class Functions(override val config: Config, override val supabaseClient: Supaba
77
77
/* *
78
78
* Invokes a remote edge function. The authorization token is automatically added to the request.
79
79
* Note, if you want to serialize [body] to json, you need to add the [HttpHeaders.ContentType] header yourself.
80
- * @param function The function to invoke
80
+ * @param function The function to invoke. If name of the function is renamed, use the slug after URL
81
81
* @param body The body of the request
82
82
* @param headers Headers to add to the request
83
83
* @param region The region where the function is invoked
@@ -93,7 +93,7 @@ class Functions(override val config: Config, override val supabaseClient: Supaba
93
93
94
94
/* *
95
95
* Invokes a remote edge function. The authorization token is automatically added to the request.
96
- * @param function The function to invoke
96
+ * @param function The function to invoke. If name of the function is renamed, use the slug after URL
97
97
* @param headers Headers to add to the request
98
98
* @param region The region where the function is invoked
99
99
* @throws RestException or one of its subclasses if receiving an error response
@@ -107,7 +107,7 @@ class Functions(override val config: Config, override val supabaseClient: Supaba
107
107
108
108
/* *
109
109
* Builds an [EdgeFunction] which can be invoked multiple times
110
- * @param function The function name
110
+ * @param function The function name. If name of the function is renamed, use the slug after URL
111
111
* @param headers Headers to add to the requests when invoking the function
112
112
* @param region The region where the function is invoked
113
113
*/
0 commit comments