neurograph-core 1.202510101705__py3-none-any.whl → 1.202510232201__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 +2 -0
- neurograph/v1/models/__init__.py +1 -0
- neurograph/v1/models/client_match_criteria_row_in_db.py +97 -0
- neurograph/v1/models/client_persona.py +11 -1
- neurograph/v1/models/personas_persona.py +11 -1
- neurograph/v1/models/reporting_daily_metric.py +23 -7
- neurograph/v1/models/reporting_query.py +4 -2
- {neurograph_core-1.202510101705.dist-info → neurograph_core-1.202510232201.dist-info}/METADATA +1 -1
- {neurograph_core-1.202510101705.dist-info → neurograph_core-1.202510232201.dist-info}/RECORD +11 -10
- {neurograph_core-1.202510101705.dist-info → neurograph_core-1.202510232201.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202510101705.dist-info → neurograph_core-1.202510232201.dist-info}/top_level.txt +0 -0
neurograph/v1/__init__.py
CHANGED
|
@@ -61,6 +61,7 @@ __all__ = [
|
|
|
61
61
|
"ClientGetManyResponse",
|
|
62
62
|
"ClientInfo",
|
|
63
63
|
"ClientKpi",
|
|
64
|
+
"ClientMatchCriteriaRowInDb",
|
|
64
65
|
"ClientMetadata",
|
|
65
66
|
"ClientMetadataRequest",
|
|
66
67
|
"ClientMetadataResponse",
|
|
@@ -270,6 +271,7 @@ from neurograph.v1.models.client_get_detail_response import ClientGetDetailRespo
|
|
|
270
271
|
from neurograph.v1.models.client_get_many_response import ClientGetManyResponse as ClientGetManyResponse
|
|
271
272
|
from neurograph.v1.models.client_info import ClientInfo as ClientInfo
|
|
272
273
|
from neurograph.v1.models.client_kpi import ClientKpi as ClientKpi
|
|
274
|
+
from neurograph.v1.models.client_match_criteria_row_in_db import ClientMatchCriteriaRowInDb as ClientMatchCriteriaRowInDb
|
|
273
275
|
from neurograph.v1.models.client_metadata import ClientMetadata as ClientMetadata
|
|
274
276
|
from neurograph.v1.models.client_metadata_request import ClientMetadataRequest as ClientMetadataRequest
|
|
275
277
|
from neurograph.v1.models.client_metadata_response import ClientMetadataResponse as ClientMetadataResponse
|
neurograph/v1/models/__init__.py
CHANGED
|
@@ -32,6 +32,7 @@ from neurograph.v1.models.client_get_detail_response import ClientGetDetailRespo
|
|
|
32
32
|
from neurograph.v1.models.client_get_many_response import ClientGetManyResponse
|
|
33
33
|
from neurograph.v1.models.client_info import ClientInfo
|
|
34
34
|
from neurograph.v1.models.client_kpi import ClientKpi
|
|
35
|
+
from neurograph.v1.models.client_match_criteria_row_in_db import ClientMatchCriteriaRowInDb
|
|
35
36
|
from neurograph.v1.models.client_metadata import ClientMetadata
|
|
36
37
|
from neurograph.v1.models.client_metadata_request import ClientMetadataRequest
|
|
37
38
|
from neurograph.v1.models.client_metadata_response import ClientMetadataResponse
|
|
@@ -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, 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 ClientMatchCriteriaRowInDb(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
ClientMatchCriteriaRowInDb
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
concept: Optional[StrictStr] = None
|
|
30
|
+
detail: Optional[StrictStr] = None
|
|
31
|
+
display: Optional[StrictStr] = None
|
|
32
|
+
error: Optional[StrictStr] = None
|
|
33
|
+
id: Optional[StrictInt] = None
|
|
34
|
+
persona_instance_id: Optional[StrictStr] = None
|
|
35
|
+
__properties: ClassVar[List[str]] = ["concept", "detail", "display", "error", "id", "persona_instance_id"]
|
|
36
|
+
|
|
37
|
+
model_config = ConfigDict(
|
|
38
|
+
populate_by_name=True,
|
|
39
|
+
validate_assignment=True,
|
|
40
|
+
protected_namespaces=(),
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def to_str(self) -> str:
|
|
45
|
+
"""Returns the string representation of the model using alias"""
|
|
46
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
47
|
+
|
|
48
|
+
def to_json(self) -> str:
|
|
49
|
+
"""Returns the JSON representation of the model using alias"""
|
|
50
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
51
|
+
return json.dumps(self.to_dict())
|
|
52
|
+
|
|
53
|
+
@classmethod
|
|
54
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
55
|
+
"""Create an instance of ClientMatchCriteriaRowInDb from a JSON string"""
|
|
56
|
+
return cls.from_dict(json.loads(json_str))
|
|
57
|
+
|
|
58
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
59
|
+
"""Return the dictionary representation of the model using alias.
|
|
60
|
+
|
|
61
|
+
This has the following differences from calling pydantic's
|
|
62
|
+
`self.model_dump(by_alias=True)`:
|
|
63
|
+
|
|
64
|
+
* `None` is only added to the output dict for nullable fields that
|
|
65
|
+
were set at model initialization. Other fields with value `None`
|
|
66
|
+
are ignored.
|
|
67
|
+
"""
|
|
68
|
+
excluded_fields: Set[str] = set([
|
|
69
|
+
])
|
|
70
|
+
|
|
71
|
+
_dict = self.model_dump(
|
|
72
|
+
by_alias=True,
|
|
73
|
+
exclude=excluded_fields,
|
|
74
|
+
exclude_none=True,
|
|
75
|
+
)
|
|
76
|
+
return _dict
|
|
77
|
+
|
|
78
|
+
@classmethod
|
|
79
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
80
|
+
"""Create an instance of ClientMatchCriteriaRowInDb from a dict"""
|
|
81
|
+
if obj is None:
|
|
82
|
+
return None
|
|
83
|
+
|
|
84
|
+
if not isinstance(obj, dict):
|
|
85
|
+
return cls.model_validate(obj)
|
|
86
|
+
|
|
87
|
+
_obj = cls.model_validate({
|
|
88
|
+
"concept": obj.get("concept"),
|
|
89
|
+
"detail": obj.get("detail"),
|
|
90
|
+
"display": obj.get("display"),
|
|
91
|
+
"error": obj.get("error"),
|
|
92
|
+
"id": obj.get("id"),
|
|
93
|
+
"persona_instance_id": obj.get("persona_instance_id")
|
|
94
|
+
})
|
|
95
|
+
return _obj
|
|
96
|
+
|
|
97
|
+
|
|
@@ -20,6 +20,7 @@ import json
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, StrictBool, StrictFloat, StrictInt, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from neurograph.v1.models.client_kpi import ClientKpi
|
|
23
|
+
from neurograph.v1.models.client_match_criteria_row_in_db import ClientMatchCriteriaRowInDb
|
|
23
24
|
from neurograph.v1.models.client_persona_factor import ClientPersonaFactor
|
|
24
25
|
from neurograph.v1.models.client_persona_insight import ClientPersonaInsight
|
|
25
26
|
from neurograph.v1.models.client_persona_personality_trait import ClientPersonaPersonalityTrait
|
|
@@ -40,6 +41,7 @@ class ClientPersona(BaseModel):
|
|
|
40
41
|
is_active: Optional[StrictBool] = None
|
|
41
42
|
kpis: Optional[List[ClientKpi]] = None
|
|
42
43
|
male: Optional[Union[StrictFloat, StrictInt]] = None
|
|
44
|
+
match_criteria: Optional[List[ClientMatchCriteriaRowInDb]] = None
|
|
43
45
|
metadata: Optional[StrictStr] = None
|
|
44
46
|
name: Optional[StrictStr] = None
|
|
45
47
|
persona_seed_id: Optional[StrictStr] = None
|
|
@@ -58,7 +60,7 @@ class ClientPersona(BaseModel):
|
|
|
58
60
|
ts_created: Optional[StrictInt] = None
|
|
59
61
|
ts_updated: Optional[StrictInt] = None
|
|
60
62
|
value: Optional[StrictStr] = None
|
|
61
|
-
__properties: ClassVar[List[str]] = ["age", "description", "factors", "female", "id", "income", "insights", "is_active", "kpis", "male", "metadata", "name", "persona_seed_id", "personality_background", "personality_first_name", "personality_img_url", "personality_last_name", "personality_quote", "personality_traits", "personality_video_url", "positioning_statement", "seed_uid", "summary_detail", "summary_headline", "tag", "ts_created", "ts_updated", "value"]
|
|
63
|
+
__properties: ClassVar[List[str]] = ["age", "description", "factors", "female", "id", "income", "insights", "is_active", "kpis", "male", "match_criteria", "metadata", "name", "persona_seed_id", "personality_background", "personality_first_name", "personality_img_url", "personality_last_name", "personality_quote", "personality_traits", "personality_video_url", "positioning_statement", "seed_uid", "summary_detail", "summary_headline", "tag", "ts_created", "ts_updated", "value"]
|
|
62
64
|
|
|
63
65
|
model_config = ConfigDict(
|
|
64
66
|
populate_by_name=True,
|
|
@@ -120,6 +122,13 @@ class ClientPersona(BaseModel):
|
|
|
120
122
|
if _item_kpis:
|
|
121
123
|
_items.append(_item_kpis.to_dict())
|
|
122
124
|
_dict['kpis'] = _items
|
|
125
|
+
# override the default output from pydantic by calling `to_dict()` of each item in match_criteria (list)
|
|
126
|
+
_items = []
|
|
127
|
+
if self.match_criteria:
|
|
128
|
+
for _item_match_criteria in self.match_criteria:
|
|
129
|
+
if _item_match_criteria:
|
|
130
|
+
_items.append(_item_match_criteria.to_dict())
|
|
131
|
+
_dict['match_criteria'] = _items
|
|
123
132
|
# override the default output from pydantic by calling `to_dict()` of each item in personality_traits (list)
|
|
124
133
|
_items = []
|
|
125
134
|
if self.personality_traits:
|
|
@@ -149,6 +158,7 @@ class ClientPersona(BaseModel):
|
|
|
149
158
|
"is_active": obj.get("is_active"),
|
|
150
159
|
"kpis": [ClientKpi.from_dict(_item) for _item in obj["kpis"]] if obj.get("kpis") is not None else None,
|
|
151
160
|
"male": obj.get("male"),
|
|
161
|
+
"match_criteria": [ClientMatchCriteriaRowInDb.from_dict(_item) for _item in obj["match_criteria"]] if obj.get("match_criteria") is not None else None,
|
|
152
162
|
"metadata": obj.get("metadata"),
|
|
153
163
|
"name": obj.get("name"),
|
|
154
164
|
"persona_seed_id": obj.get("persona_seed_id"),
|
|
@@ -20,6 +20,7 @@ import json
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, StrictFloat, StrictInt, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from neurograph.v1.models.personas_kpi import PersonasKpi
|
|
23
|
+
from neurograph.v1.models.personas_match_criteria_row_in_db import PersonasMatchCriteriaRowInDb
|
|
23
24
|
from neurograph.v1.models.personas_persona_factor import PersonasPersonaFactor
|
|
24
25
|
from neurograph.v1.models.personas_persona_insight import PersonasPersonaInsight
|
|
25
26
|
from neurograph.v1.models.personas_persona_personality_trait import PersonasPersonaPersonalityTrait
|
|
@@ -39,6 +40,7 @@ class PersonasPersona(BaseModel):
|
|
|
39
40
|
insights: Optional[List[PersonasPersonaInsight]] = None
|
|
40
41
|
kpis: Optional[List[PersonasKpi]] = None
|
|
41
42
|
male: Optional[Union[StrictFloat, StrictInt]] = None
|
|
43
|
+
match_criteria: Optional[List[PersonasMatchCriteriaRowInDb]] = None
|
|
42
44
|
metadata: Optional[StrictStr] = None
|
|
43
45
|
name: Optional[StrictStr] = None
|
|
44
46
|
persona_seed_id: Optional[StrictStr] = None
|
|
@@ -57,7 +59,7 @@ class PersonasPersona(BaseModel):
|
|
|
57
59
|
ts_created: Optional[StrictInt] = None
|
|
58
60
|
ts_updated: Optional[StrictInt] = None
|
|
59
61
|
value: Optional[StrictStr] = None
|
|
60
|
-
__properties: ClassVar[List[str]] = ["age", "description", "factors", "female", "id", "income", "insights", "kpis", "male", "metadata", "name", "persona_seed_id", "personality_background", "personality_first_name", "personality_img_url", "personality_last_name", "personality_quote", "personality_traits", "personality_video_url", "positioning_statement", "seed_uid", "summary_detail", "summary_headline", "tag", "ts_created", "ts_updated", "value"]
|
|
62
|
+
__properties: ClassVar[List[str]] = ["age", "description", "factors", "female", "id", "income", "insights", "kpis", "male", "match_criteria", "metadata", "name", "persona_seed_id", "personality_background", "personality_first_name", "personality_img_url", "personality_last_name", "personality_quote", "personality_traits", "personality_video_url", "positioning_statement", "seed_uid", "summary_detail", "summary_headline", "tag", "ts_created", "ts_updated", "value"]
|
|
61
63
|
|
|
62
64
|
model_config = ConfigDict(
|
|
63
65
|
populate_by_name=True,
|
|
@@ -119,6 +121,13 @@ class PersonasPersona(BaseModel):
|
|
|
119
121
|
if _item_kpis:
|
|
120
122
|
_items.append(_item_kpis.to_dict())
|
|
121
123
|
_dict['kpis'] = _items
|
|
124
|
+
# override the default output from pydantic by calling `to_dict()` of each item in match_criteria (list)
|
|
125
|
+
_items = []
|
|
126
|
+
if self.match_criteria:
|
|
127
|
+
for _item_match_criteria in self.match_criteria:
|
|
128
|
+
if _item_match_criteria:
|
|
129
|
+
_items.append(_item_match_criteria.to_dict())
|
|
130
|
+
_dict['match_criteria'] = _items
|
|
122
131
|
# override the default output from pydantic by calling `to_dict()` of each item in personality_traits (list)
|
|
123
132
|
_items = []
|
|
124
133
|
if self.personality_traits:
|
|
@@ -147,6 +156,7 @@ class PersonasPersona(BaseModel):
|
|
|
147
156
|
"insights": [PersonasPersonaInsight.from_dict(_item) for _item in obj["insights"]] if obj.get("insights") is not None else None,
|
|
148
157
|
"kpis": [PersonasKpi.from_dict(_item) for _item in obj["kpis"]] if obj.get("kpis") is not None else None,
|
|
149
158
|
"male": obj.get("male"),
|
|
159
|
+
"match_criteria": [PersonasMatchCriteriaRowInDb.from_dict(_item) for _item in obj["match_criteria"]] if obj.get("match_criteria") is not None else None,
|
|
150
160
|
"metadata": obj.get("metadata"),
|
|
151
161
|
"name": obj.get("name"),
|
|
152
162
|
"persona_seed_id": obj.get("persona_seed_id"),
|
|
@@ -17,7 +17,7 @@ import pprint
|
|
|
17
17
|
import re # noqa: F401
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
|
-
from pydantic import BaseModel, ConfigDict, StrictFloat, StrictInt, StrictStr
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from typing import Optional, Set
|
|
23
23
|
from typing_extensions import Self
|
|
@@ -26,12 +26,20 @@ class ReportingDailyMetric(BaseModel):
|
|
|
26
26
|
"""
|
|
27
27
|
ReportingDailyMetric
|
|
28
28
|
""" # noqa: E501
|
|
29
|
-
avg_lifetime_value: Optional[Union[StrictFloat, StrictInt]] = None
|
|
29
|
+
avg_lifetime_value: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="DEPRECATED: Use WinsorizedAvgLTV instead")
|
|
30
|
+
avg_ltv_original: Optional[Union[StrictFloat, StrictInt]] = None
|
|
31
|
+
customers_with_orders: Optional[StrictInt] = None
|
|
32
|
+
data_quality_flag: Optional[StrictStr] = None
|
|
33
|
+
iqr_avg_ltv: Optional[Union[StrictFloat, StrictInt]] = None
|
|
34
|
+
median_ltv: Optional[Union[StrictFloat, StrictInt]] = None
|
|
35
|
+
outlier_count: Optional[StrictInt] = None
|
|
36
|
+
p25_ltv: Optional[Union[StrictFloat, StrictInt]] = None
|
|
37
|
+
p75_ltv: Optional[Union[StrictFloat, StrictInt]] = None
|
|
30
38
|
persona_name: Optional[StrictStr] = None
|
|
31
39
|
total_customers: Optional[StrictInt] = None
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
__properties: ClassVar[List[str]] = ["avg_lifetime_value", "persona_name", "total_customers", "
|
|
40
|
+
trimmed_avg_ltv: Optional[Union[StrictFloat, StrictInt]] = None
|
|
41
|
+
winsorized_avg_ltv: Optional[Union[StrictFloat, StrictInt]] = None
|
|
42
|
+
__properties: ClassVar[List[str]] = ["avg_lifetime_value", "avg_ltv_original", "customers_with_orders", "data_quality_flag", "iqr_avg_ltv", "median_ltv", "outlier_count", "p25_ltv", "p75_ltv", "persona_name", "total_customers", "trimmed_avg_ltv", "winsorized_avg_ltv"]
|
|
35
43
|
|
|
36
44
|
model_config = ConfigDict(
|
|
37
45
|
populate_by_name=True,
|
|
@@ -85,10 +93,18 @@ class ReportingDailyMetric(BaseModel):
|
|
|
85
93
|
|
|
86
94
|
_obj = cls.model_validate({
|
|
87
95
|
"avg_lifetime_value": obj.get("avg_lifetime_value"),
|
|
96
|
+
"avg_ltv_original": obj.get("avg_ltv_original"),
|
|
97
|
+
"customers_with_orders": obj.get("customers_with_orders"),
|
|
98
|
+
"data_quality_flag": obj.get("data_quality_flag"),
|
|
99
|
+
"iqr_avg_ltv": obj.get("iqr_avg_ltv"),
|
|
100
|
+
"median_ltv": obj.get("median_ltv"),
|
|
101
|
+
"outlier_count": obj.get("outlier_count"),
|
|
102
|
+
"p25_ltv": obj.get("p25_ltv"),
|
|
103
|
+
"p75_ltv": obj.get("p75_ltv"),
|
|
88
104
|
"persona_name": obj.get("persona_name"),
|
|
89
105
|
"total_customers": obj.get("total_customers"),
|
|
90
|
-
"
|
|
91
|
-
"
|
|
106
|
+
"trimmed_avg_ltv": obj.get("trimmed_avg_ltv"),
|
|
107
|
+
"winsorized_avg_ltv": obj.get("winsorized_avg_ltv")
|
|
92
108
|
})
|
|
93
109
|
return _obj
|
|
94
110
|
|
|
@@ -17,7 +17,7 @@ import pprint
|
|
|
17
17
|
import re # noqa: F401
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
|
-
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from typing import Optional, Set
|
|
23
23
|
from typing_extensions import Self
|
|
@@ -26,10 +26,11 @@ class ReportingQuery(BaseModel):
|
|
|
26
26
|
"""
|
|
27
27
|
ReportingQuery
|
|
28
28
|
""" # noqa: E501
|
|
29
|
+
activity_window_days: Optional[StrictInt] = None
|
|
29
30
|
client_uid: Optional[StrictStr] = None
|
|
30
31
|
end_date: Optional[StrictStr] = None
|
|
31
32
|
start_date: Optional[StrictStr] = None
|
|
32
|
-
__properties: ClassVar[List[str]] = ["client_uid", "end_date", "start_date"]
|
|
33
|
+
__properties: ClassVar[List[str]] = ["activity_window_days", "client_uid", "end_date", "start_date"]
|
|
33
34
|
|
|
34
35
|
model_config = ConfigDict(
|
|
35
36
|
populate_by_name=True,
|
|
@@ -82,6 +83,7 @@ class ReportingQuery(BaseModel):
|
|
|
82
83
|
return cls.model_validate(obj)
|
|
83
84
|
|
|
84
85
|
_obj = cls.model_validate({
|
|
86
|
+
"activity_window_days": obj.get("activity_window_days"),
|
|
85
87
|
"client_uid": obj.get("client_uid"),
|
|
86
88
|
"end_date": obj.get("end_date"),
|
|
87
89
|
"start_date": obj.get("start_date")
|
{neurograph_core-1.202510101705.dist-info → neurograph_core-1.202510232201.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
neurograph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
neurograph/v1/__init__.py,sha256=
|
|
2
|
+
neurograph/v1/__init__.py,sha256=_QAM4scUGprRIVddMFUAVPZ-U2pT1JVoQkRPXKNMUdU,28385
|
|
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
|
|
@@ -22,7 +22,7 @@ neurograph/v1/api/reporting_api.py,sha256=EcqzhzFcaZGYtNPmTtXPSHLYL8P7BEiVv2dUQM
|
|
|
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=
|
|
25
|
+
neurograph/v1/models/__init__.py,sha256=sxPY58C2hvXbMe1DQDaKM3ZXQsUdsQ_u0DHsELMjEb0,15495
|
|
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
|
|
@@ -42,12 +42,13 @@ neurograph/v1/models/client_get_detail_response.py,sha256=3hpf3nLymMF68MjQI1IRTg
|
|
|
42
42
|
neurograph/v1/models/client_get_many_response.py,sha256=fgEyp4Yw7QK92u5ldpVESI9OS0mS0enOGuffsJPnNgc,3559
|
|
43
43
|
neurograph/v1/models/client_info.py,sha256=xwxYunTVHPX3TBDEHEqwZuSDBBwL0SAD_42KqrKMmr8,3069
|
|
44
44
|
neurograph/v1/models/client_kpi.py,sha256=70J-ig90ZqT9j9-mBe9vqkihYVRvUq4q_hNOaDG0z4A,2798
|
|
45
|
+
neurograph/v1/models/client_match_criteria_row_in_db.py,sha256=Kl7d3-rqw0bFxxs-coHTHYEDdrgDOgehUia5MTLNsKA,3062
|
|
45
46
|
neurograph/v1/models/client_metadata.py,sha256=dlUXkHQFfTx0PD2KaWJiIbLqqBaCsVbSxcwFIkS_AyQ,2810
|
|
46
47
|
neurograph/v1/models/client_metadata_request.py,sha256=F6nO2sIRozjIYsZ6pI9gb9vIK6TLbqYPgjkWu2HBiNg,2615
|
|
47
48
|
neurograph/v1/models/client_metadata_response.py,sha256=kyNOh6RgzfrukOc7i6argnVeAO6122fulUTxZzMB7UI,3987
|
|
48
49
|
neurograph/v1/models/client_organization_brand.py,sha256=Kr0gpptq1rjITAwrppacHDGNj2cSWTBV7GskzswNAjE,3601
|
|
49
50
|
neurograph/v1/models/client_organization_detail.py,sha256=V4UdD5vWf1RckuzPWt86X7t2OWuSGU0gVZ7WkWsXdMM,4206
|
|
50
|
-
neurograph/v1/models/client_persona.py,sha256=
|
|
51
|
+
neurograph/v1/models/client_persona.py,sha256=fQpO21J6l8TBRjwPFRSjiBG2CivoDToy8Sedxv3JUhg,8472
|
|
51
52
|
neurograph/v1/models/client_persona_factor.py,sha256=h7x5fkXRXSlyCkIdSE0fHuuDB5uPhfulNNJCFbigUXc,3116
|
|
52
53
|
neurograph/v1/models/client_persona_insight.py,sha256=yiQHjiYjvdLhzpRJDOWtFgslcvvnLylrqmVuYEGTyA4,2839
|
|
53
54
|
neurograph/v1/models/client_persona_personality_trait.py,sha256=ac6z3pxe2mpZJbSEjs0uL8JZnViIZ3Idnf0KEqDY5Tg,2888
|
|
@@ -176,7 +177,7 @@ neurograph/v1/models/personas_match_criteria_request.py,sha256=kWJB_Xt2IJ3BRn6wa
|
|
|
176
177
|
neurograph/v1/models/personas_match_criteria_response.py,sha256=KyI_6TXOh7OC3pKc9ceWsgUCCxNyl_yvmQIrDvCo-HM,3178
|
|
177
178
|
neurograph/v1/models/personas_match_criteria_row_in.py,sha256=bY9UFQtEWS8Vr9Q-KEhSJ2Y-ez2B1XaN7iUpHmirbwc,2891
|
|
178
179
|
neurograph/v1/models/personas_match_criteria_row_in_db.py,sha256=DtrLejuDCQ72-pb-O7EcaXekqDdnotUlufdwTMc4Y20,3070
|
|
179
|
-
neurograph/v1/models/personas_persona.py,sha256=
|
|
180
|
+
neurograph/v1/models/personas_persona.py,sha256=q6tULr_OYitIUKchfM-DTZD_xFPYsOcrse_lP9ivzs4,8405
|
|
180
181
|
neurograph/v1/models/personas_persona_factor.py,sha256=cPFBQ5IHbQlJd6XszSBrKN7OjF_Rz6zXEry-sA83XXE,3124
|
|
181
182
|
neurograph/v1/models/personas_persona_insight.py,sha256=sOrP0DBt-PzJlaIPASyaYbFBzrwlZppuG2J0cTUSY_s,2847
|
|
182
183
|
neurograph/v1/models/personas_persona_personality_trait.py,sha256=Pnp0k0wmMvWHo4w4kV4ewAgbMTQjLFe9OPvovX5bCI8,2896
|
|
@@ -192,16 +193,16 @@ neurograph/v1/models/pgtype_infinity_modifier.py,sha256=rROhs-_4H5Vuk0omVmVTzu8e
|
|
|
192
193
|
neurograph/v1/models/pgtype_int8.py,sha256=jDeN8o2tU2gsiTu0qR9tlwqNTZXzlOQWrtCOYtEiY-Y,2592
|
|
193
194
|
neurograph/v1/models/pgtype_text.py,sha256=fOIS-9aEpA0pMgswkN8yehcG9Bzx6XYIbPXQTWcOk7o,2596
|
|
194
195
|
neurograph/v1/models/pgtype_timestamp.py,sha256=EBT-tEr4tuItetIaorIe7l-wGF3adPnZ1NCLsmQQFaI,2966
|
|
195
|
-
neurograph/v1/models/reporting_daily_metric.py,sha256=
|
|
196
|
+
neurograph/v1/models/reporting_daily_metric.py,sha256=zIQwpabMcPFsxJU5p-DrYOkh3WM_mlrifG3LvwYNccQ,4294
|
|
196
197
|
neurograph/v1/models/reporting_daily_metrics_response.py,sha256=lmj9ClSx0BaO9Z16jjkWNmcj2yPP574eeRMEEZ-Vf6s,3143
|
|
197
|
-
neurograph/v1/models/reporting_query.py,sha256=
|
|
198
|
+
neurograph/v1/models/reporting_query.py,sha256=T6eM7DNvWmnIaoRbh8DTZBzW4Z2ZwAZz7R-kkYu2OyU,2890
|
|
198
199
|
neurograph/v1/models/workbench_workbench_url_check_request.py,sha256=3H9SYJE78OlRPvVUZbTW4_KELkp8UUlM7Urpj3YDwyU,2581
|
|
199
200
|
neurograph/v1/models/workbench_workbench_url_check_response.py,sha256=X8x_i7U2x1ckfI3lSNvu1FUrp7lq3atXilYI5k10dbA,3913
|
|
200
201
|
neurograph/v1/models/workbench_workbench_version.py,sha256=AsgikzRU6BRj99gRFGGTlkJA6eqUY2v1HKu22mxfNpU,3165
|
|
201
202
|
neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
|
|
202
203
|
neurograph/v1/models/workbench_workbench_version_response.py,sha256=nMupKXBsoi4eXD-fsp_5PHrMislATwoBpVIZU7mG9RM,3283
|
|
203
204
|
neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=bAxjBeFe8EG3bXPUrLjfntlC65lK5p_ddPs_0yX3A9g,2994
|
|
204
|
-
neurograph_core-1.
|
|
205
|
-
neurograph_core-1.
|
|
206
|
-
neurograph_core-1.
|
|
207
|
-
neurograph_core-1.
|
|
205
|
+
neurograph_core-1.202510232201.dist-info/METADATA,sha256=q-VDObjjOcnDN90FwsXZOZPpwyZTFOsRup6W5ePoIkE,1902
|
|
206
|
+
neurograph_core-1.202510232201.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
207
|
+
neurograph_core-1.202510232201.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
|
|
208
|
+
neurograph_core-1.202510232201.dist-info/RECORD,,
|
|
File without changes
|
{neurograph_core-1.202510101705.dist-info → neurograph_core-1.202510232201.dist-info}/top_level.txt
RENAMED
|
File without changes
|