chore: regenerate

This commit is contained in:
root
2025-07-22 16:14:20 +00:00
parent b64f004a03
commit f286c229e6
112 changed files with 5012 additions and 4761 deletions
+3 -3
View File
@@ -2,7 +2,9 @@ import 'package:appwrite/appwrite.dart';
Client client = Client()
.setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
.setSession('') // The user session to authenticate with
.setKey('') //
.setJWT('<YOUR_JWT>'); // Your secret JSON Web Token
Databases databases = Databases(client);
@@ -10,6 +12,4 @@ Document result = await databases.upsertDocument(
databaseId: '<DATABASE_ID>',
collectionId: '<COLLECTION_ID>',
documentId: '<DOCUMENT_ID>',
data: {},
permissions: ["read("any")"], // optional
);