aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/http/http-methods.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/models/src/http/http-methods.ts')
-rw-r--r--packages/models/src/http/http-methods.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/models/src/http/http-methods.ts b/packages/models/src/http/http-methods.ts
new file mode 100644
index 000000000..ec3c855d8
--- /dev/null
+++ b/packages/models/src/http/http-methods.ts
@@ -0,0 +1,23 @@
1/** HTTP request method to indicate the desired action to be performed for a given resource. */
2export const HttpMethod = {
3 /** The CONNECT method establishes a tunnel to the server identified by the target resource. */
4 CONNECT: 'CONNECT',
5 /** The DELETE method deletes the specified resource. */
6 DELETE: 'DELETE',
7 /** The GET method requests a representation of the specified resource. Requests using GET should only retrieve data. */
8 GET: 'GET',
9 /** The HEAD method asks for a response identical to that of a GET request, but without the response body. */
10 HEAD: 'HEAD',
11 /** The OPTIONS method is used to describe the communication options for the target resource. */
12 OPTIONS: 'OPTIONS',
13 /** The PATCH method is used to apply partial modifications to a resource. */
14 PATCH: 'PATCH',
15 /** The POST method is used to submit an entity to the specified resource */
16 POST: 'POST',
17 /** The PUT method replaces all current representations of the target resource with the request payload. */
18 PUT: 'PUT',
19 /** The TRACE method performs a message loop-back test along the path to the target resource. */
20 TRACE: 'TRACE'
21} as const
22
23export type HttpMethodType = typeof HttpMethod[keyof typeof HttpMethod]