ExpoOriginal post
Rank 1: Thread
The Appwrite SDK defines the enum ExecutionMethod as ```ts
export declare enum ExecutionMethod {
GET = "GET",
POST = "POST",
PUT = "PUT",
PATCH = "PATCH",
DELETE = "DELETE",
OPTIONS = "OPTIONS"
}
(`appwrite@14.0.0/types/enums/execution-method.d.ts`)
This does not include all values inside of [the HTTP Spec](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) for HTTP methods.
Not sure if this is intentional - as such I'm opening a support ticket before going through with making a bug report for this one.
Summary
The SDK's `ExecutionMethod` enum does not include all HTTP Methods specified in the HTTP Spec. Developers are uncertain if this is intentional and are seeking support before filing a bug report.