neurograph-core 1.202510092216__py3-none-any.whl → 1.202510101705__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 -34
- neurograph/v1/api/admin_api.py +8 -8
- neurograph/v1/api/reporting_api.py +36 -1475
- neurograph/v1/models/__init__.py +0 -17
- neurograph/v1/models/admin_user_detail_response.py +11 -4
- neurograph/v1/models/db_user_client_role.py +6 -2
- neurograph/v1/models/db_user_in_db.py +11 -4
- neurograph/v1/models/db_user_org_role.py +6 -2
- neurograph/v1/models/db_user_role.py +6 -2
- neurograph/v1/models/knowledge_enrichment_artifact_create_request.py +3 -1
- {neurograph_core-1.202510092216.dist-info → neurograph_core-1.202510101705.dist-info}/METADATA +1 -1
- {neurograph_core-1.202510092216.dist-info → neurograph_core-1.202510101705.dist-info}/RECORD +14 -31
- neurograph/v1/models/reporting_affinities_response.py +0 -89
- neurograph/v1/models/reporting_chart_data.py +0 -97
- neurograph/v1/models/reporting_chart_dataset.py +0 -93
- neurograph/v1/models/reporting_chart_defaults.py +0 -91
- neurograph/v1/models/reporting_chart_options.py +0 -93
- neurograph/v1/models/reporting_content_config.py +0 -113
- neurograph/v1/models/reporting_customer_activity_response.py +0 -89
- neurograph/v1/models/reporting_data_range.py +0 -89
- neurograph/v1/models/reporting_exploration_topic.py +0 -91
- neurograph/v1/models/reporting_header_config.py +0 -89
- neurograph/v1/models/reporting_meta_config.py +0 -99
- neurograph/v1/models/reporting_persona_activity_response.py +0 -89
- neurograph/v1/models/reporting_personas_response.py +0 -89
- neurograph/v1/models/reporting_primary_analysis.py +0 -99
- neurograph/v1/models/reporting_rich_insights_config.py +0 -97
- neurograph/v1/models/reporting_visualization.py +0 -103
- neurograph/v1/models/reporting_visualization_insights.py +0 -91
- {neurograph_core-1.202510092216.dist-info → neurograph_core-1.202510101705.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202510092216.dist-info → neurograph_core-1.202510101705.dist-info}/top_level.txt +0 -0
neurograph/v1/__init__.py
CHANGED
|
@@ -211,26 +211,9 @@ __all__ = [
|
|
|
211
211
|
"PgtypeInt8",
|
|
212
212
|
"PgtypeText",
|
|
213
213
|
"PgtypeTimestamp",
|
|
214
|
-
"ReportingAffinitiesResponse",
|
|
215
|
-
"ReportingChartData",
|
|
216
|
-
"ReportingChartDataset",
|
|
217
|
-
"ReportingChartDefaults",
|
|
218
|
-
"ReportingChartOptions",
|
|
219
|
-
"ReportingContentConfig",
|
|
220
|
-
"ReportingCustomerActivityResponse",
|
|
221
214
|
"ReportingDailyMetric",
|
|
222
215
|
"ReportingDailyMetricsResponse",
|
|
223
|
-
"ReportingDataRange",
|
|
224
|
-
"ReportingExplorationTopic",
|
|
225
|
-
"ReportingHeaderConfig",
|
|
226
|
-
"ReportingMetaConfig",
|
|
227
|
-
"ReportingPersonaActivityResponse",
|
|
228
|
-
"ReportingPersonasResponse",
|
|
229
|
-
"ReportingPrimaryAnalysis",
|
|
230
216
|
"ReportingQuery",
|
|
231
|
-
"ReportingRichInsightsConfig",
|
|
232
|
-
"ReportingVisualization",
|
|
233
|
-
"ReportingVisualizationInsights",
|
|
234
217
|
"WorkbenchWorkbenchUrlCheckRequest",
|
|
235
218
|
"WorkbenchWorkbenchUrlCheckResponse",
|
|
236
219
|
"WorkbenchWorkbenchVersion",
|
|
@@ -437,26 +420,9 @@ from neurograph.v1.models.pgtype_infinity_modifier import PgtypeInfinityModifier
|
|
|
437
420
|
from neurograph.v1.models.pgtype_int8 import PgtypeInt8 as PgtypeInt8
|
|
438
421
|
from neurograph.v1.models.pgtype_text import PgtypeText as PgtypeText
|
|
439
422
|
from neurograph.v1.models.pgtype_timestamp import PgtypeTimestamp as PgtypeTimestamp
|
|
440
|
-
from neurograph.v1.models.reporting_affinities_response import ReportingAffinitiesResponse as ReportingAffinitiesResponse
|
|
441
|
-
from neurograph.v1.models.reporting_chart_data import ReportingChartData as ReportingChartData
|
|
442
|
-
from neurograph.v1.models.reporting_chart_dataset import ReportingChartDataset as ReportingChartDataset
|
|
443
|
-
from neurograph.v1.models.reporting_chart_defaults import ReportingChartDefaults as ReportingChartDefaults
|
|
444
|
-
from neurograph.v1.models.reporting_chart_options import ReportingChartOptions as ReportingChartOptions
|
|
445
|
-
from neurograph.v1.models.reporting_content_config import ReportingContentConfig as ReportingContentConfig
|
|
446
|
-
from neurograph.v1.models.reporting_customer_activity_response import ReportingCustomerActivityResponse as ReportingCustomerActivityResponse
|
|
447
423
|
from neurograph.v1.models.reporting_daily_metric import ReportingDailyMetric as ReportingDailyMetric
|
|
448
424
|
from neurograph.v1.models.reporting_daily_metrics_response import ReportingDailyMetricsResponse as ReportingDailyMetricsResponse
|
|
449
|
-
from neurograph.v1.models.reporting_data_range import ReportingDataRange as ReportingDataRange
|
|
450
|
-
from neurograph.v1.models.reporting_exploration_topic import ReportingExplorationTopic as ReportingExplorationTopic
|
|
451
|
-
from neurograph.v1.models.reporting_header_config import ReportingHeaderConfig as ReportingHeaderConfig
|
|
452
|
-
from neurograph.v1.models.reporting_meta_config import ReportingMetaConfig as ReportingMetaConfig
|
|
453
|
-
from neurograph.v1.models.reporting_persona_activity_response import ReportingPersonaActivityResponse as ReportingPersonaActivityResponse
|
|
454
|
-
from neurograph.v1.models.reporting_personas_response import ReportingPersonasResponse as ReportingPersonasResponse
|
|
455
|
-
from neurograph.v1.models.reporting_primary_analysis import ReportingPrimaryAnalysis as ReportingPrimaryAnalysis
|
|
456
425
|
from neurograph.v1.models.reporting_query import ReportingQuery as ReportingQuery
|
|
457
|
-
from neurograph.v1.models.reporting_rich_insights_config import ReportingRichInsightsConfig as ReportingRichInsightsConfig
|
|
458
|
-
from neurograph.v1.models.reporting_visualization import ReportingVisualization as ReportingVisualization
|
|
459
|
-
from neurograph.v1.models.reporting_visualization_insights import ReportingVisualizationInsights as ReportingVisualizationInsights
|
|
460
426
|
from neurograph.v1.models.workbench_workbench_url_check_request import WorkbenchWorkbenchUrlCheckRequest as WorkbenchWorkbenchUrlCheckRequest
|
|
461
427
|
from neurograph.v1.models.workbench_workbench_url_check_response import WorkbenchWorkbenchUrlCheckResponse as WorkbenchWorkbenchUrlCheckResponse
|
|
462
428
|
from neurograph.v1.models.workbench_workbench_version import WorkbenchWorkbenchVersion as WorkbenchWorkbenchVersion
|
neurograph/v1/api/admin_api.py
CHANGED
|
@@ -840,7 +840,7 @@ class AdminApi:
|
|
|
840
840
|
|
|
841
841
|
|
|
842
842
|
@validate_call
|
|
843
|
-
def
|
|
843
|
+
def api_v1_admin_users_post(
|
|
844
844
|
self,
|
|
845
845
|
request: Annotated[AdminUpsertUserRequest, Field(description="Upsert user request payload")],
|
|
846
846
|
_request_timeout: Union[
|
|
@@ -884,7 +884,7 @@ class AdminApi:
|
|
|
884
884
|
:return: Returns the result object.
|
|
885
885
|
""" # noqa: E501
|
|
886
886
|
|
|
887
|
-
_param = self.
|
|
887
|
+
_param = self._api_v1_admin_users_post_serialize(
|
|
888
888
|
request=request,
|
|
889
889
|
_request_auth=_request_auth,
|
|
890
890
|
_content_type=_content_type,
|
|
@@ -910,7 +910,7 @@ class AdminApi:
|
|
|
910
910
|
|
|
911
911
|
|
|
912
912
|
@validate_call
|
|
913
|
-
def
|
|
913
|
+
def api_v1_admin_users_post_with_http_info(
|
|
914
914
|
self,
|
|
915
915
|
request: Annotated[AdminUpsertUserRequest, Field(description="Upsert user request payload")],
|
|
916
916
|
_request_timeout: Union[
|
|
@@ -954,7 +954,7 @@ class AdminApi:
|
|
|
954
954
|
:return: Returns the result object.
|
|
955
955
|
""" # noqa: E501
|
|
956
956
|
|
|
957
|
-
_param = self.
|
|
957
|
+
_param = self._api_v1_admin_users_post_serialize(
|
|
958
958
|
request=request,
|
|
959
959
|
_request_auth=_request_auth,
|
|
960
960
|
_content_type=_content_type,
|
|
@@ -980,7 +980,7 @@ class AdminApi:
|
|
|
980
980
|
|
|
981
981
|
|
|
982
982
|
@validate_call
|
|
983
|
-
def
|
|
983
|
+
def api_v1_admin_users_post_without_preload_content(
|
|
984
984
|
self,
|
|
985
985
|
request: Annotated[AdminUpsertUserRequest, Field(description="Upsert user request payload")],
|
|
986
986
|
_request_timeout: Union[
|
|
@@ -1024,7 +1024,7 @@ class AdminApi:
|
|
|
1024
1024
|
:return: Returns the result object.
|
|
1025
1025
|
""" # noqa: E501
|
|
1026
1026
|
|
|
1027
|
-
_param = self.
|
|
1027
|
+
_param = self._api_v1_admin_users_post_serialize(
|
|
1028
1028
|
request=request,
|
|
1029
1029
|
_request_auth=_request_auth,
|
|
1030
1030
|
_content_type=_content_type,
|
|
@@ -1045,7 +1045,7 @@ class AdminApi:
|
|
|
1045
1045
|
return response_data.response
|
|
1046
1046
|
|
|
1047
1047
|
|
|
1048
|
-
def
|
|
1048
|
+
def _api_v1_admin_users_post_serialize(
|
|
1049
1049
|
self,
|
|
1050
1050
|
request,
|
|
1051
1051
|
_request_auth,
|
|
@@ -1107,7 +1107,7 @@ class AdminApi:
|
|
|
1107
1107
|
|
|
1108
1108
|
return self.api_client.param_serialize(
|
|
1109
1109
|
method='POST',
|
|
1110
|
-
resource_path='/api/v1/users',
|
|
1110
|
+
resource_path='/api/v1/admin/users/',
|
|
1111
1111
|
path_params=_path_params,
|
|
1112
1112
|
query_params=_query_params,
|
|
1113
1113
|
header_params=_header_params,
|