neurograph-core 1.202510092220__py3-none-any.whl → 1.202510232007__py3-none-any.whl

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 (33) hide show
  1. neurograph/v1/__init__.py +0 -34
  2. neurograph/v1/api/admin_api.py +8 -8
  3. neurograph/v1/api/reporting_api.py +36 -1475
  4. neurograph/v1/models/__init__.py +0 -17
  5. neurograph/v1/models/admin_user_detail_response.py +11 -4
  6. neurograph/v1/models/db_user_client_role.py +6 -2
  7. neurograph/v1/models/db_user_in_db.py +11 -4
  8. neurograph/v1/models/db_user_org_role.py +6 -2
  9. neurograph/v1/models/db_user_role.py +6 -2
  10. neurograph/v1/models/knowledge_enrichment_artifact_create_request.py +3 -1
  11. neurograph/v1/models/reporting_daily_metric.py +23 -7
  12. neurograph/v1/models/reporting_query.py +4 -2
  13. {neurograph_core-1.202510092220.dist-info → neurograph_core-1.202510232007.dist-info}/METADATA +1 -1
  14. {neurograph_core-1.202510092220.dist-info → neurograph_core-1.202510232007.dist-info}/RECORD +16 -33
  15. neurograph/v1/models/reporting_affinities_response.py +0 -89
  16. neurograph/v1/models/reporting_chart_data.py +0 -97
  17. neurograph/v1/models/reporting_chart_dataset.py +0 -93
  18. neurograph/v1/models/reporting_chart_defaults.py +0 -91
  19. neurograph/v1/models/reporting_chart_options.py +0 -93
  20. neurograph/v1/models/reporting_content_config.py +0 -113
  21. neurograph/v1/models/reporting_customer_activity_response.py +0 -89
  22. neurograph/v1/models/reporting_data_range.py +0 -89
  23. neurograph/v1/models/reporting_exploration_topic.py +0 -91
  24. neurograph/v1/models/reporting_header_config.py +0 -89
  25. neurograph/v1/models/reporting_meta_config.py +0 -99
  26. neurograph/v1/models/reporting_persona_activity_response.py +0 -89
  27. neurograph/v1/models/reporting_personas_response.py +0 -89
  28. neurograph/v1/models/reporting_primary_analysis.py +0 -99
  29. neurograph/v1/models/reporting_rich_insights_config.py +0 -97
  30. neurograph/v1/models/reporting_visualization.py +0 -103
  31. neurograph/v1/models/reporting_visualization_insights.py +0 -91
  32. {neurograph_core-1.202510092220.dist-info → neurograph_core-1.202510232007.dist-info}/WHEEL +0 -0
  33. {neurograph_core-1.202510092220.dist-info → neurograph_core-1.202510232007.dist-info}/top_level.txt +0 -0
@@ -1,91 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Neurograph Core
5
-
6
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
-
8
- The version of the OpenAPI document: 1.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- from __future__ import annotations
16
- import pprint
17
- import re # noqa: F401
18
- import json
19
-
20
- from pydantic import BaseModel, ConfigDict, StrictStr
21
- from typing import Any, ClassVar, Dict, List, Optional
22
- from typing import Optional, Set
23
- from typing_extensions import Self
24
-
25
- class ReportingVisualizationInsights(BaseModel):
26
- """
27
- ReportingVisualizationInsights
28
- """ # noqa: E501
29
- bullets: Optional[List[StrictStr]] = None
30
- summary: Optional[StrictStr] = None
31
- title: Optional[StrictStr] = None
32
- __properties: ClassVar[List[str]] = ["bullets", "summary", "title"]
33
-
34
- model_config = ConfigDict(
35
- populate_by_name=True,
36
- validate_assignment=True,
37
- protected_namespaces=(),
38
- )
39
-
40
-
41
- def to_str(self) -> str:
42
- """Returns the string representation of the model using alias"""
43
- return pprint.pformat(self.model_dump(by_alias=True))
44
-
45
- def to_json(self) -> str:
46
- """Returns the JSON representation of the model using alias"""
47
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
- return json.dumps(self.to_dict())
49
-
50
- @classmethod
51
- def from_json(cls, json_str: str) -> Optional[Self]:
52
- """Create an instance of ReportingVisualizationInsights from a JSON string"""
53
- return cls.from_dict(json.loads(json_str))
54
-
55
- def to_dict(self) -> Dict[str, Any]:
56
- """Return the dictionary representation of the model using alias.
57
-
58
- This has the following differences from calling pydantic's
59
- `self.model_dump(by_alias=True)`:
60
-
61
- * `None` is only added to the output dict for nullable fields that
62
- were set at model initialization. Other fields with value `None`
63
- are ignored.
64
- """
65
- excluded_fields: Set[str] = set([
66
- ])
67
-
68
- _dict = self.model_dump(
69
- by_alias=True,
70
- exclude=excluded_fields,
71
- exclude_none=True,
72
- )
73
- return _dict
74
-
75
- @classmethod
76
- def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
77
- """Create an instance of ReportingVisualizationInsights from a dict"""
78
- if obj is None:
79
- return None
80
-
81
- if not isinstance(obj, dict):
82
- return cls.model_validate(obj)
83
-
84
- _obj = cls.model_validate({
85
- "bullets": obj.get("bullets"),
86
- "summary": obj.get("summary"),
87
- "title": obj.get("title")
88
- })
89
- return _obj
90
-
91
-