neurograph-core 1.202508112256__py3-none-any.whl → 1.202508152055__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 (34) hide show
  1. neurograph/v1/__init__.py +24 -16
  2. neurograph/v1/api/__init__.py +0 -1
  3. neurograph/v1/api/authentication_api.py +36 -8
  4. neurograph/v1/api/client_api.py +9 -3
  5. neurograph/v1/api/client_metadata_api.py +287 -1
  6. neurograph/v1/api/lookup_api.py +2 -0
  7. neurograph/v1/api/organization_api.py +9 -272
  8. neurograph/v1/api/organization_metadata_api.py +3 -0
  9. neurograph/v1/api/persona_api.py +1249 -135
  10. neurograph/v1/api/tasks_api.py +1 -0
  11. neurograph/v1/api/workbench_api.py +3 -0
  12. neurograph/v1/models/__init__.py +12 -7
  13. neurograph/v1/models/auth_test_service_token_request.py +87 -0
  14. neurograph/v1/models/organizations_organization_detail_response.py +1 -7
  15. neurograph/v1/models/organizations_organization_set_workbench_request.py +10 -10
  16. neurograph/v1/models/organizations_organization_set_workbench_response.py +12 -10
  17. neurograph/v1/models/organizations_workbench_config.py +12 -10
  18. neurograph/v1/models/personas_delete_many_persona_instances_request.py +87 -0
  19. neurograph/v1/models/personas_kpi.py +93 -0
  20. neurograph/v1/models/personas_persona.py +171 -0
  21. neurograph/v1/models/personas_persona_factor.py +1 -3
  22. neurograph/v1/models/personas_persona_factor_create_response.py +3 -3
  23. neurograph/v1/models/personas_persona_factor_resp.py +101 -0
  24. neurograph/v1/models/personas_persona_insight.py +93 -0
  25. neurograph/v1/models/personas_persona_instances_delete_response.py +89 -0
  26. neurograph/v1/models/personas_persona_instances_response.py +103 -0
  27. neurograph/v1/models/personas_persona_personality_trait.py +93 -0
  28. neurograph/v1/models/personas_persona_seed_get_many_response.py +105 -0
  29. neurograph/v1/models/personas_persona_seeds_delete_request.py +87 -0
  30. neurograph/v1/models/personas_persona_seeds_delete_response.py +89 -0
  31. {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508152055.dist-info}/METADATA +2 -2
  32. {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508152055.dist-info}/RECORD +34 -22
  33. {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508152055.dist-info}/WHEEL +0 -0
  34. {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508152055.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,93 @@
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 typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class PersonasPersonaPersonalityTrait(BaseModel):
26
+ """
27
+ PersonasPersonaPersonalityTrait
28
+ """ # noqa: E501
29
+ id: Optional[StrictInt] = None
30
+ name: Optional[StrictStr] = None
31
+ persona_instance_id: Optional[StrictInt] = None
32
+ traits: Optional[List[StrictStr]] = None
33
+ __properties: ClassVar[List[str]] = ["id", "name", "persona_instance_id", "traits"]
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 PersonasPersonaPersonalityTrait 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
+ return _dict
75
+
76
+ @classmethod
77
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
78
+ """Create an instance of PersonasPersonaPersonalityTrait from a dict"""
79
+ if obj is None:
80
+ return None
81
+
82
+ if not isinstance(obj, dict):
83
+ return cls.model_validate(obj)
84
+
85
+ _obj = cls.model_validate({
86
+ "id": obj.get("id"),
87
+ "name": obj.get("name"),
88
+ "persona_instance_id": obj.get("persona_instance_id"),
89
+ "traits": obj.get("traits")
90
+ })
91
+ return _obj
92
+
93
+
@@ -0,0 +1,105 @@
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.personas_persona_seed_create_response import PersonasPersonaSeedCreateResponse
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class PersonasPersonaSeedGetManyResponse(BaseModel):
27
+ """
28
+ PersonasPersonaSeedGetManyResponse
29
+ """ # noqa: E501
30
+ client_id: Optional[StrictInt] = None
31
+ data: Optional[List[PersonasPersonaSeedCreateResponse]] = None
32
+ error: Optional[StrictStr] = None
33
+ query_limit: Optional[StrictInt] = None
34
+ query_offset: Optional[StrictInt] = None
35
+ total_rows: Optional[StrictInt] = None
36
+ __properties: ClassVar[List[str]] = ["client_id", "data", "error", "query_limit", "query_offset", "total_rows"]
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 PersonasPersonaSeedGetManyResponse 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 each item in data (list)
78
+ _items = []
79
+ if self.data:
80
+ for _item_data in self.data:
81
+ if _item_data:
82
+ _items.append(_item_data.to_dict())
83
+ _dict['data'] = _items
84
+ return _dict
85
+
86
+ @classmethod
87
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
88
+ """Create an instance of PersonasPersonaSeedGetManyResponse from a dict"""
89
+ if obj is None:
90
+ return None
91
+
92
+ if not isinstance(obj, dict):
93
+ return cls.model_validate(obj)
94
+
95
+ _obj = cls.model_validate({
96
+ "client_id": obj.get("client_id"),
97
+ "data": [PersonasPersonaSeedCreateResponse.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None,
98
+ "error": obj.get("error"),
99
+ "query_limit": obj.get("query_limit"),
100
+ "query_offset": obj.get("query_offset"),
101
+ "total_rows": obj.get("total_rows")
102
+ })
103
+ return _obj
104
+
105
+
@@ -0,0 +1,87 @@
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
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class PersonasPersonaSeedsDeleteRequest(BaseModel):
26
+ """
27
+ PersonasPersonaSeedsDeleteRequest
28
+ """ # noqa: E501
29
+ seed_ids: Optional[List[StrictInt]] = None
30
+ __properties: ClassVar[List[str]] = ["seed_ids"]
31
+
32
+ model_config = ConfigDict(
33
+ populate_by_name=True,
34
+ validate_assignment=True,
35
+ protected_namespaces=(),
36
+ )
37
+
38
+
39
+ def to_str(self) -> str:
40
+ """Returns the string representation of the model using alias"""
41
+ return pprint.pformat(self.model_dump(by_alias=True))
42
+
43
+ def to_json(self) -> str:
44
+ """Returns the JSON representation of the model using alias"""
45
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
46
+ return json.dumps(self.to_dict())
47
+
48
+ @classmethod
49
+ def from_json(cls, json_str: str) -> Optional[Self]:
50
+ """Create an instance of PersonasPersonaSeedsDeleteRequest from a JSON string"""
51
+ return cls.from_dict(json.loads(json_str))
52
+
53
+ def to_dict(self) -> Dict[str, Any]:
54
+ """Return the dictionary representation of the model using alias.
55
+
56
+ This has the following differences from calling pydantic's
57
+ `self.model_dump(by_alias=True)`:
58
+
59
+ * `None` is only added to the output dict for nullable fields that
60
+ were set at model initialization. Other fields with value `None`
61
+ are ignored.
62
+ """
63
+ excluded_fields: Set[str] = set([
64
+ ])
65
+
66
+ _dict = self.model_dump(
67
+ by_alias=True,
68
+ exclude=excluded_fields,
69
+ exclude_none=True,
70
+ )
71
+ return _dict
72
+
73
+ @classmethod
74
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
75
+ """Create an instance of PersonasPersonaSeedsDeleteRequest from a dict"""
76
+ if obj is None:
77
+ return None
78
+
79
+ if not isinstance(obj, dict):
80
+ return cls.model_validate(obj)
81
+
82
+ _obj = cls.model_validate({
83
+ "seed_ids": obj.get("seed_ids")
84
+ })
85
+ return _obj
86
+
87
+
@@ -0,0 +1,89 @@
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 typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class PersonasPersonaSeedsDeleteResponse(BaseModel):
26
+ """
27
+ PersonasPersonaSeedsDeleteResponse
28
+ """ # noqa: E501
29
+ deleted_seed_ids: Optional[List[StrictInt]] = None
30
+ error: Optional[StrictStr] = None
31
+ __properties: ClassVar[List[str]] = ["deleted_seed_ids", "error"]
32
+
33
+ model_config = ConfigDict(
34
+ populate_by_name=True,
35
+ validate_assignment=True,
36
+ protected_namespaces=(),
37
+ )
38
+
39
+
40
+ def to_str(self) -> str:
41
+ """Returns the string representation of the model using alias"""
42
+ return pprint.pformat(self.model_dump(by_alias=True))
43
+
44
+ def to_json(self) -> str:
45
+ """Returns the JSON representation of the model using alias"""
46
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
47
+ return json.dumps(self.to_dict())
48
+
49
+ @classmethod
50
+ def from_json(cls, json_str: str) -> Optional[Self]:
51
+ """Create an instance of PersonasPersonaSeedsDeleteResponse from a JSON string"""
52
+ return cls.from_dict(json.loads(json_str))
53
+
54
+ def to_dict(self) -> Dict[str, Any]:
55
+ """Return the dictionary representation of the model using alias.
56
+
57
+ This has the following differences from calling pydantic's
58
+ `self.model_dump(by_alias=True)`:
59
+
60
+ * `None` is only added to the output dict for nullable fields that
61
+ were set at model initialization. Other fields with value `None`
62
+ are ignored.
63
+ """
64
+ excluded_fields: Set[str] = set([
65
+ ])
66
+
67
+ _dict = self.model_dump(
68
+ by_alias=True,
69
+ exclude=excluded_fields,
70
+ exclude_none=True,
71
+ )
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
76
+ """Create an instance of PersonasPersonaSeedsDeleteResponse from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return cls.model_validate(obj)
82
+
83
+ _obj = cls.model_validate({
84
+ "deleted_seed_ids": obj.get("deleted_seed_ids"),
85
+ "error": obj.get("error")
86
+ })
87
+ return _obj
88
+
89
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neurograph-core
3
- Version: 1.202508112256
3
+ Version: 1.202508152055
4
4
  Summary: Neurograph Core
5
5
  Home-page:
6
6
  Author: Neurograph Development Team
@@ -37,7 +37,7 @@ This guide covers local installation, authentication, and your first API call.
37
37
 
38
38
  1. Activate your Python 3.12 virtual environment
39
39
 
40
- 2. Install the SDK in editable mode from your local repo
40
+ 2. Install the SDK
41
41
 
42
42
  ```bash
43
43
  pip install neurograph-core
@@ -1,29 +1,30 @@
1
1
  neurograph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- neurograph/v1/__init__.py,sha256=R44WsqVyzV06QTNdIXoryXxgBgl16xZXX1hIfKUidug,15419
2
+ neurograph/v1/__init__.py,sha256=aVZnJqGfKWVIAXRN8bKGkmWhCryWg9SO5wWWj4eNdXU,16141
3
3
  neurograph/v1/api_client.py,sha256=ngR41Zp2xKanL22S7L5UrZSY2_MdL0TGmerZfjqlNQY,27708
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=4qVrgZsK5lfP_NQ6cDkLcN8YEteW6DbJDaziT2yWVu4,687
9
+ neurograph/v1/api/__init__.py,sha256=qmaPtzbrUvAko2VMLyZ-K76tZRChl1WSIMFJHwWpSTk,638
10
10
  neurograph/v1/api/atlas_api.py,sha256=g6Sj2TtjwYVn98yNXa5EkAD0bhcHc1ne64MmBy1S4eE,23024
11
- neurograph/v1/api/authentication_api.py,sha256=XWfRzWGhpSvILB0LopWyek--FZkvSIywhOVADQZo8nU,32761
12
- neurograph/v1/api/client_api.py,sha256=bkwNgJoQe6Ht-NfAoaOLruwUt5F9A3VJyv-QGWOTyUU,66375
13
- neurograph/v1/api/client_metadata_api.py,sha256=RqtEGAJG9YUDeERd7C-q3bAB5oVX9Us6gmPSVq5vcT0,34448
14
- neurograph/v1/api/lookup_api.py,sha256=kuP1AXDnG2kMxPpIhNsscHZ53ZgRzWKT8ygvtTUHcKI,40222
15
- neurograph/v1/api/organization_api.py,sha256=lMwV9JXaQv5C5Z2wCc5cOddmcKSBEEjk27m95fjI5gg,78885
16
- neurograph/v1/api/organization_metadata_api.py,sha256=pC3KfLvZNd44jerYXTZG2VRRPhIts4W3EAotQFx8-G8,35168
17
- neurograph/v1/api/persona_api.py,sha256=cnt1v5fZUo1uPx9YZ2uMkCGyDTqeIe8aTqssnNlZTW8,77940
11
+ neurograph/v1/api/authentication_api.py,sha256=HwX8xHtE_H8cBeKgqfzHyvwSlFV9w4hGUJQFy9FqGuw,33728
12
+ neurograph/v1/api/client_api.py,sha256=m1B72GJ_fqNrVNHQ-sUbz_dgan2Yzz9RYkD-d9Om60M,66540
13
+ neurograph/v1/api/client_metadata_api.py,sha256=ygFIMtvaJpJX83La4XoGnfzUhuKw57DOF3plvwIy-o4,45989
14
+ neurograph/v1/api/lookup_api.py,sha256=ZzkcLriepFRUW-bnKuU8ZMLP7TLhoUD6mnvLkYxpw-4,40274
15
+ neurograph/v1/api/organization_api.py,sha256=YkiTNHF3UBd921s4-Lus7kGp7TMaNZPUDxaZ8ZNkAPU,68065
16
+ neurograph/v1/api/organization_metadata_api.py,sha256=2Eo5FiINIpXWpwbKz_o5C2fpUDA04JCRnyDOG9y2SQM,35246
17
+ neurograph/v1/api/persona_api.py,sha256=aCCzHJcMe_w7wJCKvn2Y41OUeFI52btE3h_ult5YXhQ,123362
18
18
  neurograph/v1/api/system_api.py,sha256=IIy_ywuthVoa9e_Mrhf34ZsPemMTFm-3lMxVT6DgaKI,10864
19
- neurograph/v1/api/tasks_api.py,sha256=Sc5hNPgSAukxMidTzJfzR-wXUa2nytZeZdztcomkz9k,10755
20
- neurograph/v1/api/workbench_api.py,sha256=HttRNA_p7bViwc3KKxhSdsdBnD1GlypJHJQb-mLx3kI,34167
21
- neurograph/v1/models/__init__.py,sha256=p4s3Q1_Uisl_016vfV_Gmz9IviC8p-EhYPiovx075Sc,7961
19
+ neurograph/v1/api/tasks_api.py,sha256=WD_8wYPsnj0hrkTtAn15fUapEoOYEWkVZU69LeXx0Tc,10781
20
+ neurograph/v1/api/workbench_api.py,sha256=OMtrShtJKAfd7KQK7Jdd4ClEBcXfyWjfKRNjZ_TLStI,34245
21
+ neurograph/v1/models/__init__.py,sha256=DNqKeDUv58icmGg7zGGloZZ8zzhyLhkIQDdCDqv7h40,8426
22
22
  neurograph/v1/models/atlas_atlas_version.py,sha256=yx6OupVx7biIFffeTJ8XSvT00tKW_WXTLCSF6PT37Qs,3207
23
23
  neurograph/v1/models/atlas_atlas_version_many_response.py,sha256=MU0BYa2-Dw4wJoMsIt-UkpB1N0mOm47JMmMjxKelLmQ,3131
24
24
  neurograph/v1/models/atlas_atlas_version_response.py,sha256=ETAxyVsfszxmeyjwpYEG9b2BpKtmrUJMnKICnH9m_UE,3325
25
25
  neurograph/v1/models/atlas_atlas_version_upsert_request.py,sha256=amXBgwhLP4uuekz9R7Ad6AEWLJD4Dr7BM3I0C9jQtlw,2973
26
26
  neurograph/v1/models/auth_service_token_request.py,sha256=xm8UyKQ-BlU-DvP94s5q7Rkn0lX1Nv4URh1ZemH4V7U,2545
27
+ neurograph/v1/models/auth_test_service_token_request.py,sha256=HfqU8-Bd96mr1t9sp7JQKtz_yCenxI4xWXsCUmUDcX0,2561
27
28
  neurograph/v1/models/auth_test_service_token_response.py,sha256=XqS28d5LvmrM-_qvaPtCfADV2YwDzjkl6LMmb4IaXxg,2676
28
29
  neurograph/v1/models/auth_test_token_response.py,sha256=HB9P4liewjASjN_oMQ2VFvr0HuEFVjtsYFolVKEht_w,2545
29
30
  neurograph/v1/models/client_client.py,sha256=-cPw2jdBZ3c6fRKyVPQvg0iyqJ5S3EUFynnY7GOiO8o,3615
@@ -61,33 +62,44 @@ neurograph/v1/models/organizations_metadata.py,sha256=Bw2qjHS9L3MBg7ku2TY9HavCqL
61
62
  neurograph/v1/models/organizations_organization.py,sha256=uDNTXPFNZ4KF5kq-MeYGy9mvRfdcCnvw43Rw09MHuEE,3329
62
63
  neurograph/v1/models/organizations_organization_brand.py,sha256=R8g9SyphaKuyPTKiogGyCEUqloq6T9TGwPj9lqrcrrs,3640
63
64
  neurograph/v1/models/organizations_organization_create_request.py,sha256=WSZL9ql_iFD4HcPZ_ICkaBZdcw59XsMprTXrxafi9hA,3084
64
- neurograph/v1/models/organizations_organization_detail_response.py,sha256=v0D3nmm6AqAe-Xzimh1vKstLGZap5naaV0LJ_KJPBjg,4825
65
+ neurograph/v1/models/organizations_organization_detail_response.py,sha256=4xM_Afhm_fRo2Ewr80GbUnp7OolQNdT3ngb2l9WEuWU,4408
65
66
  neurograph/v1/models/organizations_organization_get_many_response.py,sha256=1f2WqifqKQU1grqxL7-FyQi-vckfrI7F4sTEJhHAMY8,3499
66
67
  neurograph/v1/models/organizations_organization_metadata_request.py,sha256=Wdw2PWO6MT8oALGqoDOYh21DeeAgcGLsmwGbR1yhugg,2691
67
68
  neurograph/v1/models/organizations_organization_metadata_response.py,sha256=wYXfbFU1iDau-I7_aicV9LwZwLoPUaH2FWMMU1my_K8,3242
68
69
  neurograph/v1/models/organizations_organization_set_atlas_request.py,sha256=Ir4c8MX3rpAFI8Ubk6zmQ2nNEnKLguLehy8MUoTrWto,2999
69
70
  neurograph/v1/models/organizations_organization_set_atlas_response.py,sha256=7L2mHpB8z-KTd4LWmU1UshV0tXXaq3h8twS2DByrEDQ,3181
70
- neurograph/v1/models/organizations_organization_set_workbench_request.py,sha256=HQtbgJAGmhW1UdQTlrDwRgo_QAY4eEop_wfOPczCWgI,3023
71
- neurograph/v1/models/organizations_organization_set_workbench_response.py,sha256=EECtUk27ZyKR5mT6a75Lsih1WloXTyEEOLeengdFGuE,3197
71
+ neurograph/v1/models/organizations_organization_set_workbench_request.py,sha256=rIee7rSEVeZDF3mak9RJjjgtjjAfIOFhLk9Ge3ed6iA,3292
72
+ neurograph/v1/models/organizations_organization_set_workbench_response.py,sha256=rpNWE4w0HgsWqWSCPJanP3o4kGVSHtbTuwE3mGw2ZIo,3459
72
73
  neurograph/v1/models/organizations_organization_update_request.py,sha256=raMs7zs9HGvUJb9sytw_xsQjORsVy2a--534JR1THyg,3177
73
- neurograph/v1/models/organizations_workbench_config.py,sha256=CUeFT8Rb0A2CBHde0XhkzmoI1IwOQ6VXuLNRiiDJKaI,3043
74
+ neurograph/v1/models/organizations_workbench_config.py,sha256=g3XZjXjyokIsY4RZbdcWvrJ-lwZVqV_3JunFdQLwo7g,3305
75
+ neurograph/v1/models/personas_delete_many_persona_instances_request.py,sha256=QU6hmD2qZZtY3OGBPOtUCHOv2Cn_WEXakQMZWtcsctE,2683
76
+ neurograph/v1/models/personas_kpi.py,sha256=xiqG0jD0yPdCqShNFIWW5X1g7bABewlaRWy3U_Xhv0o,2806
74
77
  neurograph/v1/models/personas_match_criteria_row.py,sha256=6ZsCP_j7v8N9pCkB_6ST_Dp-zmAvNKuVPdCEVBJenOQ,3054
75
78
  neurograph/v1/models/personas_match_criteria_row_in.py,sha256=DLVwQVE1CxoXXRWxhUDb5dfPzRJSys1mCEtGj2mIuD8,2902
76
- neurograph/v1/models/personas_persona_factor.py,sha256=btAvU-fDGBW3vKe7Z_5jm0_udMtdLDBDxVifiksoc1s,3210
79
+ neurograph/v1/models/personas_persona.py,sha256=6xD2JJiZzC4yRMPnZMeRKsso06b3-wUAEW3EARbIKCU,7676
80
+ neurograph/v1/models/personas_persona_factor.py,sha256=0e8cHuNJeD7G44aOmpXl5JVzKPwRMnnYHDsvrLWkld0,3124
77
81
  neurograph/v1/models/personas_persona_factor_create_request.py,sha256=9QVlLp573Wh9JEpp2WCchLM8uvFMImG2yRLCWwHIYoc,3096
78
- neurograph/v1/models/personas_persona_factor_create_response.py,sha256=1_mv1dQaXnuTmEkecwA9PxUEAN2E-iHO5VALL7_s_is,3171
82
+ neurograph/v1/models/personas_persona_factor_create_response.py,sha256=wZlFqrxoeg9vjW82h9XFXfazirEpKXIT50Us76L01TI,3188
83
+ neurograph/v1/models/personas_persona_factor_resp.py,sha256=yRP7LEeovNdDlEbqIjIxLbASzi2_8IZ0k9yGrFD-wVc,3226
84
+ neurograph/v1/models/personas_persona_insight.py,sha256=sOrP0DBt-PzJlaIPASyaYbFBzrwlZppuG2J0cTUSY_s,2847
79
85
  neurograph/v1/models/personas_persona_insight_create_request.py,sha256=GeUuTwpm_3UzBWi4uqT8SX9uMsQ3YpGs09mYPz7NjDw,2825
80
86
  neurograph/v1/models/personas_persona_insight_create_response.py,sha256=IuH2obnL6OWvqqK0h-ovs3LKE9anYyZ6WRiOM5Uf0d0,2984
81
87
  neurograph/v1/models/personas_persona_instance_create_request.py,sha256=hB5aHs7dT008CmdU0wyFIqlLK-NZvnLTuDZ3f1TJc5A,4808
82
88
  neurograph/v1/models/personas_persona_instance_create_response.py,sha256=JFDKa330RonVBlJ_hZvSrGBJ7P1VVrsm-uarCS3OTTE,4972
89
+ neurograph/v1/models/personas_persona_instances_delete_response.py,sha256=QUXLxEi-KNjbjX25ygTOm4QoDcM167zyZq8ruVUaAQQ,2752
90
+ neurograph/v1/models/personas_persona_instances_response.py,sha256=bSgp4oSfOyIbHf9gBGhxhu_iVk-mxXmCSg06KLiEZh8,3475
83
91
  neurograph/v1/models/personas_persona_kpi_create_request.py,sha256=MVhWOQtXWUxrZpsHFudDIzgf27k0FdytNFWHjZVejI8,3059
84
92
  neurograph/v1/models/personas_persona_kpi_create_response.py,sha256=r4mAwtoxSGCtpz5VsA04P3z_SdBGmjSuSOJvYD7lHLY,3164
85
93
  neurograph/v1/models/personas_persona_kpi_req.py,sha256=rBtdptsJXMzwZUz-k03UsJlCLjXfCapBhrxDIuwvh08,2772
86
94
  neurograph/v1/models/personas_persona_kpi_resp.py,sha256=OQx8vnAfzpb6OJx-xLXnhXazg2hJ_xpE7uEccsJX_vo,2936
87
95
  neurograph/v1/models/personas_persona_match_criteria_request.py,sha256=0Zpy51cuRWEupYuEcrc2Du2QktrljdLO5dfR0KnA_PM,3096
88
96
  neurograph/v1/models/personas_persona_match_criteria_response.py,sha256=Ljh_SC3dVw-8a0MqHdJ6rJPTtlRv7LSoaGTZMSTgKnw,3188
97
+ neurograph/v1/models/personas_persona_personality_trait.py,sha256=7eoog5WEcz8xS2xXIVSZaWGqdu8rrYB232rWBCwYm_g,2896
89
98
  neurograph/v1/models/personas_persona_seed_create_request.py,sha256=hNN4plg77Y6jeYi3vhBg9q99fo4iQq5GxarMQJKm294,2686
90
99
  neurograph/v1/models/personas_persona_seed_create_response.py,sha256=SRsL7vLyYgmBENHUCIMyPWDG5IKVk-UyVgilfbxIujM,3071
100
+ neurograph/v1/models/personas_persona_seed_get_many_response.py,sha256=OTXyDnf4_GA7Gdm0udgb1XR1aglm-6qJxtBcq40-y3s,3660
101
+ neurograph/v1/models/personas_persona_seeds_delete_request.py,sha256=_MUrW5jtCwRPLBM_gWOoHifgexifW-zfjbl8_VTdkgU,2603
102
+ neurograph/v1/models/personas_persona_seeds_delete_response.py,sha256=tbtQivZ94iUNZ8hai9WexqtsY8b-ysglxBIzvZws9YI,2736
91
103
  neurograph/v1/models/personas_persona_trait_create_request.py,sha256=t1_rCx4T_sUW2nague7zL2zV2r7TCaEU2oRmqL_Ipfw,3087
92
104
  neurograph/v1/models/personas_persona_trait_create_response.py,sha256=Syd4iQwaCJOwrcMxjRspmBHMnGDwPC1aX5SUpZppPqM,3192
93
105
  neurograph/v1/models/personas_personality_trait_in.py,sha256=gXPi0hluRXzaMhbB4A7FLQ49H0XHD_QjFHO03yHnSuI,2802
@@ -99,7 +111,7 @@ neurograph/v1/models/workbench_workbench_version.py,sha256=L1OKYeTYt-G428UsgLTTH
99
111
  neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
100
112
  neurograph/v1/models/workbench_workbench_version_response.py,sha256=Bmii057wtrhujz-Tm_CSnaKkJ17cJIeO9KUljoDtl-Y,3373
101
113
  neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=tVhd8PmvCipR2LM8j15IA2kvikIUkMJVffkCsBOGiH4,3005
102
- neurograph_core-1.202508112256.dist-info/METADATA,sha256=BVSrCdRWRI4_71Gh_VyitF7aCSHJ-J-CnGF2mA36Etw,1940
103
- neurograph_core-1.202508112256.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
104
- neurograph_core-1.202508112256.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
105
- neurograph_core-1.202508112256.dist-info/RECORD,,
114
+ neurograph_core-1.202508152055.dist-info/METADATA,sha256=bhf4CaZ6ZvTiVOw3QZ5u-g2K4eWHnEBZeUcUZIornE4,1902
115
+ neurograph_core-1.202508152055.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
116
+ neurograph_core-1.202508152055.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
117
+ neurograph_core-1.202508152055.dist-info/RECORD,,