neurograph-core 1.202510052316__py3-none-any.whl → 1.202510081632__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 +0 -16
- neurograph/v1/api/__init__.py +0 -1
- neurograph/v1/models/__init__.py +0 -7
- neurograph/v1/models/client_persona.py +4 -2
- {neurograph_core-1.202510052316.dist-info → neurograph_core-1.202510081632.dist-info}/METADATA +1 -1
- {neurograph_core-1.202510052316.dist-info → neurograph_core-1.202510081632.dist-info}/RECORD +8 -16
- neurograph/v1/api/reporting_api.py +0 -1475
- neurograph/v1/models/reporting_affinities_response.py +0 -89
- neurograph/v1/models/reporting_customer_activity_response.py +0 -89
- neurograph/v1/models/reporting_daily_metric.py +0 -95
- neurograph/v1/models/reporting_daily_metrics_response.py +0 -97
- neurograph/v1/models/reporting_persona_activity_response.py +0 -89
- neurograph/v1/models/reporting_personas_response.py +0 -89
- neurograph/v1/models/reporting_query.py +0 -91
- {neurograph_core-1.202510052316.dist-info → neurograph_core-1.202510081632.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202510052316.dist-info → neurograph_core-1.202510081632.dist-info}/top_level.txt +0 -0
neurograph/v1/__init__.py
CHANGED
|
@@ -29,7 +29,6 @@ __all__ = [
|
|
|
29
29
|
"OrganizationApi",
|
|
30
30
|
"OrganizationMetadataApi",
|
|
31
31
|
"PersonaApi",
|
|
32
|
-
"ReportingApi",
|
|
33
32
|
"SystemApi",
|
|
34
33
|
"UserApi",
|
|
35
34
|
"WorkbenchApi",
|
|
@@ -211,13 +210,6 @@ __all__ = [
|
|
|
211
210
|
"PgtypeInt8",
|
|
212
211
|
"PgtypeText",
|
|
213
212
|
"PgtypeTimestamp",
|
|
214
|
-
"ReportingAffinitiesResponse",
|
|
215
|
-
"ReportingCustomerActivityResponse",
|
|
216
|
-
"ReportingDailyMetric",
|
|
217
|
-
"ReportingDailyMetricsResponse",
|
|
218
|
-
"ReportingPersonaActivityResponse",
|
|
219
|
-
"ReportingPersonasResponse",
|
|
220
|
-
"ReportingQuery",
|
|
221
213
|
"WorkbenchWorkbenchUrlCheckRequest",
|
|
222
214
|
"WorkbenchWorkbenchUrlCheckResponse",
|
|
223
215
|
"WorkbenchWorkbenchVersion",
|
|
@@ -238,7 +230,6 @@ from neurograph.v1.api.lookup_api import LookupApi as LookupApi
|
|
|
238
230
|
from neurograph.v1.api.organization_api import OrganizationApi as OrganizationApi
|
|
239
231
|
from neurograph.v1.api.organization_metadata_api import OrganizationMetadataApi as OrganizationMetadataApi
|
|
240
232
|
from neurograph.v1.api.persona_api import PersonaApi as PersonaApi
|
|
241
|
-
from neurograph.v1.api.reporting_api import ReportingApi as ReportingApi
|
|
242
233
|
from neurograph.v1.api.system_api import SystemApi as SystemApi
|
|
243
234
|
from neurograph.v1.api.user_api import UserApi as UserApi
|
|
244
235
|
from neurograph.v1.api.workbench_api import WorkbenchApi as WorkbenchApi
|
|
@@ -424,13 +415,6 @@ from neurograph.v1.models.pgtype_infinity_modifier import PgtypeInfinityModifier
|
|
|
424
415
|
from neurograph.v1.models.pgtype_int8 import PgtypeInt8 as PgtypeInt8
|
|
425
416
|
from neurograph.v1.models.pgtype_text import PgtypeText as PgtypeText
|
|
426
417
|
from neurograph.v1.models.pgtype_timestamp import PgtypeTimestamp as PgtypeTimestamp
|
|
427
|
-
from neurograph.v1.models.reporting_affinities_response import ReportingAffinitiesResponse as ReportingAffinitiesResponse
|
|
428
|
-
from neurograph.v1.models.reporting_customer_activity_response import ReportingCustomerActivityResponse as ReportingCustomerActivityResponse
|
|
429
|
-
from neurograph.v1.models.reporting_daily_metric import ReportingDailyMetric as ReportingDailyMetric
|
|
430
|
-
from neurograph.v1.models.reporting_daily_metrics_response import ReportingDailyMetricsResponse as ReportingDailyMetricsResponse
|
|
431
|
-
from neurograph.v1.models.reporting_persona_activity_response import ReportingPersonaActivityResponse as ReportingPersonaActivityResponse
|
|
432
|
-
from neurograph.v1.models.reporting_personas_response import ReportingPersonasResponse as ReportingPersonasResponse
|
|
433
|
-
from neurograph.v1.models.reporting_query import ReportingQuery as ReportingQuery
|
|
434
418
|
from neurograph.v1.models.workbench_workbench_url_check_request import WorkbenchWorkbenchUrlCheckRequest as WorkbenchWorkbenchUrlCheckRequest
|
|
435
419
|
from neurograph.v1.models.workbench_workbench_url_check_response import WorkbenchWorkbenchUrlCheckResponse as WorkbenchWorkbenchUrlCheckResponse
|
|
436
420
|
from neurograph.v1.models.workbench_workbench_version import WorkbenchWorkbenchVersion as WorkbenchWorkbenchVersion
|
neurograph/v1/api/__init__.py
CHANGED
|
@@ -12,7 +12,6 @@ from neurograph.v1.api.lookup_api import LookupApi
|
|
|
12
12
|
from neurograph.v1.api.organization_api import OrganizationApi
|
|
13
13
|
from neurograph.v1.api.organization_metadata_api import OrganizationMetadataApi
|
|
14
14
|
from neurograph.v1.api.persona_api import PersonaApi
|
|
15
|
-
from neurograph.v1.api.reporting_api import ReportingApi
|
|
16
15
|
from neurograph.v1.api.system_api import SystemApi
|
|
17
16
|
from neurograph.v1.api.user_api import UserApi
|
|
18
17
|
from neurograph.v1.api.workbench_api import WorkbenchApi
|
neurograph/v1/models/__init__.py
CHANGED
|
@@ -182,13 +182,6 @@ from neurograph.v1.models.pgtype_infinity_modifier import PgtypeInfinityModifier
|
|
|
182
182
|
from neurograph.v1.models.pgtype_int8 import PgtypeInt8
|
|
183
183
|
from neurograph.v1.models.pgtype_text import PgtypeText
|
|
184
184
|
from neurograph.v1.models.pgtype_timestamp import PgtypeTimestamp
|
|
185
|
-
from neurograph.v1.models.reporting_affinities_response import ReportingAffinitiesResponse
|
|
186
|
-
from neurograph.v1.models.reporting_customer_activity_response import ReportingCustomerActivityResponse
|
|
187
|
-
from neurograph.v1.models.reporting_daily_metric import ReportingDailyMetric
|
|
188
|
-
from neurograph.v1.models.reporting_daily_metrics_response import ReportingDailyMetricsResponse
|
|
189
|
-
from neurograph.v1.models.reporting_persona_activity_response import ReportingPersonaActivityResponse
|
|
190
|
-
from neurograph.v1.models.reporting_personas_response import ReportingPersonasResponse
|
|
191
|
-
from neurograph.v1.models.reporting_query import ReportingQuery
|
|
192
185
|
from neurograph.v1.models.workbench_workbench_url_check_request import WorkbenchWorkbenchUrlCheckRequest
|
|
193
186
|
from neurograph.v1.models.workbench_workbench_url_check_response import WorkbenchWorkbenchUrlCheckResponse
|
|
194
187
|
from neurograph.v1.models.workbench_workbench_version import WorkbenchWorkbenchVersion
|
|
@@ -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, 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
23
|
from neurograph.v1.models.client_persona_factor import ClientPersonaFactor
|
|
@@ -37,6 +37,7 @@ class ClientPersona(BaseModel):
|
|
|
37
37
|
id: Optional[StrictStr] = None
|
|
38
38
|
income: Optional[StrictStr] = None
|
|
39
39
|
insights: Optional[List[ClientPersonaInsight]] = None
|
|
40
|
+
is_active: Optional[StrictBool] = None
|
|
40
41
|
kpis: Optional[List[ClientKpi]] = None
|
|
41
42
|
male: Optional[Union[StrictFloat, StrictInt]] = None
|
|
42
43
|
metadata: Optional[StrictStr] = None
|
|
@@ -57,7 +58,7 @@ class ClientPersona(BaseModel):
|
|
|
57
58
|
ts_created: Optional[StrictInt] = None
|
|
58
59
|
ts_updated: Optional[StrictInt] = None
|
|
59
60
|
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"]
|
|
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"]
|
|
61
62
|
|
|
62
63
|
model_config = ConfigDict(
|
|
63
64
|
populate_by_name=True,
|
|
@@ -145,6 +146,7 @@ class ClientPersona(BaseModel):
|
|
|
145
146
|
"id": obj.get("id"),
|
|
146
147
|
"income": obj.get("income"),
|
|
147
148
|
"insights": [ClientPersonaInsight.from_dict(_item) for _item in obj["insights"]] if obj.get("insights") is not None else None,
|
|
149
|
+
"is_active": obj.get("is_active"),
|
|
148
150
|
"kpis": [ClientKpi.from_dict(_item) for _item in obj["kpis"]] if obj.get("kpis") is not None else None,
|
|
149
151
|
"male": obj.get("male"),
|
|
150
152
|
"metadata": obj.get("metadata"),
|
{neurograph_core-1.202510052316.dist-info → neurograph_core-1.202510081632.dist-info}/RECORD
RENAMED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
neurograph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
neurograph/v1/__init__.py,sha256=
|
|
2
|
+
neurograph/v1/__init__.py,sha256=q53y-nIbHQ9cca0BTyVf5fVQojA_LIqk8gcaGZn2SLQ,27737
|
|
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
|
|
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=WwMtS4LSXgke6XAJlbBKSbZhGrhyoUqh8CB7_OC4s5E,867
|
|
10
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
12
|
neurograph/v1/api/client_api.py,sha256=XEtI472SI4gtCLMt8LR54_bDqbsk_BEBqdI1bUjVHh8,97977
|
|
@@ -18,11 +18,10 @@ neurograph/v1/api/lookup_api.py,sha256=FF-HYxUi3TweR1P7oQvYGqsYfvZFWst9GCEjcfC9u
|
|
|
18
18
|
neurograph/v1/api/organization_api.py,sha256=3X0qublErpfx4J1zvPzjzY7S_AxcVi4vkc3APC519d8,77955
|
|
19
19
|
neurograph/v1/api/organization_metadata_api.py,sha256=PtwuBFSY0FjCAB7fuR710CRkQbtR-xpruX9780hGQxk,34860
|
|
20
20
|
neurograph/v1/api/persona_api.py,sha256=5uQJHMz3qo-iFPHZVeEcDe02GkkMvMDI5fCh7Kmqi7g,132658
|
|
21
|
-
neurograph/v1/api/reporting_api.py,sha256=JPp-dByKSjNkYI0NiFCGsN8mlPNyGGLIzuSAnwZQFrI,58442
|
|
22
21
|
neurograph/v1/api/system_api.py,sha256=IIy_ywuthVoa9e_Mrhf34ZsPemMTFm-3lMxVT6DgaKI,10864
|
|
23
22
|
neurograph/v1/api/user_api.py,sha256=0Y4xYK1n7WxkfAY8X6umW0y21mFkeKEaEWcLO9ub20o,10366
|
|
24
23
|
neurograph/v1/api/workbench_api.py,sha256=BMhqbbd_PSZ27br7idOgyZFdxMQ0N7O4fFQq8n_6JVs,34221
|
|
25
|
-
neurograph/v1/models/__init__.py,sha256=
|
|
24
|
+
neurograph/v1/models/__init__.py,sha256=N89V6KiFw4Xk2_49bb0jPNVxRyebSgRajOTMUv1Ud8Y,15166
|
|
26
25
|
neurograph/v1/models/admin_permission_response.py,sha256=RPM3v7iutgJKHnZbVo5ALwqMO8UDc6K0DzHdEoRgubo,2936
|
|
27
26
|
neurograph/v1/models/admin_set_permission_request.py,sha256=TQUB1ar9h-VmiRNm5cbUMCV5Rr98AXG7aew5BMyHBq0,2753
|
|
28
27
|
neurograph/v1/models/admin_upsert_user_request.py,sha256=FtnMRtbtg-5rHEFvt62j5K9LhdyIcM1f52BkpLSfQyk,2740
|
|
@@ -47,7 +46,7 @@ neurograph/v1/models/client_metadata_request.py,sha256=F6nO2sIRozjIYsZ6pI9gb9vIK
|
|
|
47
46
|
neurograph/v1/models/client_metadata_response.py,sha256=kyNOh6RgzfrukOc7i6argnVeAO6122fulUTxZzMB7UI,3987
|
|
48
47
|
neurograph/v1/models/client_organization_brand.py,sha256=Kr0gpptq1rjITAwrppacHDGNj2cSWTBV7GskzswNAjE,3601
|
|
49
48
|
neurograph/v1/models/client_organization_detail.py,sha256=V4UdD5vWf1RckuzPWt86X7t2OWuSGU0gVZ7WkWsXdMM,4206
|
|
50
|
-
neurograph/v1/models/client_persona.py,sha256=
|
|
49
|
+
neurograph/v1/models/client_persona.py,sha256=xT0NS9HqkX3Q7grZSC5GJCd5_6bHAxgFsnAIjdIQo34,7751
|
|
51
50
|
neurograph/v1/models/client_persona_factor.py,sha256=h7x5fkXRXSlyCkIdSE0fHuuDB5uPhfulNNJCFbigUXc,3116
|
|
52
51
|
neurograph/v1/models/client_persona_insight.py,sha256=yiQHjiYjvdLhzpRJDOWtFgslcvvnLylrqmVuYEGTyA4,2839
|
|
53
52
|
neurograph/v1/models/client_persona_personality_trait.py,sha256=ac6z3pxe2mpZJbSEjs0uL8JZnViIZ3Idnf0KEqDY5Tg,2888
|
|
@@ -192,20 +191,13 @@ neurograph/v1/models/pgtype_infinity_modifier.py,sha256=rROhs-_4H5Vuk0omVmVTzu8e
|
|
|
192
191
|
neurograph/v1/models/pgtype_int8.py,sha256=jDeN8o2tU2gsiTu0qR9tlwqNTZXzlOQWrtCOYtEiY-Y,2592
|
|
193
192
|
neurograph/v1/models/pgtype_text.py,sha256=fOIS-9aEpA0pMgswkN8yehcG9Bzx6XYIbPXQTWcOk7o,2596
|
|
194
193
|
neurograph/v1/models/pgtype_timestamp.py,sha256=EBT-tEr4tuItetIaorIe7l-wGF3adPnZ1NCLsmQQFaI,2966
|
|
195
|
-
neurograph/v1/models/reporting_affinities_response.py,sha256=ILffpzqL27FSPHnw7KGcgznnlUG-NVwrD2K9DpxmxME,2672
|
|
196
|
-
neurograph/v1/models/reporting_customer_activity_response.py,sha256=fqRqD4mxFrA7oN_mZflP5WzUrmad82_Ky0l4fKrOa8g,2688
|
|
197
|
-
neurograph/v1/models/reporting_daily_metric.py,sha256=m4ez3Caz-foe3MNT8Oyvhmz4JhLp0tmfO9LHvhtZDg8,3104
|
|
198
|
-
neurograph/v1/models/reporting_daily_metrics_response.py,sha256=lmj9ClSx0BaO9Z16jjkWNmcj2yPP574eeRMEEZ-Vf6s,3143
|
|
199
|
-
neurograph/v1/models/reporting_persona_activity_response.py,sha256=BSGu9QJnhmjN2Sl3kYhhV9ViJOHtnEHaSmbBtFIMa8M,2692
|
|
200
|
-
neurograph/v1/models/reporting_personas_response.py,sha256=v28wgBg10nM2sqdnhnD7ib3J2J4X64WpvE5zazuQHLc,2656
|
|
201
|
-
neurograph/v1/models/reporting_query.py,sha256=4IyMl4MHKSEozjFdmyx6dP2ZL2qTgTQ_gLHYbUW_YhU,2733
|
|
202
194
|
neurograph/v1/models/workbench_workbench_url_check_request.py,sha256=3H9SYJE78OlRPvVUZbTW4_KELkp8UUlM7Urpj3YDwyU,2581
|
|
203
195
|
neurograph/v1/models/workbench_workbench_url_check_response.py,sha256=X8x_i7U2x1ckfI3lSNvu1FUrp7lq3atXilYI5k10dbA,3913
|
|
204
196
|
neurograph/v1/models/workbench_workbench_version.py,sha256=AsgikzRU6BRj99gRFGGTlkJA6eqUY2v1HKu22mxfNpU,3165
|
|
205
197
|
neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
|
|
206
198
|
neurograph/v1/models/workbench_workbench_version_response.py,sha256=nMupKXBsoi4eXD-fsp_5PHrMislATwoBpVIZU7mG9RM,3283
|
|
207
199
|
neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=bAxjBeFe8EG3bXPUrLjfntlC65lK5p_ddPs_0yX3A9g,2994
|
|
208
|
-
neurograph_core-1.
|
|
209
|
-
neurograph_core-1.
|
|
210
|
-
neurograph_core-1.
|
|
211
|
-
neurograph_core-1.
|
|
200
|
+
neurograph_core-1.202510081632.dist-info/METADATA,sha256=SHLpPGpvTnzfL7q3RDSWV0nWnSCXtp74iIQIG2zTjZs,1902
|
|
201
|
+
neurograph_core-1.202510081632.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
202
|
+
neurograph_core-1.202510081632.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
|
|
203
|
+
neurograph_core-1.202510081632.dist-info/RECORD,,
|