PR comments

This commit is contained in:
tglide
2023-12-17 12:49:27 +00:00
parent 74e5a611eb
commit 9102a0d8c5
2 changed files with 5 additions and 5 deletions

View File

@@ -216,7 +216,6 @@ export async function getService(
const isAndroid = isAndroidJava || isAndroidKotlin;
const isAndroidServer = platform === Platform.ServerJava || platform === Platform.ServerKotlin;
const api = await getApi(version, platform);
console.log({ api });
const tag = api.tags?.find((n) => n.name === service);
const data: Awaited<ReturnType<typeof getService>> = {
@@ -234,7 +233,6 @@ export async function getService(
}
for (const { method, value, url } of iterateAllMethods(api, service)) {
// console.log({ method, value });
const operation = value as AppwriteOperationObject;
const parameters = getParameters(operation);
const responses: SDKMethod['responses'] = Object.entries(operation.responses ?? {}).map(