neurograph-core 1.202510081632__py3-none-any.whl → 1.202510092216__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 +42 -0
- neurograph/v1/api/__init__.py +1 -0
- neurograph/v1/api/reporting_api.py +1739 -0
- neurograph/v1/models/__init__.py +20 -0
- neurograph/v1/models/knowledge_enrichment_artifact_create_request.py +3 -1
- neurograph/v1/models/reporting_affinities_response.py +89 -0
- neurograph/v1/models/reporting_chart_data.py +97 -0
- neurograph/v1/models/reporting_chart_dataset.py +93 -0
- neurograph/v1/models/reporting_chart_defaults.py +91 -0
- neurograph/v1/models/reporting_chart_options.py +93 -0
- neurograph/v1/models/reporting_content_config.py +113 -0
- neurograph/v1/models/reporting_customer_activity_response.py +89 -0
- neurograph/v1/models/reporting_daily_metric.py +95 -0
- neurograph/v1/models/reporting_daily_metrics_response.py +97 -0
- neurograph/v1/models/reporting_data_range.py +89 -0
- neurograph/v1/models/reporting_exploration_topic.py +91 -0
- neurograph/v1/models/reporting_header_config.py +89 -0
- neurograph/v1/models/reporting_meta_config.py +99 -0
- neurograph/v1/models/reporting_persona_activity_response.py +89 -0
- neurograph/v1/models/reporting_personas_response.py +89 -0
- neurograph/v1/models/reporting_primary_analysis.py +99 -0
- neurograph/v1/models/reporting_query.py +91 -0
- neurograph/v1/models/reporting_rich_insights_config.py +97 -0
- neurograph/v1/models/reporting_visualization.py +103 -0
- neurograph/v1/models/reporting_visualization_insights.py +91 -0
- {neurograph_core-1.202510081632.dist-info → neurograph_core-1.202510092216.dist-info}/METADATA +1 -1
- {neurograph_core-1.202510081632.dist-info → neurograph_core-1.202510092216.dist-info}/RECORD +29 -8
- {neurograph_core-1.202510081632.dist-info → neurograph_core-1.202510092216.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202510081632.dist-info → neurograph_core-1.202510092216.dist-info}/top_level.txt +0 -0
neurograph/v1/__init__.py
CHANGED
|
@@ -29,6 +29,7 @@ __all__ = [
|
|
|
29
29
|
"OrganizationApi",
|
|
30
30
|
"OrganizationMetadataApi",
|
|
31
31
|
"PersonaApi",
|
|
32
|
+
"ReportingApi",
|
|
32
33
|
"SystemApi",
|
|
33
34
|
"UserApi",
|
|
34
35
|
"WorkbenchApi",
|
|
@@ -210,6 +211,26 @@ __all__ = [
|
|
|
210
211
|
"PgtypeInt8",
|
|
211
212
|
"PgtypeText",
|
|
212
213
|
"PgtypeTimestamp",
|
|
214
|
+
"ReportingAffinitiesResponse",
|
|
215
|
+
"ReportingChartData",
|
|
216
|
+
"ReportingChartDataset",
|
|
217
|
+
"ReportingChartDefaults",
|
|
218
|
+
"ReportingChartOptions",
|
|
219
|
+
"ReportingContentConfig",
|
|
220
|
+
"ReportingCustomerActivityResponse",
|
|
221
|
+
"ReportingDailyMetric",
|
|
222
|
+
"ReportingDailyMetricsResponse",
|
|
223
|
+
"ReportingDataRange",
|
|
224
|
+
"ReportingExplorationTopic",
|
|
225
|
+
"ReportingHeaderConfig",
|
|
226
|
+
"ReportingMetaConfig",
|
|
227
|
+
"ReportingPersonaActivityResponse",
|
|
228
|
+
"ReportingPersonasResponse",
|
|
229
|
+
"ReportingPrimaryAnalysis",
|
|
230
|
+
"ReportingQuery",
|
|
231
|
+
"ReportingRichInsightsConfig",
|
|
232
|
+
"ReportingVisualization",
|
|
233
|
+
"ReportingVisualizationInsights",
|
|
213
234
|
"WorkbenchWorkbenchUrlCheckRequest",
|
|
214
235
|
"WorkbenchWorkbenchUrlCheckResponse",
|
|
215
236
|
"WorkbenchWorkbenchVersion",
|
|
@@ -230,6 +251,7 @@ from neurograph.v1.api.lookup_api import LookupApi as LookupApi
|
|
|
230
251
|
from neurograph.v1.api.organization_api import OrganizationApi as OrganizationApi
|
|
231
252
|
from neurograph.v1.api.organization_metadata_api import OrganizationMetadataApi as OrganizationMetadataApi
|
|
232
253
|
from neurograph.v1.api.persona_api import PersonaApi as PersonaApi
|
|
254
|
+
from neurograph.v1.api.reporting_api import ReportingApi as ReportingApi
|
|
233
255
|
from neurograph.v1.api.system_api import SystemApi as SystemApi
|
|
234
256
|
from neurograph.v1.api.user_api import UserApi as UserApi
|
|
235
257
|
from neurograph.v1.api.workbench_api import WorkbenchApi as WorkbenchApi
|
|
@@ -415,6 +437,26 @@ from neurograph.v1.models.pgtype_infinity_modifier import PgtypeInfinityModifier
|
|
|
415
437
|
from neurograph.v1.models.pgtype_int8 import PgtypeInt8 as PgtypeInt8
|
|
416
438
|
from neurograph.v1.models.pgtype_text import PgtypeText as PgtypeText
|
|
417
439
|
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
|
+
from neurograph.v1.models.reporting_daily_metric import ReportingDailyMetric as ReportingDailyMetric
|
|
448
|
+
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
|
+
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
|
|
418
460
|
from neurograph.v1.models.workbench_workbench_url_check_request import WorkbenchWorkbenchUrlCheckRequest as WorkbenchWorkbenchUrlCheckRequest
|
|
419
461
|
from neurograph.v1.models.workbench_workbench_url_check_response import WorkbenchWorkbenchUrlCheckResponse as WorkbenchWorkbenchUrlCheckResponse
|
|
420
462
|
from neurograph.v1.models.workbench_workbench_version import WorkbenchWorkbenchVersion as WorkbenchWorkbenchVersion
|
neurograph/v1/api/__init__.py
CHANGED
|
@@ -12,6 +12,7 @@ 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
|
|
15
16
|
from neurograph.v1.api.system_api import SystemApi
|
|
16
17
|
from neurograph.v1.api.user_api import UserApi
|
|
17
18
|
from neurograph.v1.api.workbench_api import WorkbenchApi
|