@whitesev/utils 2.6.4 → 2.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -62,6 +62,19 @@ export type HttpxStatus =
62
62
  | 510
63
63
  | 511;
64
64
 
65
+ /**
66
+ * HTTP WebDav的请求方法
67
+ * + https://blog.csdn.net/weixin_48421613/article/details/128611546
68
+ */
69
+ export type HttpxWebDavMethod =
70
+ | "PROPFIND"
71
+ | "PROPPATCH"
72
+ | "MKCOL"
73
+ | "MOVE"
74
+ | "COPY"
75
+ | "LOCK"
76
+ | "UNLOCK";
77
+
65
78
  /**
66
79
  * HTTP 请求方法
67
80
  * + https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods
@@ -75,7 +88,8 @@ export type HttpxMethod =
75
88
  | "CONNECT"
76
89
  | "OPTIONS"
77
90
  | "TRACE"
78
- | "PATCH";
91
+ | "PATCH"
92
+ | HttpxWebDavMethod;
79
93
 
80
94
  /**
81
95
  * 重定向参数