neurograph-core 1.202509252137__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.
- neurograph/v1/__init__.py +63 -198
- neurograph/v1/api/__init__.py +4 -27
- neurograph/v1/api/admin_api.py +1123 -0
- neurograph/v1/api/client_api.py +263 -0
- neurograph/v1/api/dagster_api.py +2 -1
- neurograph/v1/api/knowledge_api.py +296 -0
- neurograph/v1/api/knowledge_extract_api.py +1 -1
- neurograph/v1/api/lookup_api.py +279 -27
- neurograph/v1/api/organization_api.py +128 -137
- neurograph/v1/api/persona_api.py +2 -1
- neurograph/v1/api/reporting_api.py +300 -0
- neurograph/v1/api/user_api.py +282 -0
- neurograph/v1/api_client.py +4 -4
- neurograph/v1/models/__init__.py +29 -170
- neurograph/v1/models/admin_permission_response.py +95 -0
- neurograph/v1/models/admin_set_permission_request.py +91 -0
- neurograph/v1/models/admin_upsert_user_request.py +91 -0
- neurograph/v1/models/admin_upsert_user_response.py +99 -0
- neurograph/v1/models/admin_user.py +97 -0
- neurograph/v1/models/admin_user_detail_response.py +121 -0
- neurograph/v1/models/admin_users_get_many_response.py +97 -0
- neurograph/v1/models/admin_users_org_response.py +97 -0
- neurograph/v1/models/db_account_organization_brand.py +109 -0
- neurograph/v1/models/db_my_client.py +99 -0
- neurograph/v1/models/db_my_org.py +121 -0
- neurograph/v1/models/db_user_client_role.py +93 -0
- neurograph/v1/models/db_user_in_db.py +127 -0
- neurograph/v1/models/db_user_org_role.py +93 -0
- neurograph/v1/models/db_user_role.py +91 -0
- neurograph/v1/models/knowledge_enrichment_artifact_create_request.py +3 -1
- neurograph/v1/models/knowledge_enrichment_query.py +3 -1
- neurograph/v1/models/knowledge_product.py +103 -0
- neurograph/v1/models/knowledge_product_upsert_request.py +95 -0
- neurograph/v1/models/knowledge_product_upsert_response.py +99 -0
- neurograph/v1/models/lookup_env.py +89 -0
- neurograph/v1/models/{lookup_lookup_language_response.py → lookup_language_response.py} +4 -4
- neurograph/v1/models/lookup_lookup_environments_response.py +97 -0
- neurograph/v1/models/lookup_role.py +89 -0
- neurograph/v1/models/lookup_roles_response.py +97 -0
- neurograph/v1/models/{lookup_lookup_state_response.py → lookup_states_response.py} +4 -4
- neurograph/v1/models/me_my_profile_response.py +115 -0
- neurograph/v1/models/reporting_daily_metric.py +95 -0
- neurograph/v1/models/reporting_daily_metrics_response.py +97 -0
- neurograph/v1/models/reporting_query.py +91 -0
- {neurograph_core-1.202509252137.dist-info → neurograph_core-1.202510040107.dist-info}/METADATA +2 -3
- {neurograph_core-1.202509252137.dist-info → neurograph_core-1.202510040107.dist-info}/RECORD +48 -19
- {neurograph_core-1.202509252137.dist-info → neurograph_core-1.202510040107.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202509252137.dist-info → neurograph_core-1.202510040107.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,115 @@
|
|
|
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, StrictInt, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from neurograph.v1.models.db_my_client import DbMyClient
|
|
23
|
+
from neurograph.v1.models.db_my_org import DbMyOrg
|
|
24
|
+
from typing import Optional, Set
|
|
25
|
+
from typing_extensions import Self
|
|
26
|
+
|
|
27
|
+
class MeMyProfileResponse(BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
MeMyProfileResponse
|
|
30
|
+
""" # noqa: E501
|
|
31
|
+
clients: Optional[List[DbMyClient]] = None
|
|
32
|
+
display_name: Optional[StrictStr] = None
|
|
33
|
+
email: Optional[StrictStr] = None
|
|
34
|
+
error: Optional[StrictStr] = None
|
|
35
|
+
id: Optional[StrictInt] = None
|
|
36
|
+
ng_roles: Optional[List[StrictStr]] = None
|
|
37
|
+
orgs: Optional[List[DbMyOrg]] = None
|
|
38
|
+
__properties: ClassVar[List[str]] = ["clients", "display_name", "email", "error", "id", "ng_roles", "orgs"]
|
|
39
|
+
|
|
40
|
+
model_config = ConfigDict(
|
|
41
|
+
populate_by_name=True,
|
|
42
|
+
validate_assignment=True,
|
|
43
|
+
protected_namespaces=(),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
54
|
+
return json.dumps(self.to_dict())
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
58
|
+
"""Create an instance of MeMyProfileResponse from a JSON string"""
|
|
59
|
+
return cls.from_dict(json.loads(json_str))
|
|
60
|
+
|
|
61
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
62
|
+
"""Return the dictionary representation of the model using alias.
|
|
63
|
+
|
|
64
|
+
This has the following differences from calling pydantic's
|
|
65
|
+
`self.model_dump(by_alias=True)`:
|
|
66
|
+
|
|
67
|
+
* `None` is only added to the output dict for nullable fields that
|
|
68
|
+
were set at model initialization. Other fields with value `None`
|
|
69
|
+
are ignored.
|
|
70
|
+
"""
|
|
71
|
+
excluded_fields: Set[str] = set([
|
|
72
|
+
])
|
|
73
|
+
|
|
74
|
+
_dict = self.model_dump(
|
|
75
|
+
by_alias=True,
|
|
76
|
+
exclude=excluded_fields,
|
|
77
|
+
exclude_none=True,
|
|
78
|
+
)
|
|
79
|
+
# override the default output from pydantic by calling `to_dict()` of each item in clients (list)
|
|
80
|
+
_items = []
|
|
81
|
+
if self.clients:
|
|
82
|
+
for _item_clients in self.clients:
|
|
83
|
+
if _item_clients:
|
|
84
|
+
_items.append(_item_clients.to_dict())
|
|
85
|
+
_dict['clients'] = _items
|
|
86
|
+
# override the default output from pydantic by calling `to_dict()` of each item in orgs (list)
|
|
87
|
+
_items = []
|
|
88
|
+
if self.orgs:
|
|
89
|
+
for _item_orgs in self.orgs:
|
|
90
|
+
if _item_orgs:
|
|
91
|
+
_items.append(_item_orgs.to_dict())
|
|
92
|
+
_dict['orgs'] = _items
|
|
93
|
+
return _dict
|
|
94
|
+
|
|
95
|
+
@classmethod
|
|
96
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
97
|
+
"""Create an instance of MeMyProfileResponse from a dict"""
|
|
98
|
+
if obj is None:
|
|
99
|
+
return None
|
|
100
|
+
|
|
101
|
+
if not isinstance(obj, dict):
|
|
102
|
+
return cls.model_validate(obj)
|
|
103
|
+
|
|
104
|
+
_obj = cls.model_validate({
|
|
105
|
+
"clients": [DbMyClient.from_dict(_item) for _item in obj["clients"]] if obj.get("clients") is not None else None,
|
|
106
|
+
"display_name": obj.get("display_name"),
|
|
107
|
+
"email": obj.get("email"),
|
|
108
|
+
"error": obj.get("error"),
|
|
109
|
+
"id": obj.get("id"),
|
|
110
|
+
"ng_roles": obj.get("ng_roles"),
|
|
111
|
+
"orgs": [DbMyOrg.from_dict(_item) for _item in obj["orgs"]] if obj.get("orgs") is not None else None
|
|
112
|
+
})
|
|
113
|
+
return _obj
|
|
114
|
+
|
|
115
|
+
|
|
@@ -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
|
+
|
{neurograph_core-1.202509252137.dist-info → neurograph_core-1.202510040107.dist-info}/METADATA
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: neurograph-core
|
|
3
|
-
Version: 1.
|
|
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
|
|
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
|
{neurograph_core-1.202509252137.dist-info → neurograph_core-1.202510040107.dist-info}/RECORD
RENAMED
|
@@ -1,25 +1,36 @@
|
|
|
1
1
|
neurograph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
neurograph/v1/__init__.py,sha256=
|
|
3
|
-
neurograph/v1/api_client.py,sha256=
|
|
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=
|
|
9
|
+
neurograph/v1/api/__init__.py,sha256=jzr1RuqGQ_loqq3CyAZWo52K7ifBbOyehvoePmVojcs,924
|
|
10
|
+
neurograph/v1/api/admin_api.py,sha256=wfhfTJUoot-B_EN5JZmoHSOiKm5q1HNjDT_TKs-7Wv0,43353
|
|
10
11
|
neurograph/v1/api/authentication_api.py,sha256=5Qzs_TMzcjrPAQxbWAZ6HHXM80Fqfv42hq9_uzkKRAI,33388
|
|
11
|
-
neurograph/v1/api/client_api.py,sha256=
|
|
12
|
+
neurograph/v1/api/client_api.py,sha256=XEtI472SI4gtCLMt8LR54_bDqbsk_BEBqdI1bUjVHh8,97977
|
|
12
13
|
neurograph/v1/api/client_metadata_api.py,sha256=799y_V9AdA_TYCeN-qTEtKUFbq05Mv1vgCc0UY4qpcc,45652
|
|
13
|
-
neurograph/v1/api/dagster_api.py,sha256=
|
|
14
|
-
neurograph/v1/api/knowledge_api.py,sha256=
|
|
15
|
-
neurograph/v1/api/knowledge_extract_api.py,sha256=
|
|
16
|
-
neurograph/v1/api/lookup_api.py,sha256=
|
|
17
|
-
neurograph/v1/api/organization_api.py,sha256=
|
|
14
|
+
neurograph/v1/api/dagster_api.py,sha256=ZTV1ozVWZvX3ocU-y4Ks2cUbnFjPut-EHDZ-bDXK7gU,22069
|
|
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
|
|
18
19
|
neurograph/v1/api/organization_metadata_api.py,sha256=PtwuBFSY0FjCAB7fuR710CRkQbtR-xpruX9780hGQxk,34860
|
|
19
|
-
neurograph/v1/api/persona_api.py,sha256=
|
|
20
|
+
neurograph/v1/api/persona_api.py,sha256=5uQJHMz3qo-iFPHZVeEcDe02GkkMvMDI5fCh7Kmqi7g,132658
|
|
21
|
+
neurograph/v1/api/reporting_api.py,sha256=A1X57XMqLl5usY26744TFBMSyBwcSGdKPLNEakmiatU,11463
|
|
20
22
|
neurograph/v1/api/system_api.py,sha256=IIy_ywuthVoa9e_Mrhf34ZsPemMTFm-3lMxVT6DgaKI,10864
|
|
23
|
+
neurograph/v1/api/user_api.py,sha256=0Y4xYK1n7WxkfAY8X6umW0y21mFkeKEaEWcLO9ub20o,10366
|
|
21
24
|
neurograph/v1/api/workbench_api.py,sha256=BMhqbbd_PSZ27br7idOgyZFdxMQ0N7O4fFQq8n_6JVs,34221
|
|
22
|
-
neurograph/v1/models/__init__.py,sha256=
|
|
25
|
+
neurograph/v1/models/__init__.py,sha256=Z_iL5Hb0q3AILjSLkboh4JUvNlGm7CbMngN2dNsdwiA,15403
|
|
26
|
+
neurograph/v1/models/admin_permission_response.py,sha256=RPM3v7iutgJKHnZbVo5ALwqMO8UDc6K0DzHdEoRgubo,2936
|
|
27
|
+
neurograph/v1/models/admin_set_permission_request.py,sha256=TQUB1ar9h-VmiRNm5cbUMCV5Rr98AXG7aew5BMyHBq0,2753
|
|
28
|
+
neurograph/v1/models/admin_upsert_user_request.py,sha256=FtnMRtbtg-5rHEFvt62j5K9LhdyIcM1f52BkpLSfQyk,2740
|
|
29
|
+
neurograph/v1/models/admin_upsert_user_response.py,sha256=pF2wNSGAaZONg3do6Ov4KbISxABm4OyxdY0qBDS3xsk,3144
|
|
30
|
+
neurograph/v1/models/admin_user.py,sha256=w37D3fJP1SGnOAsTQ80SY0FFKM7wixwreALADR3OyfI,3002
|
|
31
|
+
neurograph/v1/models/admin_user_detail_response.py,sha256=bptoTNaThHA_k-iG-7l0EyoLpWjZbxOy2nHEt8B7riM,4352
|
|
32
|
+
neurograph/v1/models/admin_users_get_many_response.py,sha256=DnRqWfaGxTKrozMQU84ZHbILsBWntrQ0DDGzRef7leo,3088
|
|
33
|
+
neurograph/v1/models/admin_users_org_response.py,sha256=_dp3011IVjEHHcACw6h4dKvQGk1PacqJv6s_CbwvXAU,3066
|
|
23
34
|
neurograph/v1/models/auth_service_token_request.py,sha256=xm8UyKQ-BlU-DvP94s5q7Rkn0lX1Nv4URh1ZemH4V7U,2545
|
|
24
35
|
neurograph/v1/models/auth_service_token_response.py,sha256=TZz64r4N0RNjSVADmPizQbITYcGRFfO9PzN_3-O-s-w,2837
|
|
25
36
|
neurograph/v1/models/auth_test_service_token_request.py,sha256=HfqU8-Bd96mr1t9sp7JQKtz_yCenxI4xWXsCUmUDcX0,2561
|
|
@@ -58,12 +69,19 @@ neurograph/v1/models/dagster_info.py,sha256=V2HQKZtuQoIbkLOMN00bfrOUVYCZvxHiVfAI
|
|
|
58
69
|
neurograph/v1/models/dagster_log_create_request.py,sha256=8Vjq63NQSdR-oxD-VTJCYFVui5EYYUrr2bXyBeyirdk,2807
|
|
59
70
|
neurograph/v1/models/dagster_log_create_response.py,sha256=J5Xz-EqbjOLL-K989-fc_Bz-0a8qkAdEkK4v5pKfKnw,2740
|
|
60
71
|
neurograph/v1/models/dagster_log_get_response.py,sha256=mgv91zxprCuucmxBSoyKZfe6f_fHvtpY00AFZVMUaMs,3074
|
|
72
|
+
neurograph/v1/models/db_account_organization_brand.py,sha256=aa8bg_rmMvCkhRIo5s0U4ELR9g82kLv6AbLfSec2p4c,3714
|
|
61
73
|
neurograph/v1/models/db_client_url.py,sha256=YXJVyfTfx5BvpSaMAE8Q0W3MGpqS_k4iVZzQqvBiOJE,2937
|
|
62
74
|
neurograph/v1/models/db_knowledge_customer.py,sha256=aBjFRxP9oGzqv5UIS13uaqYqhpRp4VAyphLFpnroRcA,3027
|
|
63
75
|
neurograph/v1/models/db_knowledge_order.py,sha256=OT6sgVsrYoTNaNpbU8Pmdyzlux-9xnoTaESngYWpD7k,9140
|
|
64
76
|
neurograph/v1/models/db_knowledge_product.py,sha256=jkyOacWkgSakdT2SBM8cH9fwiLmn-12QZ0leatGPgaI,3612
|
|
65
77
|
neurograph/v1/models/db_knowledge_store.py,sha256=wVT3ruIFhibYScSMa-SJ0XpPmuXGElUeXp2lbGhtP34,3118
|
|
78
|
+
neurograph/v1/models/db_my_client.py,sha256=4STLsY76RbMu5BbyjikEOlbt_1PoLLjNKIl3IK3i8x0,3134
|
|
79
|
+
neurograph/v1/models/db_my_org.py,sha256=HVYZdlORBmUKkm-XMtLNTLGGyvzLfY34HNJlg5xFYkw,4482
|
|
66
80
|
neurograph/v1/models/db_persona_factor_create_params.py,sha256=a0u8yJJRMjRFtsuYlDp2JwrU0O2ZlCitVQX_sB6tvZY,3074
|
|
81
|
+
neurograph/v1/models/db_user_client_role.py,sha256=datRqUT25IcLfYZsv-NZ6417oXoufZH-1Jk47VRgs0M,2826
|
|
82
|
+
neurograph/v1/models/db_user_in_db.py,sha256=9BYN4KyEmp6t4LHtBkSh78K4FvcSGEau1F3Pn-wdqe4,4826
|
|
83
|
+
neurograph/v1/models/db_user_org_role.py,sha256=NpG0zYuYGOBDHo2EgdHD_brsYjRFNOtUaEI9eVMbZDk,2802
|
|
84
|
+
neurograph/v1/models/db_user_role.py,sha256=lm-0OXRAIoXas3HCTHxsHgSwzer5u4qGr00ld4dPbSw,2700
|
|
67
85
|
neurograph/v1/models/knowledge_assertion.py,sha256=Zw17ZH2ny65ILvArGo6RVZVFlmyDmAipePQ7IgbHCMY,3913
|
|
68
86
|
neurograph/v1/models/knowledge_assertion_create_request.py,sha256=HgG3iyH38FlEFxQa86rpjwzqBcqGe3s7Ebym2yTcsTo,3553
|
|
69
87
|
neurograph/v1/models/knowledge_assertion_list_response.py,sha256=9kFCe_dQ8m2NvLKhw-ue2LJt6iMTGYNWYmqy646IwSc,3551
|
|
@@ -72,12 +90,12 @@ neurograph/v1/models/knowledge_assertion_response.py,sha256=A4wvo3vi_Z8w9rTuVH67
|
|
|
72
90
|
neurograph/v1/models/knowledge_customer_query.py,sha256=DicUa5QawV_bcayluA1lgIu7DL8jno6Nl3UB-ua_ywU,3124
|
|
73
91
|
neurograph/v1/models/knowledge_customer_response.py,sha256=UeARH1OzL7FojckE78St9LTUkxvsEiyh2JM3L8kRuGk,3532
|
|
74
92
|
neurograph/v1/models/knowledge_enrichment_artifact.py,sha256=qvNiECbfrRAycfq_JQC8GmUCGPYwsKh7ow-MNtvlMLQ,5602
|
|
75
|
-
neurograph/v1/models/knowledge_enrichment_artifact_create_request.py,sha256=
|
|
93
|
+
neurograph/v1/models/knowledge_enrichment_artifact_create_request.py,sha256=tZ8w3bVW6dqqX1Ssu35_A7nj6gU7ihWmH6kORZMyg3w,4367
|
|
76
94
|
neurograph/v1/models/knowledge_enrichment_artifact_list_response.py,sha256=QV7XCpC2Kf_wXSbd8uLeTKyPHy_pxeiP4XIwm5ZMMUM,3628
|
|
77
95
|
neurograph/v1/models/knowledge_enrichment_artifact_response.py,sha256=U0kYpPU1KmpEMVEJHv9D57p5_PgDaOUwcgwj2IUZ4_Y,3013
|
|
78
96
|
neurograph/v1/models/knowledge_enrichment_artifact_update_output_request.py,sha256=KWi5Q_D6r-yCDCaFkadaw9RCOXf-6JmmRh_m3KpwNbo,3023
|
|
79
97
|
neurograph/v1/models/knowledge_enrichment_artifact_update_status_request.py,sha256=U0IxNhuBFENClAXrfzfjidKCXLmKM6UJewKkJazi3gQ,3392
|
|
80
|
-
neurograph/v1/models/knowledge_enrichment_query.py,sha256=
|
|
98
|
+
neurograph/v1/models/knowledge_enrichment_query.py,sha256=OegSZRkDeruUwJxTFiVcft3AL39OW7NSrDVjjiT-SWg,3275
|
|
81
99
|
neurograph/v1/models/knowledge_entity.py,sha256=jUJDNCGw6PyOelQZVEzA1y8phYricyTOL77ZsyTsu_E,4568
|
|
82
100
|
neurograph/v1/models/knowledge_entity_create_request.py,sha256=96z7BBLzkcB03acLVl63aMjAmdoIy9XbsQJgNlUs1_c,3130
|
|
83
101
|
neurograph/v1/models/knowledge_entity_create_response.py,sha256=4eLYm1MFW2Ue5Bawc6d9QgUhkXs8W4Ysb7FDoOogVtU,3345
|
|
@@ -103,18 +121,26 @@ neurograph/v1/models/knowledge_ingest_raw_row.py,sha256=wS5SNP0JhFAb-63RNta8I1Nk
|
|
|
103
121
|
neurograph/v1/models/knowledge_kind_response.py,sha256=nwpvLJ0cvrCO7q1XpQjyp-omUaQAoZyv_yzPNbyUXYI,2629
|
|
104
122
|
neurograph/v1/models/knowledge_order_query.py,sha256=3aLKfozkQ7Hcn6-zeEtJDGN01KkoOjSyov48u_vabhI,5066
|
|
105
123
|
neurograph/v1/models/knowledge_order_response.py,sha256=8Tx741pcqfNKFk7mejVHH9NBCKx40I3-ZWdTtG-zYRQ,3496
|
|
124
|
+
neurograph/v1/models/knowledge_product.py,sha256=4kiFFGLWxN36IMGMhxlK8oNrZ7qN3F61SVuwa-flD1o,3316
|
|
106
125
|
neurograph/v1/models/knowledge_product_query.py,sha256=jZKf9dsHOj7FEmTpF2qMKahonDqbH08URY8cOTdRhEE,3218
|
|
107
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
|
|
108
129
|
neurograph/v1/models/knowledge_query.py,sha256=OHJ66k0cqhTTnLTWTlGpWdR37MrhDXOI4DFRHOVcegM,3090
|
|
109
130
|
neurograph/v1/models/knowledge_store_query.py,sha256=kmOSjDNRZUMcm8O6rqq3OrlkmqHXJ7ydesNDS-fBj9o,3165
|
|
110
131
|
neurograph/v1/models/knowledge_store_response.py,sha256=LisJ--lX25X9ygalTcVJim1Hkm8ATFK3aMYdsjcy6O0,3496
|
|
132
|
+
neurograph/v1/models/lookup_env.py,sha256=Yo604kpw12YakRNfuJQ75YCPHH3aWZq53CvOd4rJIWo,2570
|
|
111
133
|
neurograph/v1/models/lookup_language.py,sha256=YMyl2EcRcOmNUT4RcbnvNW9tZ4lzTer2GlTN1kaiT0k,3010
|
|
112
|
-
neurograph/v1/models/
|
|
113
|
-
neurograph/v1/models/
|
|
134
|
+
neurograph/v1/models/lookup_language_response.py,sha256=xCkROJKg2bzWnYx3qP7RYH4r7xfEQYdodChlBiBAa_E,3090
|
|
135
|
+
neurograph/v1/models/lookup_lookup_environments_response.py,sha256=WMHE6ipX1rDQJhoqZSSB6nD_HhMMlNIrezln4MWPFT4,3110
|
|
136
|
+
neurograph/v1/models/lookup_role.py,sha256=SMO9fACsQUUA8LCAQBsNLNwdRsqSteSrGrPVlTkR2bo,2599
|
|
137
|
+
neurograph/v1/models/lookup_roles_response.py,sha256=RkpuzaCfdSbn8ZfD_RAUWDUkZdYvN_QpHNRQnrgJ9ZA,3062
|
|
114
138
|
neurograph/v1/models/lookup_state.py,sha256=Y2AEVWdfzt-AxnQmG9JdE7ixOEYIpOVCEpfo8o8fEyQ,2660
|
|
115
139
|
neurograph/v1/models/lookup_state_response.py,sha256=H0i6L0xwd2_UCeAdfJIeBo-Ttbk6xnDX71y1Dn_i1uw,2778
|
|
140
|
+
neurograph/v1/models/lookup_states_response.py,sha256=iCM833WWX_PryQPBfhMLbHqUO7wvMjdr5wBigLZAqMQ,3070
|
|
116
141
|
neurograph/v1/models/lookup_uid.py,sha256=Tu-kIi0JyOJ8morFA6mGm9ZHGx0qLZwHDt_Jc7uGtNA,3265
|
|
117
142
|
neurograph/v1/models/lookup_uids_response.py,sha256=aiXlJKIZpAuNLEQhqKvQ42TmsbslYrN4nOq6E4paE_Y,3054
|
|
143
|
+
neurograph/v1/models/me_my_profile_response.py,sha256=rb6_lUSv60Jmgg7lJdsO09IEjjorwkhbGFVzK6Ge37U,4010
|
|
118
144
|
neurograph/v1/models/organizations_brand.py,sha256=WAZQCV0Vu0syuUYUvR0HfXWcMMzkW-L-62n-UeC6Bkk,3592
|
|
119
145
|
neurograph/v1/models/organizations_brand_detail_response.py,sha256=voagRMr1j1BXz-GxhdxLSzCXlLnM8ij5_q2lRC4lufM,3747
|
|
120
146
|
neurograph/v1/models/organizations_brand_upsert_request.py,sha256=w5B9zp6AWYTgLeOkX3QIIZl3WiqbP0pJXOakeA7wcaw,3657
|
|
@@ -166,13 +192,16 @@ neurograph/v1/models/pgtype_infinity_modifier.py,sha256=rROhs-_4H5Vuk0omVmVTzu8e
|
|
|
166
192
|
neurograph/v1/models/pgtype_int8.py,sha256=jDeN8o2tU2gsiTu0qR9tlwqNTZXzlOQWrtCOYtEiY-Y,2592
|
|
167
193
|
neurograph/v1/models/pgtype_text.py,sha256=fOIS-9aEpA0pMgswkN8yehcG9Bzx6XYIbPXQTWcOk7o,2596
|
|
168
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
|
|
169
198
|
neurograph/v1/models/workbench_workbench_url_check_request.py,sha256=3H9SYJE78OlRPvVUZbTW4_KELkp8UUlM7Urpj3YDwyU,2581
|
|
170
199
|
neurograph/v1/models/workbench_workbench_url_check_response.py,sha256=X8x_i7U2x1ckfI3lSNvu1FUrp7lq3atXilYI5k10dbA,3913
|
|
171
200
|
neurograph/v1/models/workbench_workbench_version.py,sha256=AsgikzRU6BRj99gRFGGTlkJA6eqUY2v1HKu22mxfNpU,3165
|
|
172
201
|
neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
|
|
173
202
|
neurograph/v1/models/workbench_workbench_version_response.py,sha256=nMupKXBsoi4eXD-fsp_5PHrMislATwoBpVIZU7mG9RM,3283
|
|
174
203
|
neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=bAxjBeFe8EG3bXPUrLjfntlC65lK5p_ddPs_0yX3A9g,2994
|
|
175
|
-
neurograph_core-1.
|
|
176
|
-
neurograph_core-1.
|
|
177
|
-
neurograph_core-1.
|
|
178
|
-
neurograph_core-1.
|
|
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,,
|
|
File without changes
|
{neurograph_core-1.202509252137.dist-info → neurograph_core-1.202510040107.dist-info}/top_level.txt
RENAMED
|
File without changes
|