mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
chore: update SDK generator and sdks
This commit is contained in:
@@ -116,7 +116,7 @@ return [
|
||||
[
|
||||
'key' => 'android',
|
||||
'name' => 'Android',
|
||||
'version' => '8.2.0',
|
||||
'version' => '8.2.2',
|
||||
'url' => 'https://github.com/appwrite/sdk-for-android',
|
||||
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-android',
|
||||
'enabled' => true,
|
||||
@@ -413,7 +413,7 @@ return [
|
||||
[
|
||||
'key' => 'kotlin',
|
||||
'name' => 'Kotlin',
|
||||
'version' => '9.1.0',
|
||||
'version' => '9.1.2',
|
||||
'url' => 'https://github.com/appwrite/sdk-for-kotlin',
|
||||
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-kotlin',
|
||||
'enabled' => true,
|
||||
|
||||
Generated
+12
-12
@@ -3542,16 +3542,16 @@
|
||||
},
|
||||
{
|
||||
"name": "utopia-php/database",
|
||||
"version": "0.71.11",
|
||||
"version": "0.71.12",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/utopia-php/database.git",
|
||||
"reference": "644ed827aace63cbdf8c6c64a3998c11b43e3383"
|
||||
"reference": "72c2a9c185f0f606e4792913a071f744cca21d42"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/utopia-php/database/zipball/644ed827aace63cbdf8c6c64a3998c11b43e3383",
|
||||
"reference": "644ed827aace63cbdf8c6c64a3998c11b43e3383",
|
||||
"url": "https://api.github.com/repos/utopia-php/database/zipball/72c2a9c185f0f606e4792913a071f744cca21d42",
|
||||
"reference": "72c2a9c185f0f606e4792913a071f744cca21d42",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3592,9 +3592,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/utopia-php/database/issues",
|
||||
"source": "https://github.com/utopia-php/database/tree/0.71.11"
|
||||
"source": "https://github.com/utopia-php/database/tree/0.71.12"
|
||||
},
|
||||
"time": "2025-08-05T08:35:29+00:00"
|
||||
"time": "2025-08-05T09:38:25+00:00"
|
||||
},
|
||||
{
|
||||
"name": "utopia-php/detector",
|
||||
@@ -4859,16 +4859,16 @@
|
||||
"packages-dev": [
|
||||
{
|
||||
"name": "appwrite/sdk-generator",
|
||||
"version": "0.41.28",
|
||||
"version": "0.41.29",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/appwrite/sdk-generator.git",
|
||||
"reference": "8eace11070264c62c8da3c69498fb8dc98fcfaf7"
|
||||
"reference": "4af563f3b0879747efc8434eb8ed8bf97e75039f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/8eace11070264c62c8da3c69498fb8dc98fcfaf7",
|
||||
"reference": "8eace11070264c62c8da3c69498fb8dc98fcfaf7",
|
||||
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/4af563f3b0879747efc8434eb8ed8bf97e75039f",
|
||||
"reference": "4af563f3b0879747efc8434eb8ed8bf97e75039f",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -4904,9 +4904,9 @@
|
||||
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
|
||||
"support": {
|
||||
"issues": "https://github.com/appwrite/sdk-generator/issues",
|
||||
"source": "https://github.com/appwrite/sdk-generator/tree/0.41.28"
|
||||
"source": "https://github.com/appwrite/sdk-generator/tree/0.41.29"
|
||||
},
|
||||
"time": "2025-08-01T11:06:30+00:00"
|
||||
"time": "2025-08-04T04:34:45+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/annotations",
|
||||
|
||||
@@ -15,7 +15,7 @@ functions.createExecution(
|
||||
"<PATH>", // path (optional)
|
||||
ExecutionMethod.GET, // method (optional)
|
||||
mapOf( "a" to "b" ), // headers (optional)
|
||||
"", // scheduledAt (optional)
|
||||
"<SCHEDULED_AT>", // scheduledAt (optional)
|
||||
new CoroutineCallback<>((result, error) -> {
|
||||
if (error != null) {
|
||||
error.printStackTrace();
|
||||
|
||||
@@ -15,5 +15,5 @@ val result = functions.createExecution(
|
||||
path = "<PATH>", // (optional)
|
||||
method = ExecutionMethod.GET, // (optional)
|
||||
headers = mapOf( "a" to "b" ), // (optional)
|
||||
scheduledAt = "", // (optional)
|
||||
scheduledAt = "<SCHEDULED_AT>", // (optional)
|
||||
)
|
||||
@@ -16,7 +16,7 @@ functions.createExecution(
|
||||
"<PATH>", // path (optional)
|
||||
ExecutionMethod.GET, // method (optional)
|
||||
mapOf( "a" to "b" ), // headers (optional)
|
||||
"", // scheduledAt (optional)
|
||||
"<SCHEDULED_AT>", // scheduledAt (optional)
|
||||
new CoroutineCallback<>((result, error) -> {
|
||||
if (error != null) {
|
||||
error.printStackTrace();
|
||||
|
||||
@@ -16,5 +16,5 @@ val response = functions.createExecution(
|
||||
path = "<PATH>", // optional
|
||||
method = "GET", // optional
|
||||
headers = mapOf( "a" to "b" ), // optional
|
||||
scheduledAt = "" // optional
|
||||
scheduledAt = "<SCHEDULED_AT>" // optional
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user