neurograph-core 1.202510052316__py3-none-any.whl → 1.202510092216__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.
@@ -0,0 +1,99 @@
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, Field, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from neurograph.v1.models.reporting_exploration_topic import ReportingExplorationTopic
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class ReportingPrimaryAnalysis(BaseModel):
27
+ """
28
+ ReportingPrimaryAnalysis
29
+ """ # noqa: E501
30
+ exploration_topics: Optional[List[ReportingExplorationTopic]] = Field(default=None, alias="explorationTopics")
31
+ key_findings: Optional[List[StrictStr]] = Field(default=None, alias="keyFindings")
32
+ summary: Optional[StrictStr] = None
33
+ __properties: ClassVar[List[str]] = ["explorationTopics", "keyFindings", "summary"]
34
+
35
+ model_config = ConfigDict(
36
+ populate_by_name=True,
37
+ validate_assignment=True,
38
+ protected_namespaces=(),
39
+ )
40
+
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> Optional[Self]:
53
+ """Create an instance of ReportingPrimaryAnalysis from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self) -> Dict[str, Any]:
57
+ """Return the dictionary representation of the model using alias.
58
+
59
+ This has the following differences from calling pydantic's
60
+ `self.model_dump(by_alias=True)`:
61
+
62
+ * `None` is only added to the output dict for nullable fields that
63
+ were set at model initialization. Other fields with value `None`
64
+ are ignored.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ ])
68
+
69
+ _dict = self.model_dump(
70
+ by_alias=True,
71
+ exclude=excluded_fields,
72
+ exclude_none=True,
73
+ )
74
+ # override the default output from pydantic by calling `to_dict()` of each item in exploration_topics (list)
75
+ _items = []
76
+ if self.exploration_topics:
77
+ for _item_exploration_topics in self.exploration_topics:
78
+ if _item_exploration_topics:
79
+ _items.append(_item_exploration_topics.to_dict())
80
+ _dict['explorationTopics'] = _items
81
+ return _dict
82
+
83
+ @classmethod
84
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
85
+ """Create an instance of ReportingPrimaryAnalysis from a dict"""
86
+ if obj is None:
87
+ return None
88
+
89
+ if not isinstance(obj, dict):
90
+ return cls.model_validate(obj)
91
+
92
+ _obj = cls.model_validate({
93
+ "explorationTopics": [ReportingExplorationTopic.from_dict(_item) for _item in obj["explorationTopics"]] if obj.get("explorationTopics") is not None else None,
94
+ "keyFindings": obj.get("keyFindings"),
95
+ "summary": obj.get("summary")
96
+ })
97
+ return _obj
98
+
99
+
@@ -0,0 +1,97 @@
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
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from neurograph.v1.models.reporting_content_config import ReportingContentConfig
23
+ from neurograph.v1.models.reporting_meta_config import ReportingMetaConfig
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class ReportingRichInsightsConfig(BaseModel):
28
+ """
29
+ ReportingRichInsightsConfig
30
+ """ # noqa: E501
31
+ content: Optional[ReportingContentConfig] = None
32
+ meta: Optional[ReportingMetaConfig] = None
33
+ __properties: ClassVar[List[str]] = ["content", "meta"]
34
+
35
+ model_config = ConfigDict(
36
+ populate_by_name=True,
37
+ validate_assignment=True,
38
+ protected_namespaces=(),
39
+ )
40
+
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> Optional[Self]:
53
+ """Create an instance of ReportingRichInsightsConfig from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self) -> Dict[str, Any]:
57
+ """Return the dictionary representation of the model using alias.
58
+
59
+ This has the following differences from calling pydantic's
60
+ `self.model_dump(by_alias=True)`:
61
+
62
+ * `None` is only added to the output dict for nullable fields that
63
+ were set at model initialization. Other fields with value `None`
64
+ are ignored.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ ])
68
+
69
+ _dict = self.model_dump(
70
+ by_alias=True,
71
+ exclude=excluded_fields,
72
+ exclude_none=True,
73
+ )
74
+ # override the default output from pydantic by calling `to_dict()` of content
75
+ if self.content:
76
+ _dict['content'] = self.content.to_dict()
77
+ # override the default output from pydantic by calling `to_dict()` of meta
78
+ if self.meta:
79
+ _dict['meta'] = self.meta.to_dict()
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
+ """Create an instance of ReportingRichInsightsConfig from a dict"""
85
+ if obj is None:
86
+ return None
87
+
88
+ if not isinstance(obj, dict):
89
+ return cls.model_validate(obj)
90
+
91
+ _obj = cls.model_validate({
92
+ "content": ReportingContentConfig.from_dict(obj["content"]) if obj.get("content") is not None else None,
93
+ "meta": ReportingMetaConfig.from_dict(obj["meta"]) if obj.get("meta") is not None else None
94
+ })
95
+ return _obj
96
+
97
+
@@ -0,0 +1,103 @@
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 neurograph.v1.models.reporting_chart_data import ReportingChartData
23
+ from neurograph.v1.models.reporting_visualization_insights import ReportingVisualizationInsights
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class ReportingVisualization(BaseModel):
28
+ """
29
+ ReportingVisualization
30
+ """ # noqa: E501
31
+ data: Optional[ReportingChartData] = None
32
+ id: Optional[StrictStr] = None
33
+ insights: Optional[ReportingVisualizationInsights] = None
34
+ title: Optional[StrictStr] = None
35
+ type: Optional[StrictStr] = None
36
+ __properties: ClassVar[List[str]] = ["data", "id", "insights", "title", "type"]
37
+
38
+ model_config = ConfigDict(
39
+ populate_by_name=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+
45
+ def to_str(self) -> str:
46
+ """Returns the string representation of the model using alias"""
47
+ return pprint.pformat(self.model_dump(by_alias=True))
48
+
49
+ def to_json(self) -> str:
50
+ """Returns the JSON representation of the model using alias"""
51
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
+ return json.dumps(self.to_dict())
53
+
54
+ @classmethod
55
+ def from_json(cls, json_str: str) -> Optional[Self]:
56
+ """Create an instance of ReportingVisualization from a JSON string"""
57
+ return cls.from_dict(json.loads(json_str))
58
+
59
+ def to_dict(self) -> Dict[str, Any]:
60
+ """Return the dictionary representation of the model using alias.
61
+
62
+ This has the following differences from calling pydantic's
63
+ `self.model_dump(by_alias=True)`:
64
+
65
+ * `None` is only added to the output dict for nullable fields that
66
+ were set at model initialization. Other fields with value `None`
67
+ are ignored.
68
+ """
69
+ excluded_fields: Set[str] = set([
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ # override the default output from pydantic by calling `to_dict()` of data
78
+ if self.data:
79
+ _dict['data'] = self.data.to_dict()
80
+ # override the default output from pydantic by calling `to_dict()` of insights
81
+ if self.insights:
82
+ _dict['insights'] = self.insights.to_dict()
83
+ return _dict
84
+
85
+ @classmethod
86
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
87
+ """Create an instance of ReportingVisualization from a dict"""
88
+ if obj is None:
89
+ return None
90
+
91
+ if not isinstance(obj, dict):
92
+ return cls.model_validate(obj)
93
+
94
+ _obj = cls.model_validate({
95
+ "data": ReportingChartData.from_dict(obj["data"]) if obj.get("data") is not None else None,
96
+ "id": obj.get("id"),
97
+ "insights": ReportingVisualizationInsights.from_dict(obj["insights"]) if obj.get("insights") is not None else None,
98
+ "title": obj.get("title"),
99
+ "type": obj.get("type")
100
+ })
101
+ return _obj
102
+
103
+
@@ -0,0 +1,91 @@
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
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neurograph-core
3
- Version: 1.202510052316
3
+ Version: 1.202510092216
4
4
  Summary: Neurograph Core
5
5
  Home-page:
6
6
  Author: Neurograph Development Team
@@ -1,5 +1,5 @@
1
1
  neurograph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- neurograph/v1/__init__.py,sha256=MT0GaRuKC4V18rcPntGkANsS1JdX8iTj08knA1VdXlQ,28895
2
+ neurograph/v1/__init__.py,sha256=w5fWDPSmY3cxFaq-6znSBg4AvDkdEf-JukselSJwdOY,30692
3
3
  neurograph/v1/api_client.py,sha256=DDElXCrEofUsxEKyghe4QzGQABihYiXZ7nQ-NXo0Qbo,27790
4
4
  neurograph/v1/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
5
5
  neurograph/v1/configuration.py,sha256=Z9W6H5lLIHbBY8hJwTw9Zd26kLWVOaoPwnc3daBOIVM,19190
@@ -18,11 +18,11 @@ neurograph/v1/api/lookup_api.py,sha256=FF-HYxUi3TweR1P7oQvYGqsYfvZFWst9GCEjcfC9u
18
18
  neurograph/v1/api/organization_api.py,sha256=3X0qublErpfx4J1zvPzjzY7S_AxcVi4vkc3APC519d8,77955
19
19
  neurograph/v1/api/organization_metadata_api.py,sha256=PtwuBFSY0FjCAB7fuR710CRkQbtR-xpruX9780hGQxk,34860
20
20
  neurograph/v1/api/persona_api.py,sha256=5uQJHMz3qo-iFPHZVeEcDe02GkkMvMDI5fCh7Kmqi7g,132658
21
- neurograph/v1/api/reporting_api.py,sha256=JPp-dByKSjNkYI0NiFCGsN8mlPNyGGLIzuSAnwZQFrI,58442
21
+ neurograph/v1/api/reporting_api.py,sha256=gN80nFO0wI96C5SJ3QvvUp42VAzs7GsJfRpY0mUcWwc,68912
22
22
  neurograph/v1/api/system_api.py,sha256=IIy_ywuthVoa9e_Mrhf34ZsPemMTFm-3lMxVT6DgaKI,10864
23
23
  neurograph/v1/api/user_api.py,sha256=0Y4xYK1n7WxkfAY8X6umW0y21mFkeKEaEWcLO9ub20o,10366
24
24
  neurograph/v1/api/workbench_api.py,sha256=BMhqbbd_PSZ27br7idOgyZFdxMQ0N7O4fFQq8n_6JVs,34221
25
- neurograph/v1/models/__init__.py,sha256=kKnrUtEqffB7eUrT6j2zlL6mmgTSaIX93cSKesR2hYE,15787
25
+ neurograph/v1/models/__init__.py,sha256=k6Rn_kqfaNtexN66wdIKUqTTJmr4Rw30W1JZpOF-HMQ,16848
26
26
  neurograph/v1/models/admin_permission_response.py,sha256=RPM3v7iutgJKHnZbVo5ALwqMO8UDc6K0DzHdEoRgubo,2936
27
27
  neurograph/v1/models/admin_set_permission_request.py,sha256=TQUB1ar9h-VmiRNm5cbUMCV5Rr98AXG7aew5BMyHBq0,2753
28
28
  neurograph/v1/models/admin_upsert_user_request.py,sha256=FtnMRtbtg-5rHEFvt62j5K9LhdyIcM1f52BkpLSfQyk,2740
@@ -47,7 +47,7 @@ neurograph/v1/models/client_metadata_request.py,sha256=F6nO2sIRozjIYsZ6pI9gb9vIK
47
47
  neurograph/v1/models/client_metadata_response.py,sha256=kyNOh6RgzfrukOc7i6argnVeAO6122fulUTxZzMB7UI,3987
48
48
  neurograph/v1/models/client_organization_brand.py,sha256=Kr0gpptq1rjITAwrppacHDGNj2cSWTBV7GskzswNAjE,3601
49
49
  neurograph/v1/models/client_organization_detail.py,sha256=V4UdD5vWf1RckuzPWt86X7t2OWuSGU0gVZ7WkWsXdMM,4206
50
- neurograph/v1/models/client_persona.py,sha256=3wlYrhRaz-3bro0acQ3wH1F-LZMiBF2oCpu5v3sIdIE,7636
50
+ neurograph/v1/models/client_persona.py,sha256=xT0NS9HqkX3Q7grZSC5GJCd5_6bHAxgFsnAIjdIQo34,7751
51
51
  neurograph/v1/models/client_persona_factor.py,sha256=h7x5fkXRXSlyCkIdSE0fHuuDB5uPhfulNNJCFbigUXc,3116
52
52
  neurograph/v1/models/client_persona_insight.py,sha256=yiQHjiYjvdLhzpRJDOWtFgslcvvnLylrqmVuYEGTyA4,2839
53
53
  neurograph/v1/models/client_persona_personality_trait.py,sha256=ac6z3pxe2mpZJbSEjs0uL8JZnViIZ3Idnf0KEqDY5Tg,2888
@@ -90,7 +90,7 @@ neurograph/v1/models/knowledge_assertion_response.py,sha256=A4wvo3vi_Z8w9rTuVH67
90
90
  neurograph/v1/models/knowledge_customer_query.py,sha256=DicUa5QawV_bcayluA1lgIu7DL8jno6Nl3UB-ua_ywU,3124
91
91
  neurograph/v1/models/knowledge_customer_response.py,sha256=UeARH1OzL7FojckE78St9LTUkxvsEiyh2JM3L8kRuGk,3532
92
92
  neurograph/v1/models/knowledge_enrichment_artifact.py,sha256=qvNiECbfrRAycfq_JQC8GmUCGPYwsKh7ow-MNtvlMLQ,5602
93
- neurograph/v1/models/knowledge_enrichment_artifact_create_request.py,sha256=tZ8w3bVW6dqqX1Ssu35_A7nj6gU7ihWmH6kORZMyg3w,4367
93
+ neurograph/v1/models/knowledge_enrichment_artifact_create_request.py,sha256=kksUFLBLgXU-wJVu90jUUonTXSneXX-VHTGVG3IUuH4,4469
94
94
  neurograph/v1/models/knowledge_enrichment_artifact_list_response.py,sha256=QV7XCpC2Kf_wXSbd8uLeTKyPHy_pxeiP4XIwm5ZMMUM,3628
95
95
  neurograph/v1/models/knowledge_enrichment_artifact_response.py,sha256=U0kYpPU1KmpEMVEJHv9D57p5_PgDaOUwcgwj2IUZ4_Y,3013
96
96
  neurograph/v1/models/knowledge_enrichment_artifact_update_output_request.py,sha256=KWi5Q_D6r-yCDCaFkadaw9RCOXf-6JmmRh_m3KpwNbo,3023
@@ -193,19 +193,32 @@ neurograph/v1/models/pgtype_int8.py,sha256=jDeN8o2tU2gsiTu0qR9tlwqNTZXzlOQWrtCOY
193
193
  neurograph/v1/models/pgtype_text.py,sha256=fOIS-9aEpA0pMgswkN8yehcG9Bzx6XYIbPXQTWcOk7o,2596
194
194
  neurograph/v1/models/pgtype_timestamp.py,sha256=EBT-tEr4tuItetIaorIe7l-wGF3adPnZ1NCLsmQQFaI,2966
195
195
  neurograph/v1/models/reporting_affinities_response.py,sha256=ILffpzqL27FSPHnw7KGcgznnlUG-NVwrD2K9DpxmxME,2672
196
+ neurograph/v1/models/reporting_chart_data.py,sha256=qXE6U8T1aGa6wv9hsWaSq21eGeIT39FYPtBMcdB52Ts,3161
197
+ neurograph/v1/models/reporting_chart_dataset.py,sha256=P0RPzhIw7Jg_3MhqD0oDSbQqyfXuf5Jq2sPxkV9zc5g,3027
198
+ neurograph/v1/models/reporting_chart_defaults.py,sha256=FMl-3qltYoq8RpV03cM9ypr-B7IbytOr4oSWngCF6bs,2867
199
+ neurograph/v1/models/reporting_chart_options.py,sha256=0J7EI0QiraIpo7oS_c_f47N8ejotYETUbFFnvCJkTh0,2971
200
+ neurograph/v1/models/reporting_content_config.py,sha256=daMpOwoCZGpds0hcTv_IErtL-lutu5kYBHzLTCoYSPA,4640
196
201
  neurograph/v1/models/reporting_customer_activity_response.py,sha256=fqRqD4mxFrA7oN_mZflP5WzUrmad82_Ky0l4fKrOa8g,2688
197
202
  neurograph/v1/models/reporting_daily_metric.py,sha256=m4ez3Caz-foe3MNT8Oyvhmz4JhLp0tmfO9LHvhtZDg8,3104
198
203
  neurograph/v1/models/reporting_daily_metrics_response.py,sha256=lmj9ClSx0BaO9Z16jjkWNmcj2yPP574eeRMEEZ-Vf6s,3143
204
+ neurograph/v1/models/reporting_data_range.py,sha256=AIiUoqPvXCXy0UTX_tz2H3NEy6jvzRMw1JiFtVcRf4U,2603
205
+ neurograph/v1/models/reporting_exploration_topic.py,sha256=HQzNOsVXUR5Z40xAfdvXV7icY7k0Su-CRzEFOxmW_9k,2749
206
+ neurograph/v1/models/reporting_header_config.py,sha256=0gjRrAa6wxvR9OVXo7olyX1BYWCD0-JFUHYScAQhrb4,2635
207
+ neurograph/v1/models/reporting_meta_config.py,sha256=690xmgJM_XtWxScuwOfbxu8ClMVkxJMighvihWvANlM,3515
199
208
  neurograph/v1/models/reporting_persona_activity_response.py,sha256=BSGu9QJnhmjN2Sl3kYhhV9ViJOHtnEHaSmbBtFIMa8M,2692
200
209
  neurograph/v1/models/reporting_personas_response.py,sha256=v28wgBg10nM2sqdnhnD7ib3J2J4X64WpvE5zazuQHLc,2656
210
+ neurograph/v1/models/reporting_primary_analysis.py,sha256=BgKJUzYzEB8nFombkSCOorb9WVeBbMH0l_QUYCBa_yE,3516
201
211
  neurograph/v1/models/reporting_query.py,sha256=4IyMl4MHKSEozjFdmyx6dP2ZL2qTgTQ_gLHYbUW_YhU,2733
212
+ neurograph/v1/models/reporting_rich_insights_config.py,sha256=mVBC3SQQmvcKRsDYlPfZt4Gxpw8lDZ6QOFwLuBiXYD0,3279
213
+ neurograph/v1/models/reporting_visualization.py,sha256=KAUc0ry2kV91s05GUkn1EMChNaF-flrFORQ_j6-8VJA,3549
214
+ neurograph/v1/models/reporting_visualization_insights.py,sha256=rjnV8m1zKLt9M3YYwigLbab52nahw8hEP1qSt-cALUM,2767
202
215
  neurograph/v1/models/workbench_workbench_url_check_request.py,sha256=3H9SYJE78OlRPvVUZbTW4_KELkp8UUlM7Urpj3YDwyU,2581
203
216
  neurograph/v1/models/workbench_workbench_url_check_response.py,sha256=X8x_i7U2x1ckfI3lSNvu1FUrp7lq3atXilYI5k10dbA,3913
204
217
  neurograph/v1/models/workbench_workbench_version.py,sha256=AsgikzRU6BRj99gRFGGTlkJA6eqUY2v1HKu22mxfNpU,3165
205
218
  neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
206
219
  neurograph/v1/models/workbench_workbench_version_response.py,sha256=nMupKXBsoi4eXD-fsp_5PHrMislATwoBpVIZU7mG9RM,3283
207
220
  neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=bAxjBeFe8EG3bXPUrLjfntlC65lK5p_ddPs_0yX3A9g,2994
208
- neurograph_core-1.202510052316.dist-info/METADATA,sha256=h3J0nwj1wh6YRy-wI3YEHPP7wI2fz5B-SsJvzsSHbzM,1902
209
- neurograph_core-1.202510052316.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
210
- neurograph_core-1.202510052316.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
211
- neurograph_core-1.202510052316.dist-info/RECORD,,
221
+ neurograph_core-1.202510092216.dist-info/METADATA,sha256=e96LlFMFV7Db9s1vcFZBzY-wUkAs9QrBVCa2NUxv6Yo,1902
222
+ neurograph_core-1.202510092216.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
223
+ neurograph_core-1.202510092216.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
224
+ neurograph_core-1.202510092216.dist-info/RECORD,,