From aa56e97410dd9514f5722498714552b2d517dccb Mon Sep 17 00:00:00 2001 From: Kamforka Date: Thu, 17 Oct 2024 16:45:38 +0100 Subject: [PATCH] Deployed 67cf7cf to 2.0.0b6 with MkDocs 1.6.1 and mike 2.1.3 --- 2.0.0b6/reference/index.html | 202 +++++++++++++++++------------------ 1 file changed, 100 insertions(+), 102 deletions(-) diff --git a/2.0.0b6/reference/index.html b/2.0.0b6/reference/index.html index a7bd2e0..9894254 100644 --- a/2.0.0b6/reference/index.html +++ b/2.0.0b6/reference/index.html @@ -20423,8 +20423,7 @@
60 61 62 -63 -64
def update(
+63
def update(
     self, case_id: CaseId, fields: Optional[InputUpdateCase] = {}, **kwargs
 ) -> None:
 
@@ -20439,7 +20438,6 @@ 
"convention like other update methods. Please use the `fields` " "argument to prevent breaking changes in the future.", category=DeprecationWarning, - stacklevel=2, ) fields = kwargs["case"] @@ -20465,10 +20463,10 @@
Source code in thehive4py/endpoints/case.py -
66
+              
65
+66
 67
-68
-69
def bulk_update(self, fields: InputBulkUpdateCase) -> None:
+68
def bulk_update(self, fields: InputBulkUpdateCase) -> None:
     return self._session.make_request(
         "PATCH", path="/api/v1/case/_bulk", json=fields
     )
@@ -20491,11 +20489,11 @@ 
Source code in thehive4py/endpoints/case.py -
71
+              
70
+71
 72
 73
-74
-75
def merge(self, case_ids: Sequence[CaseId]) -> OutputCase:
+74
def merge(self, case_ids: Sequence[CaseId]) -> OutputCase:
     case_id_subpath = ",".join([str(case_id) for case_id in case_ids])
     return self._session.make_request(
         "POST", path=f"/api/v1/case/_merge/{case_id_subpath}"
@@ -20519,10 +20517,10 @@