From 5a8e7b1c4bed4e793897a7ddb69241aa821854b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 22 Oct 2024 18:47:59 +0000 Subject: [PATCH] Deployed b3162f6 to main with MkDocs 1.6.1 and mike 2.1.3 --- main/404.html | 2 +- main/examples/alert/index.html | 2 +- main/examples/client/index.html | 2 +- main/index.html | 2 +- main/reference/index.html | 204 ++++++++++++++++---------------- main/sitemap.xml.gz | Bin 127 -> 127 bytes 6 files changed, 107 insertions(+), 105 deletions(-) diff --git a/main/404.html b/main/404.html index 110ee73..c9ef229 100644 --- a/main/404.html +++ b/main/404.html @@ -12,7 +12,7 @@ - + diff --git a/main/examples/alert/index.html b/main/examples/alert/index.html index 213f5d7..368d04a 100644 --- a/main/examples/alert/index.html +++ b/main/examples/alert/index.html @@ -16,7 +16,7 @@ - + diff --git a/main/examples/client/index.html b/main/examples/client/index.html index 9a67aaa..e99e7ec 100644 --- a/main/examples/client/index.html +++ b/main/examples/client/index.html @@ -16,7 +16,7 @@ - + diff --git a/main/index.html b/main/index.html index 7866606..d343e4e 100644 --- a/main/index.html +++ b/main/index.html @@ -14,7 +14,7 @@ - + diff --git a/main/reference/index.html b/main/reference/index.html index 80894a2..3a1b9ce 100644 --- a/main/reference/index.html +++ b/main/reference/index.html @@ -14,7 +14,7 @@ - + @@ -20587,7 +20587,8 @@
60 61 62 -63
def update(
+63
+64
def update(
     self, case_id: CaseId, fields: Optional[InputUpdateCase] = {}, **kwargs
 ) -> None:
 
@@ -20602,6 +20603,7 @@ 
"convention like other update methods. Please use the `fields` " "argument to prevent breaking changes in the future.", category=DeprecationWarning, + stacklevel=2, ) fields = kwargs["case"] @@ -20627,10 +20629,10 @@
Source code in thehive4py/endpoints/case.py -
65
-66
+              
66
 67
-68
def bulk_update(self, fields: InputBulkUpdateCase) -> None:
+68
+69
def bulk_update(self, fields: InputBulkUpdateCase) -> None:
     return self._session.make_request(
         "PATCH", path="/api/v1/case/_bulk", json=fields
     )
@@ -20653,11 +20655,11 @@ 
Source code in thehive4py/endpoints/case.py -
70
-71
+              
71
 72
 73
-74
def merge(self, case_ids: Sequence[CaseId]) -> OutputCase:
+74
+75
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}"
@@ -20681,10 +20683,10 @@