taranis-models 1.3.3.dev8__tar.gz → 1.3.4.dev2__tar.gz
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.
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/PKG-INFO +1 -1
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/admin.py +1 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/report.py +9 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/PKG-INFO +1 -1
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/uv.lock +25 -25
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/.dockerignore +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/.gitignore +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/.python-version +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/LICENSE.md +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/README.md +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/__init__.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/assess.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/asset.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/base.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/dashboard.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/product.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/py.typed +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/types.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/models/user.py +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/pyproject.toml +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/setup.cfg +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/SOURCES.txt +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/dependency_links.txt +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/requires.txt +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/top_level.txt +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/__init__.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/admin.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/assess.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/asset.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/base.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/dashboard.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/product.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/report.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/types.pyi +0 -0
- {taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/typings/models/user.pyi +0 -0
|
@@ -18,6 +18,15 @@ class ReportItemAttributeGroup(TaranisBaseModel):
|
|
|
18
18
|
attributes: list[ReportItemAttribute] = Field(default_factory=list)
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class ReportTypes(TaranisBaseModel):
|
|
22
|
+
_core_endpoint: ClassVar[str] = "/analyze/report-types"
|
|
23
|
+
_model_name: ClassVar[str] = "report_type"
|
|
24
|
+
_pretty_name: ClassVar[str] = "Report Type"
|
|
25
|
+
|
|
26
|
+
id: int | None = None
|
|
27
|
+
title: str | None = ""
|
|
28
|
+
|
|
29
|
+
|
|
21
30
|
class ReportItem(TaranisBaseModel):
|
|
22
31
|
_core_endpoint: ClassVar[str] = "/analyze/report-items"
|
|
23
32
|
_model_name: ClassVar[str] = "report"
|
|
@@ -32,11 +32,11 @@ wheels = [
|
|
|
32
32
|
|
|
33
33
|
[[package]]
|
|
34
34
|
name = "certifi"
|
|
35
|
-
version = "2026.
|
|
35
|
+
version = "2026.2.25"
|
|
36
36
|
source = { registry = "https://pypi.org/simple" }
|
|
37
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
37
|
+
sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" }
|
|
38
38
|
wheels = [
|
|
39
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
39
|
+
{ url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" },
|
|
40
40
|
]
|
|
41
41
|
|
|
42
42
|
[[package]]
|
|
@@ -299,11 +299,11 @@ wheels = [
|
|
|
299
299
|
|
|
300
300
|
[[package]]
|
|
301
301
|
name = "python-dotenv"
|
|
302
|
-
version = "1.2.
|
|
302
|
+
version = "1.2.2"
|
|
303
303
|
source = { registry = "https://pypi.org/simple" }
|
|
304
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
304
|
+
sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" }
|
|
305
305
|
wheels = [
|
|
306
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
306
|
+
{ url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" },
|
|
307
307
|
]
|
|
308
308
|
|
|
309
309
|
[[package]]
|
|
@@ -323,27 +323,27 @@ wheels = [
|
|
|
323
323
|
|
|
324
324
|
[[package]]
|
|
325
325
|
name = "ruff"
|
|
326
|
-
version = "0.15.
|
|
326
|
+
version = "0.15.4"
|
|
327
327
|
source = { registry = "https://pypi.org/simple" }
|
|
328
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
328
|
+
sdist = { url = "https://files.pythonhosted.org/packages/da/31/d6e536cdebb6568ae75a7f00e4b4819ae0ad2640c3604c305a0428680b0c/ruff-0.15.4.tar.gz", hash = "sha256:3412195319e42d634470cc97aa9803d07e9d5c9223b99bcb1518f0c725f26ae1", size = 4569550, upload-time = "2026-02-26T20:04:14.959Z" }
|
|
329
329
|
wheels = [
|
|
330
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
331
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
332
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
333
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
334
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
335
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
336
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
337
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
338
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
339
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
340
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
341
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
342
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
343
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
344
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
345
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
346
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
330
|
+
{ url = "https://files.pythonhosted.org/packages/f2/82/c11a03cfec3a4d26a0ea1e571f0f44be5993b923f905eeddfc397c13d360/ruff-0.15.4-py3-none-linux_armv6l.whl", hash = "sha256:a1810931c41606c686bae8b5b9a8072adac2f611bb433c0ba476acba17a332e0", size = 10453333, upload-time = "2026-02-26T20:04:20.093Z" },
|
|
331
|
+
{ url = "https://files.pythonhosted.org/packages/ce/5d/6a1f271f6e31dffb31855996493641edc3eef8077b883eaf007a2f1c2976/ruff-0.15.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5a1632c66672b8b4d3e1d1782859e98d6e0b4e70829530666644286600a33992", size = 10853356, upload-time = "2026-02-26T20:04:05.808Z" },
|
|
332
|
+
{ url = "https://files.pythonhosted.org/packages/b1/d8/0fab9f8842b83b1a9c2bf81b85063f65e93fb512e60effa95b0be49bfc54/ruff-0.15.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:a4386ba2cd6c0f4ff75252845906acc7c7c8e1ac567b7bc3d373686ac8c222ba", size = 10187434, upload-time = "2026-02-26T20:03:54.656Z" },
|
|
333
|
+
{ url = "https://files.pythonhosted.org/packages/85/cc/cc220fd9394eff5db8d94dec199eec56dd6c9f3651d8869d024867a91030/ruff-0.15.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2496488bdfd3732747558b6f95ae427ff066d1fcd054daf75f5a50674411e75", size = 10535456, upload-time = "2026-02-26T20:03:52.738Z" },
|
|
334
|
+
{ url = "https://files.pythonhosted.org/packages/fa/0f/bced38fa5cf24373ec767713c8e4cadc90247f3863605fb030e597878661/ruff-0.15.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3f1c4893841ff2d54cbda1b2860fa3260173df5ddd7b95d370186f8a5e66a4ac", size = 10287772, upload-time = "2026-02-26T20:04:08.138Z" },
|
|
335
|
+
{ url = "https://files.pythonhosted.org/packages/2b/90/58a1802d84fed15f8f281925b21ab3cecd813bde52a8ca033a4de8ab0e7a/ruff-0.15.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:820b8766bd65503b6c30aaa6331e8ef3a6e564f7999c844e9a547c40179e440a", size = 11049051, upload-time = "2026-02-26T20:04:03.53Z" },
|
|
336
|
+
{ url = "https://files.pythonhosted.org/packages/d2/ac/b7ad36703c35f3866584564dc15f12f91cb1a26a897dc2fd13d7cb3ae1af/ruff-0.15.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9fb74bab47139c1751f900f857fa503987253c3ef89129b24ed375e72873e85", size = 11890494, upload-time = "2026-02-26T20:04:10.497Z" },
|
|
337
|
+
{ url = "https://files.pythonhosted.org/packages/93/3d/3eb2f47a39a8b0da99faf9c54d3eb24720add1e886a5309d4d1be73a6380/ruff-0.15.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f80c98765949c518142b3a50a5db89343aa90f2c2bf7799de9986498ae6176db", size = 11326221, upload-time = "2026-02-26T20:04:12.84Z" },
|
|
338
|
+
{ url = "https://files.pythonhosted.org/packages/ff/90/bf134f4c1e5243e62690e09d63c55df948a74084c8ac3e48a88468314da6/ruff-0.15.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:451a2e224151729b3b6c9ffb36aed9091b2996fe4bdbd11f47e27d8f2e8888ec", size = 11168459, upload-time = "2026-02-26T20:04:00.969Z" },
|
|
339
|
+
{ url = "https://files.pythonhosted.org/packages/b5/e5/a64d27688789b06b5d55162aafc32059bb8c989c61a5139a36e1368285eb/ruff-0.15.4-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:a8f157f2e583c513c4f5f896163a93198297371f34c04220daf40d133fdd4f7f", size = 11104366, upload-time = "2026-02-26T20:03:48.099Z" },
|
|
340
|
+
{ url = "https://files.pythonhosted.org/packages/f1/f6/32d1dcb66a2559763fc3027bdd65836cad9eb09d90f2ed6a63d8e9252b02/ruff-0.15.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:917cc68503357021f541e69b35361c99387cdbbf99bd0ea4aa6f28ca99ff5338", size = 10510887, upload-time = "2026-02-26T20:03:45.771Z" },
|
|
341
|
+
{ url = "https://files.pythonhosted.org/packages/ff/92/22d1ced50971c5b6433aed166fcef8c9343f567a94cf2b9d9089f6aa80fe/ruff-0.15.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:e9737c8161da79fd7cfec19f1e35620375bd8b2a50c3e77fa3d2c16f574105cc", size = 10285939, upload-time = "2026-02-26T20:04:22.42Z" },
|
|
342
|
+
{ url = "https://files.pythonhosted.org/packages/e6/f4/7c20aec3143837641a02509a4668fb146a642fd1211846634edc17eb5563/ruff-0.15.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:291258c917539e18f6ba40482fe31d6f5ac023994ee11d7bdafd716f2aab8a68", size = 10765471, upload-time = "2026-02-26T20:03:58.924Z" },
|
|
343
|
+
{ url = "https://files.pythonhosted.org/packages/d0/09/6d2f7586f09a16120aebdff8f64d962d7c4348313c77ebb29c566cefc357/ruff-0.15.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:3f83c45911da6f2cd5936c436cf86b9f09f09165f033a99dcf7477e34041cbc3", size = 11263382, upload-time = "2026-02-26T20:04:24.424Z" },
|
|
344
|
+
{ url = "https://files.pythonhosted.org/packages/1b/fa/2ef715a1cd329ef47c1a050e10dee91a9054b7ce2fcfdd6a06d139afb7ec/ruff-0.15.4-py3-none-win32.whl", hash = "sha256:65594a2d557d4ee9f02834fcdf0a28daa8b3b9f6cb2cb93846025a36db47ef22", size = 10506664, upload-time = "2026-02-26T20:03:50.56Z" },
|
|
345
|
+
{ url = "https://files.pythonhosted.org/packages/d0/a8/c688ef7e29983976820d18710f955751d9f4d4eb69df658af3d006e2ba3e/ruff-0.15.4-py3-none-win_amd64.whl", hash = "sha256:04196ad44f0df220c2ece5b0e959c2f37c777375ec744397d21d15b50a75264f", size = 11651048, upload-time = "2026-02-26T20:04:17.191Z" },
|
|
346
|
+
{ url = "https://files.pythonhosted.org/packages/3e/0a/9e1be9035b37448ce2e68c978f0591da94389ade5a5abafa4cf99985d1b2/ruff-0.15.4-py3-none-win_arm64.whl", hash = "sha256:60d5177e8cfc70e51b9c5fad936c634872a74209f934c1e79107d11787ad5453", size = 10966776, upload-time = "2026-02-26T20:03:56.908Z" },
|
|
347
347
|
]
|
|
348
348
|
|
|
349
349
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/requires.txt
RENAMED
|
File without changes
|
{taranis_models-1.3.3.dev8 → taranis_models-1.3.4.dev2}/taranis_models.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|