[FIX] add missing ARCHIVE and RESTORE in the rest-tool.ts

This commit is contained in:
Edouard DUPIN 2024-10-23 10:59:12 +02:00
parent 9ed09d4fed
commit 5c1b7cd193

View File

@ -7,11 +7,15 @@
import { RestErrorResponse, isRestErrorResponse } from "./model";
export enum HTTPRequestModel {
ARCHIVE = "ARCHIVE",
DELETE = "DELETE",
HEAD = "HEAD",
GET = "GET",
OPTION = "OPTION",
PATCH = "PATCH",
POST = "POST",
PUT = "PUT",
RESTORE = "RESTORE",
}
export enum HTTPMimeType {
ALL = "*/*",