chore: make method group nullable

This commit is contained in:
ChiragAgg5k
2025-04-12 12:47:50 +05:30
parent eb349e1a6c
commit 75ea0123d5
3 changed files with 23 additions and 23 deletions

View File

@@ -10,7 +10,7 @@ export type SDKMethod = {
title: string;
description: string;
demo: string;
group: string;
group?: string;
parameters: Array<{
name: string;
description: string;
@@ -35,7 +35,7 @@ type SDKMethodModel = {
type AppwriteOperationObject = OpenAPIV3.OperationObject & {
'x-appwrite': {
method: string;
group: string;
group?: string;
weight: number;
cookies: boolean;
type: string;