crowdsec-tracker-api 1.102.2__tar.gz → 1.102.3__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.
Files changed (17) hide show
  1. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/PKG-INFO +1 -1
  2. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api/models.py +19 -1
  3. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api/services/cves.py +1 -1
  4. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api/services/integrations.py +1 -1
  5. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api.egg-info/PKG-INFO +1 -1
  6. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/pyproject.toml +1 -1
  7. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/LICENSE +0 -0
  8. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/README.md +0 -0
  9. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api/__init__.py +0 -0
  10. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api/base_model.py +0 -0
  11. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api/http_client.py +0 -0
  12. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api/services/__init__.py +0 -0
  13. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api.egg-info/SOURCES.txt +0 -0
  14. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api.egg-info/dependency_links.txt +0 -0
  15. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api.egg-info/requires.txt +0 -0
  16. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/crowdsec_tracker_api.egg-info/top_level.txt +0 -0
  17. {crowdsec_tracker_api-1.102.2 → crowdsec_tracker_api-1.102.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crowdsec_tracker_api
3
- Version: 1.102.2
3
+ Version: 1.102.3
4
4
  Summary: This is the API to manage Crowdsec Live Exploit Tracker service
5
5
  Author-email: crowdsec <info@crowdsec.net>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: <stdin>
3
- # timestamp: 2026-01-29T15:05:21+00:00
3
+ # timestamp: 2026-01-29T17:02:55+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -170,6 +170,15 @@ class CVEResponseBase(BaseModelSdk):
170
170
  title='Opportunity Score',
171
171
  ),
172
172
  ] = 0
173
+ momentum_score: Annotated[
174
+ Optional[int],
175
+ Field(
176
+ description="Momentum score indicating the vulnerability's trendiness based on signal comparison with the previous month. Higher scores (4-5) indicate significantly more signals this month than last month's average, while lower scores (0-1) indicate declining activity (between 0-5)",
177
+ ge=0,
178
+ le=5,
179
+ title='Momentum Score',
180
+ ),
181
+ ] = 0
173
182
  first_seen: Annotated[
174
183
  Optional[datetime], Field(description='First seen date', title='First Seen')
175
184
  ] = None
@@ -269,6 +278,15 @@ class GetCVEResponse(BaseModelSdk):
269
278
  title='Opportunity Score',
270
279
  ),
271
280
  ] = 0
281
+ momentum_score: Annotated[
282
+ Optional[int],
283
+ Field(
284
+ description="Momentum score indicating the vulnerability's trendiness based on signal comparison with the previous month. Higher scores (4-5) indicate significantly more signals this month than last month's average, while lower scores (0-1) indicate declining activity (between 0-5)",
285
+ ge=0,
286
+ le=5,
287
+ title='Momentum Score',
288
+ ),
289
+ ] = 0
272
290
  first_seen: Annotated[
273
291
  Optional[datetime], Field(description='First seen date', title='First Seen')
274
292
  ] = None
@@ -11,7 +11,7 @@ from ..http_client import HttpClient
11
11
 
12
12
  class Cves(Service):
13
13
  def __init__(self, auth: Auth, base_url: str = "https://admin.api.crowdsec.net/v1") -> None:
14
- super().__init__(base_url=base_url, auth=auth, user_agent="crowdsec_tracker_api/1.102.2")
14
+ super().__init__(base_url=base_url, auth=auth, user_agent="crowdsec_tracker_api/1.102.3")
15
15
 
16
16
  def get_cves(
17
17
  self,
@@ -11,7 +11,7 @@ from ..http_client import HttpClient
11
11
 
12
12
  class Integrations(Service):
13
13
  def __init__(self, auth: Auth, base_url: str = "https://admin.api.crowdsec.net/v1") -> None:
14
- super().__init__(base_url=base_url, auth=auth, user_agent="crowdsec_tracker_api/1.102.2")
14
+ super().__init__(base_url=base_url, auth=auth, user_agent="crowdsec_tracker_api/1.102.3")
15
15
 
16
16
  def get_integrations(
17
17
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crowdsec_tracker_api
3
- Version: 1.102.2
3
+ Version: 1.102.3
4
4
  Summary: This is the API to manage Crowdsec Live Exploit Tracker service
5
5
  Author-email: crowdsec <info@crowdsec.net>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "crowdsec_tracker_api"
7
- version = "1.102.2"
7
+ version = "1.102.3"
8
8
  license = { text = "MIT" }
9
9
  authors = [
10
10
  { name="crowdsec", email="info@crowdsec.net" }