From 253762a0838d3403221caf7cef41ad71fe4efc0b Mon Sep 17 00:00:00 2001 From: Kamforka Date: Thu, 17 Oct 2024 16:58:53 +0100 Subject: [PATCH] Deployed 67cf7cf to 2.0.0b6 with MkDocs 1.6.1 and mike 2.1.3 --- 2.0.0b6/404.html | 6 +- 2.0.0b6/examples/alert/index.html | 6 +- 2.0.0b6/examples/client/index.html | 6 +- 2.0.0b6/index.html | 6 +- 2.0.0b6/reference/index.html | 208 +++++++++++++++-------------- 5 files changed, 127 insertions(+), 105 deletions(-) diff --git a/2.0.0b6/404.html b/2.0.0b6/404.html index 01624a8..b4335fe 100644 --- a/2.0.0b6/404.html +++ b/2.0.0b6/404.html @@ -76,6 +76,10 @@ + + @@ -493,7 +497,7 @@

404 - Not found

- + diff --git a/2.0.0b6/examples/alert/index.html b/2.0.0b6/examples/alert/index.html index 8a1c66e..4db5e6e 100644 --- a/2.0.0b6/examples/alert/index.html +++ b/2.0.0b6/examples/alert/index.html @@ -85,6 +85,10 @@ + + @@ -1408,7 +1412,7 @@

Delete in bulk

- + diff --git a/2.0.0b6/examples/client/index.html b/2.0.0b6/examples/client/index.html index 898d70e..050c18c 100644 --- a/2.0.0b6/examples/client/index.html +++ b/2.0.0b6/examples/client/index.html @@ -85,6 +85,10 @@ + + @@ -871,7 +875,7 @@

Retries

- + diff --git a/2.0.0b6/index.html b/2.0.0b6/index.html index d106052..338eb13 100644 --- a/2.0.0b6/index.html +++ b/2.0.0b6/index.html @@ -83,6 +83,10 @@ + + @@ -604,7 +608,7 @@

Licensing

- + diff --git a/2.0.0b6/reference/index.html b/2.0.0b6/reference/index.html index 9894254..5edcce3 100644 --- a/2.0.0b6/reference/index.html +++ b/2.0.0b6/reference/index.html @@ -83,6 +83,10 @@ + + @@ -20423,7 +20427,8 @@
60 61 62 -63
def update(
+63
+64
def update(
     self, case_id: CaseId, fields: Optional[InputUpdateCase] = {}, **kwargs
 ) -> None:
 
@@ -20438,6 +20443,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"] @@ -20463,10 +20469,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
     )
@@ -20489,11 +20495,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}"
@@ -20517,10 +20523,10 @@