neurograph-core 1.202509282026__py3-none-any.whl → 1.202510040107__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 (26) hide show
  1. neurograph/v1/__init__.py +17 -218
  2. neurograph/v1/api/__init__.py +2 -29
  3. neurograph/v1/api/admin_api.py +549 -1
  4. neurograph/v1/api/client_api.py +263 -0
  5. neurograph/v1/api/knowledge_api.py +296 -0
  6. neurograph/v1/api/knowledge_extract_api.py +1 -1
  7. neurograph/v1/api/lookup_api.py +2 -0
  8. neurograph/v1/api/organization_api.py +528 -1
  9. neurograph/v1/api/reporting_api.py +300 -0
  10. neurograph/v1/api/user_api.py +18 -1092
  11. neurograph/v1/api_client.py +4 -4
  12. neurograph/v1/models/__init__.py +8 -189
  13. neurograph/v1/models/knowledge_enrichment_artifact_create_request.py +3 -1
  14. neurograph/v1/models/knowledge_enrichment_query.py +3 -1
  15. neurograph/v1/models/knowledge_product.py +103 -0
  16. neurograph/v1/models/knowledge_product_upsert_request.py +95 -0
  17. neurograph/v1/models/knowledge_product_upsert_response.py +99 -0
  18. neurograph/v1/models/{db_lookup_environment.py → lookup_env.py} +6 -12
  19. neurograph/v1/models/lookup_lookup_environments_response.py +3 -3
  20. neurograph/v1/models/reporting_daily_metric.py +95 -0
  21. neurograph/v1/models/reporting_daily_metrics_response.py +97 -0
  22. neurograph/v1/models/reporting_query.py +91 -0
  23. {neurograph_core-1.202509282026.dist-info → neurograph_core-1.202510040107.dist-info}/METADATA +2 -3
  24. {neurograph_core-1.202509282026.dist-info → neurograph_core-1.202510040107.dist-info}/RECORD +26 -19
  25. {neurograph_core-1.202509282026.dist-info → neurograph_core-1.202510040107.dist-info}/WHEEL +0 -0
  26. {neurograph_core-1.202509282026.dist-info → neurograph_core-1.202510040107.dist-info}/top_level.txt +0 -0
@@ -19,7 +19,7 @@ import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
- from neurograph.v1.models.db_lookup_environment import DbLookupEnvironment
22
+ from neurograph.v1.models.lookup_env import LookupEnv
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
25
25
 
@@ -27,7 +27,7 @@ class LookupLookupEnvironmentsResponse(BaseModel):
27
27
  """
28
28
  LookupLookupEnvironmentsResponse
29
29
  """ # noqa: E501
30
- data: Optional[List[DbLookupEnvironment]] = None
30
+ data: Optional[List[LookupEnv]] = None
31
31
  error: Optional[StrictStr] = None
32
32
  __properties: ClassVar[List[str]] = ["data", "error"]
33
33
 
@@ -89,7 +89,7 @@ class LookupLookupEnvironmentsResponse(BaseModel):
89
89
  return cls.model_validate(obj)
90
90
 
91
91
  _obj = cls.model_validate({
92
- "data": [DbLookupEnvironment.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None,
92
+ "data": [LookupEnv.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None,
93
93
  "error": obj.get("error")
94
94
  })
95
95
  return _obj
@@ -0,0 +1,95 @@
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, StrictFloat, StrictInt, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional, Union
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class ReportingDailyMetric(BaseModel):
26
+ """
27
+ ReportingDailyMetric
28
+ """ # noqa: E501
29
+ avg_lifetime_value: Optional[Union[StrictFloat, StrictInt]] = None
30
+ persona_name: Optional[StrictStr] = None
31
+ total_customers: Optional[StrictInt] = None
32
+ total_orders: Optional[StrictInt] = None
33
+ total_visits: Optional[StrictInt] = None
34
+ __properties: ClassVar[List[str]] = ["avg_lifetime_value", "persona_name", "total_customers", "total_orders", "total_visits"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of ReportingDailyMetric from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ """
67
+ excluded_fields: Set[str] = set([
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ return _dict
76
+
77
+ @classmethod
78
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
79
+ """Create an instance of ReportingDailyMetric from a dict"""
80
+ if obj is None:
81
+ return None
82
+
83
+ if not isinstance(obj, dict):
84
+ return cls.model_validate(obj)
85
+
86
+ _obj = cls.model_validate({
87
+ "avg_lifetime_value": obj.get("avg_lifetime_value"),
88
+ "persona_name": obj.get("persona_name"),
89
+ "total_customers": obj.get("total_customers"),
90
+ "total_orders": obj.get("total_orders"),
91
+ "total_visits": obj.get("total_visits")
92
+ })
93
+ return _obj
94
+
95
+
@@ -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, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from neurograph.v1.models.reporting_daily_metric import ReportingDailyMetric
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class ReportingDailyMetricsResponse(BaseModel):
27
+ """
28
+ ReportingDailyMetricsResponse
29
+ """ # noqa: E501
30
+ data: Optional[List[ReportingDailyMetric]] = None
31
+ error: Optional[StrictStr] = None
32
+ __properties: ClassVar[List[str]] = ["data", "error"]
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 ReportingDailyMetricsResponse 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
+ # override the default output from pydantic by calling `to_dict()` of each item in data (list)
74
+ _items = []
75
+ if self.data:
76
+ for _item_data in self.data:
77
+ if _item_data:
78
+ _items.append(_item_data.to_dict())
79
+ _dict['data'] = _items
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
+ """Create an instance of ReportingDailyMetricsResponse 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
+ "data": [ReportingDailyMetric.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None,
93
+ "error": obj.get("error")
94
+ })
95
+ return _obj
96
+
97
+
@@ -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 ReportingQuery(BaseModel):
26
+ """
27
+ ReportingQuery
28
+ """ # noqa: E501
29
+ client_uid: Optional[StrictStr] = None
30
+ end_date: Optional[StrictStr] = None
31
+ start_date: Optional[StrictStr] = None
32
+ __properties: ClassVar[List[str]] = ["client_uid", "end_date", "start_date"]
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 ReportingQuery 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 ReportingQuery 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
+ "client_uid": obj.get("client_uid"),
86
+ "end_date": obj.get("end_date"),
87
+ "start_date": obj.get("start_date")
88
+ })
89
+ return _obj
90
+
91
+
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neurograph-core
3
- Version: 1.202509282026
3
+ Version: 1.202510040107
4
4
  Summary: Neurograph Core
5
5
  Home-page:
6
6
  Author: Neurograph Development Team
7
7
  Author-email: team@openapitools.org
8
- License: (c) 2025 Neurograph. All rights reserved.
8
+ License: (c) Neurograph 2025. All rights reserved.
9
9
  Project-URL: Repository, https://github.com/NeuroGraph-AI/core/
10
10
  Keywords: OpenAPI,OpenAPI-Generator,Neurograph Core
11
11
  Classifier: Programming Language :: Python :: 3
@@ -24,7 +24,6 @@ Requires-Dist: urllib3<3.0.0,>=2.1.0
24
24
  Requires-Dist: python-dateutil>=2.8.2
25
25
  Requires-Dist: pydantic>=2
26
26
  Requires-Dist: typing-extensions>=4.7.1
27
- Requires-Dist: lazy-imports<2,>=1
28
27
  Dynamic: author-email
29
28
 
30
29
  # Neurograph Core Python SDK
@@ -1,27 +1,28 @@
1
1
  neurograph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- neurograph/v1/__init__.py,sha256=AnqMgNW056VLYTpAtH36y4hsoQFpWhsDRGwg4JWckts,49499
3
- neurograph/v1/api_client.py,sha256=E7Ee4FJDhsq1MSZx1Xhaaabln3Ww8DZhzK7rk7Z4Evc,27790
2
+ neurograph/v1/__init__.py,sha256=z6Dz_duQ709r8FBGS5lWcotDFPTZHnYudgbc-g1kcMU,28229
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
6
6
  neurograph/v1/exceptions.py,sha256=I4t1fFbhv-J1GCFTfEPCwpt44WyqWNjLwQCVafRLMB4,6477
7
7
  neurograph/v1/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  neurograph/v1/rest.py,sha256=76e_8kyCWAYYFmtCFJajhCm7clvTTufaidBiNl6pNEA,9473
9
- neurograph/v1/api/__init__.py,sha256=ardnqKKHqutuif3cae9aDDnwncHvPWS-dJ32gZwrY5Y,2039
10
- neurograph/v1/api/admin_api.py,sha256=mB3UbnN5iLRkdyamfypNixHMjeHBiaQfdoF6hoezwGs,22013
9
+ neurograph/v1/api/__init__.py,sha256=jzr1RuqGQ_loqq3CyAZWo52K7ifBbOyehvoePmVojcs,924
10
+ neurograph/v1/api/admin_api.py,sha256=wfhfTJUoot-B_EN5JZmoHSOiKm5q1HNjDT_TKs-7Wv0,43353
11
11
  neurograph/v1/api/authentication_api.py,sha256=5Qzs_TMzcjrPAQxbWAZ6HHXM80Fqfv42hq9_uzkKRAI,33388
12
- neurograph/v1/api/client_api.py,sha256=BMQpol_76M9ab2LTo1E87c479HUP-_Kny4-IG_WTGDc,87619
12
+ neurograph/v1/api/client_api.py,sha256=XEtI472SI4gtCLMt8LR54_bDqbsk_BEBqdI1bUjVHh8,97977
13
13
  neurograph/v1/api/client_metadata_api.py,sha256=799y_V9AdA_TYCeN-qTEtKUFbq05Mv1vgCc0UY4qpcc,45652
14
14
  neurograph/v1/api/dagster_api.py,sha256=ZTV1ozVWZvX3ocU-y4Ks2cUbnFjPut-EHDZ-bDXK7gU,22069
15
- neurograph/v1/api/knowledge_api.py,sha256=MIqFWRc1hj1sAXpmRWKze5ulTVU1fYWrucnBB6E9Xzo,187328
16
- neurograph/v1/api/knowledge_extract_api.py,sha256=SkaITyaEukSt3murGIv2vT993-XvELaftmItV4rIng4,69067
17
- neurograph/v1/api/lookup_api.py,sha256=duNOSlfhf9q6VjlTBeq6LfZS2BC3iuTiQaTUnh-najQ,60608
18
- neurograph/v1/api/organization_api.py,sha256=C9u7LJtUYGVLQCpjtWRKn_-p6c1X3ZSvxp0gV01gqTc,57026
15
+ neurograph/v1/api/knowledge_api.py,sha256=CEFX0AULDEOqiykyouuZ4xaQG_jZ8mbaHS2kvpttf9M,199015
16
+ neurograph/v1/api/knowledge_extract_api.py,sha256=ggHBzFsfXEqaWJgX21jnDNnE4NRwiJVjtEfT4mGU5FU,69068
17
+ neurograph/v1/api/lookup_api.py,sha256=FF-HYxUi3TweR1P7oQvYGqsYfvZFWst9GCEjcfC9u7k,60659
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=A1X57XMqLl5usY26744TFBMSyBwcSGdKPLNEakmiatU,11463
21
22
  neurograph/v1/api/system_api.py,sha256=IIy_ywuthVoa9e_Mrhf34ZsPemMTFm-3lMxVT6DgaKI,10864
22
- neurograph/v1/api/user_api.py,sha256=eGfqmkkWKHwBFfoFQ1Qs1m46JVC0IzoeXvaEUzkz3k8,52187
23
+ neurograph/v1/api/user_api.py,sha256=0Y4xYK1n7WxkfAY8X6umW0y21mFkeKEaEWcLO9ub20o,10366
23
24
  neurograph/v1/api/workbench_api.py,sha256=BMhqbbd_PSZ27br7idOgyZFdxMQ0N7O4fFQq8n_6JVs,34221
24
- neurograph/v1/models/__init__.py,sha256=hXjAki-Q7nBzEyJ3xQYrl_tgSmZ2V1_uV9kKKTpRr8g,30466
25
+ neurograph/v1/models/__init__.py,sha256=Z_iL5Hb0q3AILjSLkboh4JUvNlGm7CbMngN2dNsdwiA,15403
25
26
  neurograph/v1/models/admin_permission_response.py,sha256=RPM3v7iutgJKHnZbVo5ALwqMO8UDc6K0DzHdEoRgubo,2936
26
27
  neurograph/v1/models/admin_set_permission_request.py,sha256=TQUB1ar9h-VmiRNm5cbUMCV5Rr98AXG7aew5BMyHBq0,2753
27
28
  neurograph/v1/models/admin_upsert_user_request.py,sha256=FtnMRtbtg-5rHEFvt62j5K9LhdyIcM1f52BkpLSfQyk,2740
@@ -74,7 +75,6 @@ neurograph/v1/models/db_knowledge_customer.py,sha256=aBjFRxP9oGzqv5UIS13uaqYqhpR
74
75
  neurograph/v1/models/db_knowledge_order.py,sha256=OT6sgVsrYoTNaNpbU8Pmdyzlux-9xnoTaESngYWpD7k,9140
75
76
  neurograph/v1/models/db_knowledge_product.py,sha256=jkyOacWkgSakdT2SBM8cH9fwiLmn-12QZ0leatGPgaI,3612
76
77
  neurograph/v1/models/db_knowledge_store.py,sha256=wVT3ruIFhibYScSMa-SJ0XpPmuXGElUeXp2lbGhtP34,3118
77
- neurograph/v1/models/db_lookup_environment.py,sha256=gByphqmX6jzlUR1tMAebM08ah02isVz0EqCePfW18mY,3035
78
78
  neurograph/v1/models/db_my_client.py,sha256=4STLsY76RbMu5BbyjikEOlbt_1PoLLjNKIl3IK3i8x0,3134
79
79
  neurograph/v1/models/db_my_org.py,sha256=HVYZdlORBmUKkm-XMtLNTLGGyvzLfY34HNJlg5xFYkw,4482
80
80
  neurograph/v1/models/db_persona_factor_create_params.py,sha256=a0u8yJJRMjRFtsuYlDp2JwrU0O2ZlCitVQX_sB6tvZY,3074
@@ -90,12 +90,12 @@ 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=w_RCpawJ-hQw_MogrmrAAuvzWoguGL97bupghtk4EbM,4285
93
+ neurograph/v1/models/knowledge_enrichment_artifact_create_request.py,sha256=tZ8w3bVW6dqqX1Ssu35_A7nj6gU7ihWmH6kORZMyg3w,4367
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
97
97
  neurograph/v1/models/knowledge_enrichment_artifact_update_status_request.py,sha256=U0IxNhuBFENClAXrfzfjidKCXLmKM6UJewKkJazi3gQ,3392
98
- neurograph/v1/models/knowledge_enrichment_query.py,sha256=pLGc_ST6Hjg6r6EnxbP6dOzGjpRz5cx7b_zhG3UaaVs,3193
98
+ neurograph/v1/models/knowledge_enrichment_query.py,sha256=OegSZRkDeruUwJxTFiVcft3AL39OW7NSrDVjjiT-SWg,3275
99
99
  neurograph/v1/models/knowledge_entity.py,sha256=jUJDNCGw6PyOelQZVEzA1y8phYricyTOL77ZsyTsu_E,4568
100
100
  neurograph/v1/models/knowledge_entity_create_request.py,sha256=96z7BBLzkcB03acLVl63aMjAmdoIy9XbsQJgNlUs1_c,3130
101
101
  neurograph/v1/models/knowledge_entity_create_response.py,sha256=4eLYm1MFW2Ue5Bawc6d9QgUhkXs8W4Ysb7FDoOogVtU,3345
@@ -121,14 +121,18 @@ neurograph/v1/models/knowledge_ingest_raw_row.py,sha256=wS5SNP0JhFAb-63RNta8I1Nk
121
121
  neurograph/v1/models/knowledge_kind_response.py,sha256=nwpvLJ0cvrCO7q1XpQjyp-omUaQAoZyv_yzPNbyUXYI,2629
122
122
  neurograph/v1/models/knowledge_order_query.py,sha256=3aLKfozkQ7Hcn6-zeEtJDGN01KkoOjSyov48u_vabhI,5066
123
123
  neurograph/v1/models/knowledge_order_response.py,sha256=8Tx741pcqfNKFk7mejVHH9NBCKx40I3-ZWdTtG-zYRQ,3496
124
+ neurograph/v1/models/knowledge_product.py,sha256=4kiFFGLWxN36IMGMhxlK8oNrZ7qN3F61SVuwa-flD1o,3316
124
125
  neurograph/v1/models/knowledge_product_query.py,sha256=jZKf9dsHOj7FEmTpF2qMKahonDqbH08URY8cOTdRhEE,3218
125
126
  neurograph/v1/models/knowledge_product_response.py,sha256=mVsk0JVnP_TZGsbMwVuwIIJs4aKHU6G08PwIHbTVtw0,3520
127
+ neurograph/v1/models/knowledge_product_upsert_request.py,sha256=yu33U8Czh1n-go5zyp9JeOdrmVUXMprNIc-HQkHYdrE,3029
128
+ neurograph/v1/models/knowledge_product_upsert_response.py,sha256=WIQU-3yqOj1l8cojf4Ugk3PGUmh5o_qG6hT0RAv-bf0,3353
126
129
  neurograph/v1/models/knowledge_query.py,sha256=OHJ66k0cqhTTnLTWTlGpWdR37MrhDXOI4DFRHOVcegM,3090
127
130
  neurograph/v1/models/knowledge_store_query.py,sha256=kmOSjDNRZUMcm8O6rqq3OrlkmqHXJ7ydesNDS-fBj9o,3165
128
131
  neurograph/v1/models/knowledge_store_response.py,sha256=LisJ--lX25X9ygalTcVJim1Hkm8ATFK3aMYdsjcy6O0,3496
132
+ neurograph/v1/models/lookup_env.py,sha256=Yo604kpw12YakRNfuJQ75YCPHH3aWZq53CvOd4rJIWo,2570
129
133
  neurograph/v1/models/lookup_language.py,sha256=YMyl2EcRcOmNUT4RcbnvNW9tZ4lzTer2GlTN1kaiT0k,3010
130
134
  neurograph/v1/models/lookup_language_response.py,sha256=xCkROJKg2bzWnYx3qP7RYH4r7xfEQYdodChlBiBAa_E,3090
131
- neurograph/v1/models/lookup_lookup_environments_response.py,sha256=pR_5IXkpLPiLWiXhA1lQ02flJwJaurJFkB-RBzNnD5k,3151
135
+ neurograph/v1/models/lookup_lookup_environments_response.py,sha256=WMHE6ipX1rDQJhoqZSSB6nD_HhMMlNIrezln4MWPFT4,3110
132
136
  neurograph/v1/models/lookup_role.py,sha256=SMO9fACsQUUA8LCAQBsNLNwdRsqSteSrGrPVlTkR2bo,2599
133
137
  neurograph/v1/models/lookup_roles_response.py,sha256=RkpuzaCfdSbn8ZfD_RAUWDUkZdYvN_QpHNRQnrgJ9ZA,3062
134
138
  neurograph/v1/models/lookup_state.py,sha256=Y2AEVWdfzt-AxnQmG9JdE7ixOEYIpOVCEpfo8o8fEyQ,2660
@@ -188,13 +192,16 @@ neurograph/v1/models/pgtype_infinity_modifier.py,sha256=rROhs-_4H5Vuk0omVmVTzu8e
188
192
  neurograph/v1/models/pgtype_int8.py,sha256=jDeN8o2tU2gsiTu0qR9tlwqNTZXzlOQWrtCOYtEiY-Y,2592
189
193
  neurograph/v1/models/pgtype_text.py,sha256=fOIS-9aEpA0pMgswkN8yehcG9Bzx6XYIbPXQTWcOk7o,2596
190
194
  neurograph/v1/models/pgtype_timestamp.py,sha256=EBT-tEr4tuItetIaorIe7l-wGF3adPnZ1NCLsmQQFaI,2966
195
+ neurograph/v1/models/reporting_daily_metric.py,sha256=m4ez3Caz-foe3MNT8Oyvhmz4JhLp0tmfO9LHvhtZDg8,3104
196
+ neurograph/v1/models/reporting_daily_metrics_response.py,sha256=lmj9ClSx0BaO9Z16jjkWNmcj2yPP574eeRMEEZ-Vf6s,3143
197
+ neurograph/v1/models/reporting_query.py,sha256=4IyMl4MHKSEozjFdmyx6dP2ZL2qTgTQ_gLHYbUW_YhU,2733
191
198
  neurograph/v1/models/workbench_workbench_url_check_request.py,sha256=3H9SYJE78OlRPvVUZbTW4_KELkp8UUlM7Urpj3YDwyU,2581
192
199
  neurograph/v1/models/workbench_workbench_url_check_response.py,sha256=X8x_i7U2x1ckfI3lSNvu1FUrp7lq3atXilYI5k10dbA,3913
193
200
  neurograph/v1/models/workbench_workbench_version.py,sha256=AsgikzRU6BRj99gRFGGTlkJA6eqUY2v1HKu22mxfNpU,3165
194
201
  neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
195
202
  neurograph/v1/models/workbench_workbench_version_response.py,sha256=nMupKXBsoi4eXD-fsp_5PHrMislATwoBpVIZU7mG9RM,3283
196
203
  neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=bAxjBeFe8EG3bXPUrLjfntlC65lK5p_ddPs_0yX3A9g,2994
197
- neurograph_core-1.202509282026.dist-info/METADATA,sha256=vzlQPZwIgqYVxQZa7AnRG-98AwfS9sPFtxta_Y0l9ME,1936
198
- neurograph_core-1.202509282026.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
199
- neurograph_core-1.202509282026.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
200
- neurograph_core-1.202509282026.dist-info/RECORD,,
204
+ neurograph_core-1.202510040107.dist-info/METADATA,sha256=K4ZybJV6vnn7mahLt-0EcQQess82pEDHh6pkWgrm7iE,1902
205
+ neurograph_core-1.202510040107.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
206
+ neurograph_core-1.202510040107.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
207
+ neurograph_core-1.202510040107.dist-info/RECORD,,