neurograph-core 1.202512102047__py3-none-any.whl → 1.202601291526__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 +334 -2
- neurograph/v1/api/__init__.py +3 -1
- neurograph/v1/api/admin_api.py +302 -0
- neurograph/v1/api/client_api.py +269 -0
- neurograph/v1/api/lookup_api.py +248 -0
- neurograph/v1/api/organization_api.py +283 -0
- neurograph/v1/api/persona_api.py +3048 -544
- neurograph/v1/api/pixel_api.py +569 -0
- neurograph/v1/api/reporting_api.py +3848 -28
- neurograph/v1/api/reports_api.py +5237 -0
- neurograph/v1/api/signal_api.py +569 -0
- neurograph/v1/api_client.py +3 -3
- neurograph/v1/configuration.py +8 -2
- neurograph/v1/exceptions.py +6 -3
- neurograph/v1/models/__init__.py +164 -0
- neurograph/v1/models/admin_reset_password_request.py +89 -0
- neurograph/v1/models/admin_reset_password_response.py +91 -0
- neurograph/v1/models/admin_upsert_user_request.py +5 -3
- neurograph/v1/models/admin_upsert_user_response.py +4 -2
- neurograph/v1/models/client_match_criteria_row_in_db.py +4 -2
- neurograph/v1/models/client_persona.py +13 -1
- neurograph/v1/models/client_persona_assignment_stats.py +95 -0
- neurograph/v1/models/client_persona_assignment_stats_response.py +97 -0
- neurograph/v1/models/client_supplemental_prompt.py +99 -0
- neurograph/v1/models/db_persona_factor.py +99 -0
- neurograph/v1/models/db_persona_match_criterium.py +97 -0
- neurograph/v1/models/lookup_sync_snippets_response.py +89 -0
- neurograph/v1/models/organizations_gamma_block_settings.py +93 -0
- neurograph/v1/models/organizations_gamma_button_settings.py +91 -0
- neurograph/v1/models/organizations_gamma_card_settings.py +97 -0
- neurograph/v1/models/organizations_gamma_color_settings.py +101 -0
- neurograph/v1/models/organizations_gamma_design_settings.py +103 -0
- neurograph/v1/models/organizations_gamma_font_settings.py +107 -0
- neurograph/v1/models/organizations_gamma_theme_request.py +113 -0
- neurograph/v1/models/organizations_gamma_theme_response.py +95 -0
- neurograph/v1/models/organizations_gamma_theme_settings.py +105 -0
- neurograph/v1/models/personas_factor_delete_response.py +89 -0
- neurograph/v1/models/personas_factor_update_request.py +95 -0
- neurograph/v1/models/personas_factor_update_response.py +93 -0
- neurograph/v1/models/personas_get_persona_instance_response.py +3 -1
- neurograph/v1/models/personas_insight_create_request.py +6 -4
- neurograph/v1/models/personas_insight_create_response.py +4 -2
- neurograph/v1/models/personas_instance_create_request.py +4 -2
- neurograph/v1/models/personas_instance_create_response.py +3 -1
- neurograph/v1/models/personas_match_criteria_delete_response.py +89 -0
- neurograph/v1/models/personas_match_criteria_reorder_item.py +89 -0
- neurograph/v1/models/personas_match_criteria_reorder_request.py +95 -0
- neurograph/v1/models/personas_match_criteria_reorder_response.py +89 -0
- neurograph/v1/models/personas_match_criteria_row_in_db.py +4 -2
- neurograph/v1/models/personas_match_criteria_update_request.py +91 -0
- neurograph/v1/models/personas_match_criteria_update_response.py +93 -0
- neurograph/v1/models/personas_persona.py +3 -1
- neurograph/v1/models/personas_supplemental_prompt_create_request.py +89 -0
- neurograph/v1/models/personas_supplemental_prompt_delete_response.py +93 -0
- neurograph/v1/models/personas_supplemental_prompt_get_many_response.py +97 -0
- neurograph/v1/models/personas_supplemental_prompt_response.py +101 -0
- neurograph/v1/models/personas_update_demographics_request.py +95 -0
- neurograph/v1/models/personas_update_demographics_response.py +99 -0
- neurograph/v1/models/pixel_client_info.py +91 -0
- neurograph/v1/models/pixel_client_pixel_details_request.py +95 -0
- neurograph/v1/models/pixel_client_pixel_details_response.py +125 -0
- neurograph/v1/models/pixel_client_pixel_summary.py +107 -0
- neurograph/v1/models/pixel_client_pixel_totals.py +109 -0
- neurograph/v1/models/pixel_daily_client_pixel_metrics.py +111 -0
- neurograph/v1/models/pixel_daily_pixel_metrics.py +101 -0
- neurograph/v1/models/pixel_date_range.py +89 -0
- neurograph/v1/models/pixel_enrichment_coverage.py +103 -0
- neurograph/v1/models/pixel_pixel_overview_request.py +93 -0
- neurograph/v1/models/pixel_pixel_overview_response.py +123 -0
- neurograph/v1/models/pixel_pixel_overview_totals.py +99 -0
- neurograph/v1/models/reporting_activity_metrics.py +97 -0
- neurograph/v1/models/reporting_affinity_meta.py +97 -0
- neurograph/v1/models/reporting_age_breakdown_row.py +97 -0
- neurograph/v1/models/reporting_age_bucket.py +97 -0
- neurograph/v1/models/reporting_age_distribution_data.py +95 -0
- neurograph/v1/models/reporting_buyer_scenario.py +111 -0
- neurograph/v1/models/reporting_buyer_scenarios_meta.py +91 -0
- neurograph/v1/models/reporting_category_performance_data.py +99 -0
- neurograph/v1/models/reporting_category_performance_row.py +99 -0
- neurograph/v1/models/reporting_category_spend_data.py +107 -0
- neurograph/v1/models/reporting_category_spend_week.py +89 -0
- neurograph/v1/models/reporting_category_summary.py +89 -0
- neurograph/v1/models/reporting_client_activity_event.py +103 -0
- neurograph/v1/models/reporting_client_activity_query.py +91 -0
- neurograph/v1/models/reporting_client_activity_summary.py +89 -0
- neurograph/v1/models/reporting_client_breakdown.py +93 -0
- neurograph/v1/models/reporting_client_enrichment_coverage.py +97 -0
- neurograph/v1/models/reporting_combined_activity_response.py +100 -0
- neurograph/v1/models/reporting_computed_metrics.py +89 -0
- neurograph/v1/models/reporting_customer_cycle_metrics.py +99 -0
- neurograph/v1/models/reporting_customer_insights_request.py +93 -0
- neurograph/v1/models/reporting_customer_insights_response.py +125 -0
- neurograph/v1/models/reporting_cycle_summary.py +95 -0
- neurograph/v1/models/reporting_cycle_tiers.py +91 -0
- neurograph/v1/models/reporting_daily_metric.py +40 -8
- neurograph/v1/models/reporting_daily_predictions.py +89 -0
- neurograph/v1/models/reporting_daily_summary.py +89 -0
- neurograph/v1/models/reporting_daily_total.py +91 -0
- neurograph/v1/models/reporting_data_availability_query.py +87 -0
- neurograph/v1/models/reporting_data_availability_response.py +89 -0
- neurograph/v1/models/reporting_date_range.py +89 -0
- neurograph/v1/models/reporting_demographics_meta.py +105 -0
- neurograph/v1/models/reporting_enrichment_coverage_query.py +89 -0
- neurograph/v1/models/reporting_enrichment_coverage_response.py +107 -0
- neurograph/v1/models/reporting_enrichment_coverage_summary.py +95 -0
- neurograph/v1/models/reporting_gender_split_data.py +99 -0
- neurograph/v1/models/reporting_geographic_distribution_data.py +101 -0
- neurograph/v1/models/reporting_income_band.py +93 -0
- neurograph/v1/models/reporting_income_bands_data.py +95 -0
- neurograph/v1/models/reporting_intent_band_data.py +91 -0
- neurograph/v1/models/reporting_metro_area.py +97 -0
- neurograph/v1/models/reporting_model_insights_request.py +93 -0
- neurograph/v1/models/reporting_model_insights_response.py +143 -0
- neurograph/v1/models/reporting_model_job_detail.py +99 -0
- neurograph/v1/models/reporting_model_job_detail_response.py +109 -0
- neurograph/v1/models/reporting_model_job_stats.py +95 -0
- neurograph/v1/models/reporting_model_job_summary.py +105 -0
- neurograph/v1/models/reporting_model_jobs_over_time.py +91 -0
- neurograph/v1/models/reporting_model_prediction.py +95 -0
- neurograph/v1/models/reporting_model_version_stats.py +91 -0
- neurograph/v1/models/reporting_org_breakdown.py +91 -0
- neurograph/v1/models/reporting_other_markets.py +91 -0
- neurograph/v1/models/reporting_period_comparison.py +93 -0
- neurograph/v1/models/reporting_persona_buyer_scenarios_request.py +89 -0
- neurograph/v1/models/reporting_persona_buyer_scenarios_response.py +109 -0
- neurograph/v1/models/reporting_persona_demographics_request.py +89 -0
- neurograph/v1/models/reporting_persona_demographics_response.py +121 -0
- neurograph/v1/models/reporting_persona_product_affinity_request.py +91 -0
- neurograph/v1/models/reporting_persona_product_affinity_response.py +133 -0
- neurograph/v1/models/reporting_portfolio_activity_query.py +93 -0
- neurograph/v1/models/reporting_portfolio_activity_response.py +123 -0
- neurograph/v1/models/reporting_portfolio_metrics.py +108 -0
- neurograph/v1/models/reporting_prediction_detail.py +99 -0
- neurograph/v1/models/reporting_prediction_detail_response.py +97 -0
- neurograph/v1/models/reporting_price_bucket.py +95 -0
- neurograph/v1/models/reporting_price_tolerance_data.py +97 -0
- neurograph/v1/models/reporting_product_affinity_query_request.py +93 -0
- neurograph/v1/models/reporting_product_affinity_response.py +101 -0
- neurograph/v1/models/reporting_product_affinity_row.py +121 -0
- neurograph/v1/models/reporting_product_performance_data.py +97 -0
- neurograph/v1/models/reporting_product_performance_row.py +103 -0
- neurograph/v1/models/reporting_purchase_cycle_data.py +102 -0
- neurograph/v1/models/reporting_purchase_timing_data.py +97 -0
- neurograph/v1/models/reporting_purchases_response.py +111 -0
- neurograph/v1/models/reporting_sessions_response.py +111 -0
- neurograph/v1/models/reporting_summary_kpis.py +95 -0
- neurograph/v1/models/reporting_timing_bucket.py +93 -0
- neurograph/v1/models/reporting_traffic_pipeline_day.py +108 -0
- neurograph/v1/models/reporting_traffic_trend_day.py +91 -0
- neurograph/v1/models/reports_data_source_config.py +103 -0
- neurograph/v1/models/reports_date_range.py +89 -0
- neurograph/v1/models/reports_facet_item.py +89 -0
- neurograph/v1/models/reports_linked_kpi.py +95 -0
- neurograph/v1/models/reports_linked_query.py +91 -0
- neurograph/v1/models/reports_markdown_content_response.py +97 -0
- neurograph/v1/models/reports_markdown_content_update_request.py +87 -0
- neurograph/v1/models/reports_og_image_regenerate_response.py +93 -0
- neurograph/v1/models/reports_public_branding.py +95 -0
- neurograph/v1/models/reports_public_report_response.py +125 -0
- neurograph/v1/models/reports_recommendation.py +95 -0
- neurograph/v1/models/reports_report_agent_status_response.py +107 -0
- neurograph/v1/models/reports_report_artifact_create_request.py +145 -0
- neurograph/v1/models/reports_report_artifact_delete_response.py +91 -0
- neurograph/v1/models/reports_report_artifact_list_response.py +105 -0
- neurograph/v1/models/reports_report_artifact_response.py +177 -0
- neurograph/v1/models/reports_report_artifact_search_response.py +105 -0
- neurograph/v1/models/reports_report_artifact_update_request.py +141 -0
- neurograph/v1/models/reports_report_facets_response.py +124 -0
- neurograph/v1/models/reports_report_generate_request.py +123 -0
- neurograph/v1/models/reports_report_generate_response.py +101 -0
- neurograph/v1/models/reports_share_link_response.py +95 -0
- neurograph/v1/models/reports_sync_agent_request.py +87 -0
- neurograph/v1/models/reports_sync_agent_response.py +97 -0
- neurograph/v1/models/signal_client_info.py +91 -0
- neurograph/v1/models/signal_client_signal_details_request.py +95 -0
- neurograph/v1/models/signal_client_signal_details_response.py +139 -0
- neurograph/v1/models/signal_client_signal_summary.py +111 -0
- neurograph/v1/models/signal_client_signal_totals.py +97 -0
- neurograph/v1/models/signal_conversion_summary.py +103 -0
- neurograph/v1/models/signal_conversion_totals.py +99 -0
- neurograph/v1/models/signal_daily_conversion_metrics.py +103 -0
- neurograph/v1/models/signal_daily_intent_band.py +103 -0
- neurograph/v1/models/signal_daily_intent_metrics.py +109 -0
- neurograph/v1/models/signal_daily_purchase_metrics.py +105 -0
- neurograph/v1/models/signal_date_range.py +89 -0
- neurograph/v1/models/signal_intent_distribution.py +97 -0
- neurograph/v1/models/signal_intent_summary.py +103 -0
- neurograph/v1/models/signal_persona_conversion.py +97 -0
- neurograph/v1/models/signal_signal_overview_request.py +93 -0
- neurograph/v1/models/signal_signal_overview_response.py +133 -0
- neurograph/v1/models/signal_signal_overview_totals.py +103 -0
- neurograph/v1/rest.py +7 -2
- {neurograph_core-1.202512102047.dist-info → neurograph_core-1.202601291526.dist-info}/METADATA +1 -1
- {neurograph_core-1.202512102047.dist-info → neurograph_core-1.202601291526.dist-info}/RECORD +196 -30
- {neurograph_core-1.202512102047.dist-info → neurograph_core-1.202601291526.dist-info}/WHEEL +1 -1
- neurograph/v1/api/system_api.py +0 -293
- {neurograph_core-1.202512102047.dist-info → neurograph_core-1.202601291526.dist-info}/top_level.txt +0 -0
neurograph/v1/__init__.py
CHANGED
|
@@ -29,8 +29,10 @@ __all__ = [
|
|
|
29
29
|
"OrganizationApi",
|
|
30
30
|
"OrganizationMetadataApi",
|
|
31
31
|
"PersonaApi",
|
|
32
|
+
"PixelApi",
|
|
32
33
|
"ReportingApi",
|
|
33
|
-
"
|
|
34
|
+
"ReportsApi",
|
|
35
|
+
"SignalApi",
|
|
34
36
|
"UserApi",
|
|
35
37
|
"WorkbenchApi",
|
|
36
38
|
"ApiResponse",
|
|
@@ -43,6 +45,8 @@ __all__ = [
|
|
|
43
45
|
"ApiAttributeError",
|
|
44
46
|
"ApiException",
|
|
45
47
|
"AdminPermissionResponse",
|
|
48
|
+
"AdminResetPasswordRequest",
|
|
49
|
+
"AdminResetPasswordResponse",
|
|
46
50
|
"AdminSetPermissionRequest",
|
|
47
51
|
"AdminUpsertUserRequest",
|
|
48
52
|
"AdminUpsertUserResponse",
|
|
@@ -71,6 +75,8 @@ __all__ = [
|
|
|
71
75
|
"ClientOrganizationBrand",
|
|
72
76
|
"ClientOrganizationDetail",
|
|
73
77
|
"ClientPersona",
|
|
78
|
+
"ClientPersonaAssignmentStats",
|
|
79
|
+
"ClientPersonaAssignmentStatsResponse",
|
|
74
80
|
"ClientPersonaFactor",
|
|
75
81
|
"ClientPersonaInsight",
|
|
76
82
|
"ClientPersonaPersonalityTrait",
|
|
@@ -80,6 +86,7 @@ __all__ = [
|
|
|
80
86
|
"ClientQuery",
|
|
81
87
|
"ClientSlackMessageRequest",
|
|
82
88
|
"ClientSlackMessageResponse",
|
|
89
|
+
"ClientSupplementalPrompt",
|
|
83
90
|
"ClientTriggerProbeResponse",
|
|
84
91
|
"ClientURLSnapshotResponse",
|
|
85
92
|
"ClientUpsertRequest",
|
|
@@ -102,7 +109,9 @@ __all__ = [
|
|
|
102
109
|
"DbKnowledgeStore",
|
|
103
110
|
"DbMyClient",
|
|
104
111
|
"DbMyOrg",
|
|
112
|
+
"DbPersonaFactor",
|
|
105
113
|
"DbPersonaFactorCreateParams",
|
|
114
|
+
"DbPersonaMatchCriterium",
|
|
106
115
|
"DbPixelSnippet",
|
|
107
116
|
"DbUserClientRole",
|
|
108
117
|
"DbUserInDb",
|
|
@@ -164,6 +173,7 @@ __all__ = [
|
|
|
164
173
|
"LookupState",
|
|
165
174
|
"LookupStateResponse",
|
|
166
175
|
"LookupStatesResponse",
|
|
176
|
+
"LookupSyncSnippetsResponse",
|
|
167
177
|
"LookupUid",
|
|
168
178
|
"LookupUidsResponse",
|
|
169
179
|
"MeMyProfileResponse",
|
|
@@ -188,6 +198,15 @@ __all__ = [
|
|
|
188
198
|
"OrganizationsDeleteMetadataRequest",
|
|
189
199
|
"OrganizationsDeleteMetadataResponse",
|
|
190
200
|
"OrganizationsDetailResponse",
|
|
201
|
+
"OrganizationsGammaBlockSettings",
|
|
202
|
+
"OrganizationsGammaButtonSettings",
|
|
203
|
+
"OrganizationsGammaCardSettings",
|
|
204
|
+
"OrganizationsGammaColorSettings",
|
|
205
|
+
"OrganizationsGammaDesignSettings",
|
|
206
|
+
"OrganizationsGammaFontSettings",
|
|
207
|
+
"OrganizationsGammaThemeRequest",
|
|
208
|
+
"OrganizationsGammaThemeResponse",
|
|
209
|
+
"OrganizationsGammaThemeSettings",
|
|
191
210
|
"OrganizationsGenerateTokensRequest",
|
|
192
211
|
"OrganizationsGenerateTokensResponse",
|
|
193
212
|
"OrganizationsGenerationMetadata",
|
|
@@ -219,7 +238,10 @@ __all__ = [
|
|
|
219
238
|
"OrganizationsWorkbenchConfig",
|
|
220
239
|
"PersonasFactorCreateRequest",
|
|
221
240
|
"PersonasFactorCreateResponse",
|
|
241
|
+
"PersonasFactorDeleteResponse",
|
|
222
242
|
"PersonasFactorRow",
|
|
243
|
+
"PersonasFactorUpdateRequest",
|
|
244
|
+
"PersonasFactorUpdateResponse",
|
|
223
245
|
"PersonasGetPersonaInstanceResponse",
|
|
224
246
|
"PersonasInsightCreateRequest",
|
|
225
247
|
"PersonasInsightCreateResponse",
|
|
@@ -233,10 +255,16 @@ __all__ = [
|
|
|
233
255
|
"PersonasKpiCreateResponse",
|
|
234
256
|
"PersonasKpiReqRow",
|
|
235
257
|
"PersonasKpiRowInDb",
|
|
258
|
+
"PersonasMatchCriteriaDeleteResponse",
|
|
259
|
+
"PersonasMatchCriteriaReorderItem",
|
|
260
|
+
"PersonasMatchCriteriaReorderRequest",
|
|
261
|
+
"PersonasMatchCriteriaReorderResponse",
|
|
236
262
|
"PersonasMatchCriteriaRequest",
|
|
237
263
|
"PersonasMatchCriteriaResponse",
|
|
238
264
|
"PersonasMatchCriteriaRowIn",
|
|
239
265
|
"PersonasMatchCriteriaRowInDb",
|
|
266
|
+
"PersonasMatchCriteriaUpdateRequest",
|
|
267
|
+
"PersonasMatchCriteriaUpdateResponse",
|
|
240
268
|
"PersonasPersona",
|
|
241
269
|
"PersonasPersonaFactor",
|
|
242
270
|
"PersonasPersonaInsight",
|
|
@@ -249,6 +277,12 @@ __all__ = [
|
|
|
249
277
|
"PersonasSeedGetManyResponse",
|
|
250
278
|
"PersonasSeedUpsertRequest",
|
|
251
279
|
"PersonasSeedsDeleteResponse",
|
|
280
|
+
"PersonasSupplementalPromptCreateRequest",
|
|
281
|
+
"PersonasSupplementalPromptDeleteResponse",
|
|
282
|
+
"PersonasSupplementalPromptGetManyResponse",
|
|
283
|
+
"PersonasSupplementalPromptResponse",
|
|
284
|
+
"PersonasUpdateDemographicsRequest",
|
|
285
|
+
"PersonasUpdateDemographicsResponse",
|
|
252
286
|
"PgtypeBool",
|
|
253
287
|
"PgtypeInfinityModifier",
|
|
254
288
|
"PgtypeInt4",
|
|
@@ -256,9 +290,141 @@ __all__ = [
|
|
|
256
290
|
"PgtypeText",
|
|
257
291
|
"PgtypeTimestamp",
|
|
258
292
|
"PgtypeTimestamptz",
|
|
293
|
+
"PixelClientInfo",
|
|
294
|
+
"PixelClientPixelDetailsRequest",
|
|
295
|
+
"PixelClientPixelDetailsResponse",
|
|
296
|
+
"PixelClientPixelSummary",
|
|
297
|
+
"PixelClientPixelTotals",
|
|
298
|
+
"PixelDailyClientPixelMetrics",
|
|
299
|
+
"PixelDailyPixelMetrics",
|
|
300
|
+
"PixelDateRange",
|
|
301
|
+
"PixelEnrichmentCoverage",
|
|
302
|
+
"PixelPixelOverviewRequest",
|
|
303
|
+
"PixelPixelOverviewResponse",
|
|
304
|
+
"PixelPixelOverviewTotals",
|
|
305
|
+
"ReportingActivityMetrics",
|
|
306
|
+
"ReportingAffinityMeta",
|
|
307
|
+
"ReportingAgeBreakdownRow",
|
|
308
|
+
"ReportingAgeBucket",
|
|
309
|
+
"ReportingAgeDistributionData",
|
|
310
|
+
"ReportingBuyerScenario",
|
|
311
|
+
"ReportingBuyerScenariosMeta",
|
|
312
|
+
"ReportingCategoryPerformanceData",
|
|
313
|
+
"ReportingCategoryPerformanceRow",
|
|
314
|
+
"ReportingCategorySpendData",
|
|
315
|
+
"ReportingCategorySpendWeek",
|
|
316
|
+
"ReportingCategorySummary",
|
|
317
|
+
"ReportingClientActivityEvent",
|
|
318
|
+
"ReportingClientActivityQuery",
|
|
319
|
+
"ReportingClientActivitySummary",
|
|
320
|
+
"ReportingClientBreakdown",
|
|
321
|
+
"ReportingClientEnrichmentCoverage",
|
|
322
|
+
"ReportingCombinedActivityResponse",
|
|
323
|
+
"ReportingComputedMetrics",
|
|
324
|
+
"ReportingCustomerCycleMetrics",
|
|
325
|
+
"ReportingCustomerInsightsRequest",
|
|
326
|
+
"ReportingCustomerInsightsResponse",
|
|
327
|
+
"ReportingCycleSummary",
|
|
328
|
+
"ReportingCycleTiers",
|
|
259
329
|
"ReportingDailyMetric",
|
|
260
330
|
"ReportingDailyMetricsResponse",
|
|
331
|
+
"ReportingDailyPredictions",
|
|
332
|
+
"ReportingDailySummary",
|
|
333
|
+
"ReportingDailyTotal",
|
|
334
|
+
"ReportingDataAvailabilityQuery",
|
|
335
|
+
"ReportingDataAvailabilityResponse",
|
|
336
|
+
"ReportingDateRange",
|
|
337
|
+
"ReportingDemographicsMeta",
|
|
338
|
+
"ReportingEnrichmentCoverageQuery",
|
|
339
|
+
"ReportingEnrichmentCoverageResponse",
|
|
340
|
+
"ReportingEnrichmentCoverageSummary",
|
|
341
|
+
"ReportingGenderSplitData",
|
|
342
|
+
"ReportingGeographicDistributionData",
|
|
343
|
+
"ReportingIncomeBand",
|
|
344
|
+
"ReportingIncomeBandsData",
|
|
345
|
+
"ReportingIntentBandData",
|
|
346
|
+
"ReportingMetroArea",
|
|
347
|
+
"ReportingModelInsightsRequest",
|
|
348
|
+
"ReportingModelInsightsResponse",
|
|
349
|
+
"ReportingModelJobDetail",
|
|
350
|
+
"ReportingModelJobDetailResponse",
|
|
351
|
+
"ReportingModelJobStats",
|
|
352
|
+
"ReportingModelJobSummary",
|
|
353
|
+
"ReportingModelJobsOverTime",
|
|
354
|
+
"ReportingModelPrediction",
|
|
355
|
+
"ReportingModelVersionStats",
|
|
356
|
+
"ReportingOrgBreakdown",
|
|
357
|
+
"ReportingOtherMarkets",
|
|
358
|
+
"ReportingPeriodComparison",
|
|
359
|
+
"ReportingPersonaBuyerScenariosRequest",
|
|
360
|
+
"ReportingPersonaBuyerScenariosResponse",
|
|
361
|
+
"ReportingPersonaDemographicsRequest",
|
|
362
|
+
"ReportingPersonaDemographicsResponse",
|
|
363
|
+
"ReportingPersonaProductAffinityRequest",
|
|
364
|
+
"ReportingPersonaProductAffinityResponse",
|
|
365
|
+
"ReportingPortfolioActivityQuery",
|
|
366
|
+
"ReportingPortfolioActivityResponse",
|
|
367
|
+
"ReportingPortfolioMetrics",
|
|
368
|
+
"ReportingPredictionDetail",
|
|
369
|
+
"ReportingPredictionDetailResponse",
|
|
370
|
+
"ReportingPriceBucket",
|
|
371
|
+
"ReportingPriceToleranceData",
|
|
372
|
+
"ReportingProductAffinityQueryRequest",
|
|
373
|
+
"ReportingProductAffinityResponse",
|
|
374
|
+
"ReportingProductAffinityRow",
|
|
375
|
+
"ReportingProductPerformanceData",
|
|
376
|
+
"ReportingProductPerformanceRow",
|
|
377
|
+
"ReportingPurchaseCycleData",
|
|
378
|
+
"ReportingPurchaseTimingData",
|
|
379
|
+
"ReportingPurchasesResponse",
|
|
261
380
|
"ReportingQuery",
|
|
381
|
+
"ReportingSessionsResponse",
|
|
382
|
+
"ReportingSummaryKPIs",
|
|
383
|
+
"ReportingTimingBucket",
|
|
384
|
+
"ReportingTrafficPipelineDay",
|
|
385
|
+
"ReportingTrafficTrendDay",
|
|
386
|
+
"ReportsDataSourceConfig",
|
|
387
|
+
"ReportsDateRange",
|
|
388
|
+
"ReportsFacetItem",
|
|
389
|
+
"ReportsLinkedKPI",
|
|
390
|
+
"ReportsLinkedQuery",
|
|
391
|
+
"ReportsMarkdownContentResponse",
|
|
392
|
+
"ReportsMarkdownContentUpdateRequest",
|
|
393
|
+
"ReportsOGImageRegenerateResponse",
|
|
394
|
+
"ReportsPublicBranding",
|
|
395
|
+
"ReportsPublicReportResponse",
|
|
396
|
+
"ReportsRecommendation",
|
|
397
|
+
"ReportsReportAgentStatusResponse",
|
|
398
|
+
"ReportsReportArtifactCreateRequest",
|
|
399
|
+
"ReportsReportArtifactDeleteResponse",
|
|
400
|
+
"ReportsReportArtifactListResponse",
|
|
401
|
+
"ReportsReportArtifactResponse",
|
|
402
|
+
"ReportsReportArtifactSearchResponse",
|
|
403
|
+
"ReportsReportArtifactUpdateRequest",
|
|
404
|
+
"ReportsReportFacetsResponse",
|
|
405
|
+
"ReportsReportGenerateRequest",
|
|
406
|
+
"ReportsReportGenerateResponse",
|
|
407
|
+
"ReportsShareLinkResponse",
|
|
408
|
+
"ReportsSyncAgentRequest",
|
|
409
|
+
"ReportsSyncAgentResponse",
|
|
410
|
+
"SignalClientInfo",
|
|
411
|
+
"SignalClientSignalDetailsRequest",
|
|
412
|
+
"SignalClientSignalDetailsResponse",
|
|
413
|
+
"SignalClientSignalSummary",
|
|
414
|
+
"SignalClientSignalTotals",
|
|
415
|
+
"SignalConversionSummary",
|
|
416
|
+
"SignalConversionTotals",
|
|
417
|
+
"SignalDailyConversionMetrics",
|
|
418
|
+
"SignalDailyIntentBand",
|
|
419
|
+
"SignalDailyIntentMetrics",
|
|
420
|
+
"SignalDailyPurchaseMetrics",
|
|
421
|
+
"SignalDateRange",
|
|
422
|
+
"SignalIntentDistribution",
|
|
423
|
+
"SignalIntentSummary",
|
|
424
|
+
"SignalPersonaConversion",
|
|
425
|
+
"SignalSignalOverviewRequest",
|
|
426
|
+
"SignalSignalOverviewResponse",
|
|
427
|
+
"SignalSignalOverviewTotals",
|
|
262
428
|
"UtilsColorPairResult",
|
|
263
429
|
"UtilsValidationError",
|
|
264
430
|
"UtilsValidationErrors",
|
|
@@ -282,8 +448,10 @@ from neurograph.v1.api.lookup_api import LookupApi as LookupApi
|
|
|
282
448
|
from neurograph.v1.api.organization_api import OrganizationApi as OrganizationApi
|
|
283
449
|
from neurograph.v1.api.organization_metadata_api import OrganizationMetadataApi as OrganizationMetadataApi
|
|
284
450
|
from neurograph.v1.api.persona_api import PersonaApi as PersonaApi
|
|
451
|
+
from neurograph.v1.api.pixel_api import PixelApi as PixelApi
|
|
285
452
|
from neurograph.v1.api.reporting_api import ReportingApi as ReportingApi
|
|
286
|
-
from neurograph.v1.api.
|
|
453
|
+
from neurograph.v1.api.reports_api import ReportsApi as ReportsApi
|
|
454
|
+
from neurograph.v1.api.signal_api import SignalApi as SignalApi
|
|
287
455
|
from neurograph.v1.api.user_api import UserApi as UserApi
|
|
288
456
|
from neurograph.v1.api.workbench_api import WorkbenchApi as WorkbenchApi
|
|
289
457
|
|
|
@@ -300,6 +468,8 @@ from neurograph.v1.exceptions import ApiException as ApiException
|
|
|
300
468
|
|
|
301
469
|
# import models into sdk package
|
|
302
470
|
from neurograph.v1.models.admin_permission_response import AdminPermissionResponse as AdminPermissionResponse
|
|
471
|
+
from neurograph.v1.models.admin_reset_password_request import AdminResetPasswordRequest as AdminResetPasswordRequest
|
|
472
|
+
from neurograph.v1.models.admin_reset_password_response import AdminResetPasswordResponse as AdminResetPasswordResponse
|
|
303
473
|
from neurograph.v1.models.admin_set_permission_request import AdminSetPermissionRequest as AdminSetPermissionRequest
|
|
304
474
|
from neurograph.v1.models.admin_upsert_user_request import AdminUpsertUserRequest as AdminUpsertUserRequest
|
|
305
475
|
from neurograph.v1.models.admin_upsert_user_response import AdminUpsertUserResponse as AdminUpsertUserResponse
|
|
@@ -328,6 +498,8 @@ from neurograph.v1.models.client_metadata_response import ClientMetadataResponse
|
|
|
328
498
|
from neurograph.v1.models.client_organization_brand import ClientOrganizationBrand as ClientOrganizationBrand
|
|
329
499
|
from neurograph.v1.models.client_organization_detail import ClientOrganizationDetail as ClientOrganizationDetail
|
|
330
500
|
from neurograph.v1.models.client_persona import ClientPersona as ClientPersona
|
|
501
|
+
from neurograph.v1.models.client_persona_assignment_stats import ClientPersonaAssignmentStats as ClientPersonaAssignmentStats
|
|
502
|
+
from neurograph.v1.models.client_persona_assignment_stats_response import ClientPersonaAssignmentStatsResponse as ClientPersonaAssignmentStatsResponse
|
|
331
503
|
from neurograph.v1.models.client_persona_factor import ClientPersonaFactor as ClientPersonaFactor
|
|
332
504
|
from neurograph.v1.models.client_persona_insight import ClientPersonaInsight as ClientPersonaInsight
|
|
333
505
|
from neurograph.v1.models.client_persona_personality_trait import ClientPersonaPersonalityTrait as ClientPersonaPersonalityTrait
|
|
@@ -337,6 +509,7 @@ from neurograph.v1.models.client_probe_todo_row import ClientProbeTodoRow as Cli
|
|
|
337
509
|
from neurograph.v1.models.client_query import ClientQuery as ClientQuery
|
|
338
510
|
from neurograph.v1.models.client_slack_message_request import ClientSlackMessageRequest as ClientSlackMessageRequest
|
|
339
511
|
from neurograph.v1.models.client_slack_message_response import ClientSlackMessageResponse as ClientSlackMessageResponse
|
|
512
|
+
from neurograph.v1.models.client_supplemental_prompt import ClientSupplementalPrompt as ClientSupplementalPrompt
|
|
340
513
|
from neurograph.v1.models.client_trigger_probe_response import ClientTriggerProbeResponse as ClientTriggerProbeResponse
|
|
341
514
|
from neurograph.v1.models.client_url_snapshot_response import ClientURLSnapshotResponse as ClientURLSnapshotResponse
|
|
342
515
|
from neurograph.v1.models.client_upsert_request import ClientUpsertRequest as ClientUpsertRequest
|
|
@@ -359,7 +532,9 @@ from neurograph.v1.models.db_knowledge_product import DbKnowledgeProduct as DbKn
|
|
|
359
532
|
from neurograph.v1.models.db_knowledge_store import DbKnowledgeStore as DbKnowledgeStore
|
|
360
533
|
from neurograph.v1.models.db_my_client import DbMyClient as DbMyClient
|
|
361
534
|
from neurograph.v1.models.db_my_org import DbMyOrg as DbMyOrg
|
|
535
|
+
from neurograph.v1.models.db_persona_factor import DbPersonaFactor as DbPersonaFactor
|
|
362
536
|
from neurograph.v1.models.db_persona_factor_create_params import DbPersonaFactorCreateParams as DbPersonaFactorCreateParams
|
|
537
|
+
from neurograph.v1.models.db_persona_match_criterium import DbPersonaMatchCriterium as DbPersonaMatchCriterium
|
|
363
538
|
from neurograph.v1.models.db_pixel_snippet import DbPixelSnippet as DbPixelSnippet
|
|
364
539
|
from neurograph.v1.models.db_user_client_role import DbUserClientRole as DbUserClientRole
|
|
365
540
|
from neurograph.v1.models.db_user_in_db import DbUserInDb as DbUserInDb
|
|
@@ -421,6 +596,7 @@ from neurograph.v1.models.lookup_roles_response import LookupRolesResponse as Lo
|
|
|
421
596
|
from neurograph.v1.models.lookup_state import LookupState as LookupState
|
|
422
597
|
from neurograph.v1.models.lookup_state_response import LookupStateResponse as LookupStateResponse
|
|
423
598
|
from neurograph.v1.models.lookup_states_response import LookupStatesResponse as LookupStatesResponse
|
|
599
|
+
from neurograph.v1.models.lookup_sync_snippets_response import LookupSyncSnippetsResponse as LookupSyncSnippetsResponse
|
|
424
600
|
from neurograph.v1.models.lookup_uid import LookupUid as LookupUid
|
|
425
601
|
from neurograph.v1.models.lookup_uids_response import LookupUidsResponse as LookupUidsResponse
|
|
426
602
|
from neurograph.v1.models.me_my_profile_response import MeMyProfileResponse as MeMyProfileResponse
|
|
@@ -445,6 +621,15 @@ from neurograph.v1.models.organizations_create_request import OrganizationsCreat
|
|
|
445
621
|
from neurograph.v1.models.organizations_delete_metadata_request import OrganizationsDeleteMetadataRequest as OrganizationsDeleteMetadataRequest
|
|
446
622
|
from neurograph.v1.models.organizations_delete_metadata_response import OrganizationsDeleteMetadataResponse as OrganizationsDeleteMetadataResponse
|
|
447
623
|
from neurograph.v1.models.organizations_detail_response import OrganizationsDetailResponse as OrganizationsDetailResponse
|
|
624
|
+
from neurograph.v1.models.organizations_gamma_block_settings import OrganizationsGammaBlockSettings as OrganizationsGammaBlockSettings
|
|
625
|
+
from neurograph.v1.models.organizations_gamma_button_settings import OrganizationsGammaButtonSettings as OrganizationsGammaButtonSettings
|
|
626
|
+
from neurograph.v1.models.organizations_gamma_card_settings import OrganizationsGammaCardSettings as OrganizationsGammaCardSettings
|
|
627
|
+
from neurograph.v1.models.organizations_gamma_color_settings import OrganizationsGammaColorSettings as OrganizationsGammaColorSettings
|
|
628
|
+
from neurograph.v1.models.organizations_gamma_design_settings import OrganizationsGammaDesignSettings as OrganizationsGammaDesignSettings
|
|
629
|
+
from neurograph.v1.models.organizations_gamma_font_settings import OrganizationsGammaFontSettings as OrganizationsGammaFontSettings
|
|
630
|
+
from neurograph.v1.models.organizations_gamma_theme_request import OrganizationsGammaThemeRequest as OrganizationsGammaThemeRequest
|
|
631
|
+
from neurograph.v1.models.organizations_gamma_theme_response import OrganizationsGammaThemeResponse as OrganizationsGammaThemeResponse
|
|
632
|
+
from neurograph.v1.models.organizations_gamma_theme_settings import OrganizationsGammaThemeSettings as OrganizationsGammaThemeSettings
|
|
448
633
|
from neurograph.v1.models.organizations_generate_tokens_request import OrganizationsGenerateTokensRequest as OrganizationsGenerateTokensRequest
|
|
449
634
|
from neurograph.v1.models.organizations_generate_tokens_response import OrganizationsGenerateTokensResponse as OrganizationsGenerateTokensResponse
|
|
450
635
|
from neurograph.v1.models.organizations_generation_metadata import OrganizationsGenerationMetadata as OrganizationsGenerationMetadata
|
|
@@ -476,7 +661,10 @@ from neurograph.v1.models.organizations_validate_branding_response import Organi
|
|
|
476
661
|
from neurograph.v1.models.organizations_workbench_config import OrganizationsWorkbenchConfig as OrganizationsWorkbenchConfig
|
|
477
662
|
from neurograph.v1.models.personas_factor_create_request import PersonasFactorCreateRequest as PersonasFactorCreateRequest
|
|
478
663
|
from neurograph.v1.models.personas_factor_create_response import PersonasFactorCreateResponse as PersonasFactorCreateResponse
|
|
664
|
+
from neurograph.v1.models.personas_factor_delete_response import PersonasFactorDeleteResponse as PersonasFactorDeleteResponse
|
|
479
665
|
from neurograph.v1.models.personas_factor_row import PersonasFactorRow as PersonasFactorRow
|
|
666
|
+
from neurograph.v1.models.personas_factor_update_request import PersonasFactorUpdateRequest as PersonasFactorUpdateRequest
|
|
667
|
+
from neurograph.v1.models.personas_factor_update_response import PersonasFactorUpdateResponse as PersonasFactorUpdateResponse
|
|
480
668
|
from neurograph.v1.models.personas_get_persona_instance_response import PersonasGetPersonaInstanceResponse as PersonasGetPersonaInstanceResponse
|
|
481
669
|
from neurograph.v1.models.personas_insight_create_request import PersonasInsightCreateRequest as PersonasInsightCreateRequest
|
|
482
670
|
from neurograph.v1.models.personas_insight_create_response import PersonasInsightCreateResponse as PersonasInsightCreateResponse
|
|
@@ -490,10 +678,16 @@ from neurograph.v1.models.personas_kpi_create_request import PersonasKpiCreateRe
|
|
|
490
678
|
from neurograph.v1.models.personas_kpi_create_response import PersonasKpiCreateResponse as PersonasKpiCreateResponse
|
|
491
679
|
from neurograph.v1.models.personas_kpi_req_row import PersonasKpiReqRow as PersonasKpiReqRow
|
|
492
680
|
from neurograph.v1.models.personas_kpi_row_in_db import PersonasKpiRowInDb as PersonasKpiRowInDb
|
|
681
|
+
from neurograph.v1.models.personas_match_criteria_delete_response import PersonasMatchCriteriaDeleteResponse as PersonasMatchCriteriaDeleteResponse
|
|
682
|
+
from neurograph.v1.models.personas_match_criteria_reorder_item import PersonasMatchCriteriaReorderItem as PersonasMatchCriteriaReorderItem
|
|
683
|
+
from neurograph.v1.models.personas_match_criteria_reorder_request import PersonasMatchCriteriaReorderRequest as PersonasMatchCriteriaReorderRequest
|
|
684
|
+
from neurograph.v1.models.personas_match_criteria_reorder_response import PersonasMatchCriteriaReorderResponse as PersonasMatchCriteriaReorderResponse
|
|
493
685
|
from neurograph.v1.models.personas_match_criteria_request import PersonasMatchCriteriaRequest as PersonasMatchCriteriaRequest
|
|
494
686
|
from neurograph.v1.models.personas_match_criteria_response import PersonasMatchCriteriaResponse as PersonasMatchCriteriaResponse
|
|
495
687
|
from neurograph.v1.models.personas_match_criteria_row_in import PersonasMatchCriteriaRowIn as PersonasMatchCriteriaRowIn
|
|
496
688
|
from neurograph.v1.models.personas_match_criteria_row_in_db import PersonasMatchCriteriaRowInDb as PersonasMatchCriteriaRowInDb
|
|
689
|
+
from neurograph.v1.models.personas_match_criteria_update_request import PersonasMatchCriteriaUpdateRequest as PersonasMatchCriteriaUpdateRequest
|
|
690
|
+
from neurograph.v1.models.personas_match_criteria_update_response import PersonasMatchCriteriaUpdateResponse as PersonasMatchCriteriaUpdateResponse
|
|
497
691
|
from neurograph.v1.models.personas_persona import PersonasPersona as PersonasPersona
|
|
498
692
|
from neurograph.v1.models.personas_persona_factor import PersonasPersonaFactor as PersonasPersonaFactor
|
|
499
693
|
from neurograph.v1.models.personas_persona_insight import PersonasPersonaInsight as PersonasPersonaInsight
|
|
@@ -506,6 +700,12 @@ from neurograph.v1.models.personas_seed import PersonasSeed as PersonasSeed
|
|
|
506
700
|
from neurograph.v1.models.personas_seed_get_many_response import PersonasSeedGetManyResponse as PersonasSeedGetManyResponse
|
|
507
701
|
from neurograph.v1.models.personas_seed_upsert_request import PersonasSeedUpsertRequest as PersonasSeedUpsertRequest
|
|
508
702
|
from neurograph.v1.models.personas_seeds_delete_response import PersonasSeedsDeleteResponse as PersonasSeedsDeleteResponse
|
|
703
|
+
from neurograph.v1.models.personas_supplemental_prompt_create_request import PersonasSupplementalPromptCreateRequest as PersonasSupplementalPromptCreateRequest
|
|
704
|
+
from neurograph.v1.models.personas_supplemental_prompt_delete_response import PersonasSupplementalPromptDeleteResponse as PersonasSupplementalPromptDeleteResponse
|
|
705
|
+
from neurograph.v1.models.personas_supplemental_prompt_get_many_response import PersonasSupplementalPromptGetManyResponse as PersonasSupplementalPromptGetManyResponse
|
|
706
|
+
from neurograph.v1.models.personas_supplemental_prompt_response import PersonasSupplementalPromptResponse as PersonasSupplementalPromptResponse
|
|
707
|
+
from neurograph.v1.models.personas_update_demographics_request import PersonasUpdateDemographicsRequest as PersonasUpdateDemographicsRequest
|
|
708
|
+
from neurograph.v1.models.personas_update_demographics_response import PersonasUpdateDemographicsResponse as PersonasUpdateDemographicsResponse
|
|
509
709
|
from neurograph.v1.models.pgtype_bool import PgtypeBool as PgtypeBool
|
|
510
710
|
from neurograph.v1.models.pgtype_infinity_modifier import PgtypeInfinityModifier as PgtypeInfinityModifier
|
|
511
711
|
from neurograph.v1.models.pgtype_int4 import PgtypeInt4 as PgtypeInt4
|
|
@@ -513,9 +713,141 @@ from neurograph.v1.models.pgtype_int8 import PgtypeInt8 as PgtypeInt8
|
|
|
513
713
|
from neurograph.v1.models.pgtype_text import PgtypeText as PgtypeText
|
|
514
714
|
from neurograph.v1.models.pgtype_timestamp import PgtypeTimestamp as PgtypeTimestamp
|
|
515
715
|
from neurograph.v1.models.pgtype_timestamptz import PgtypeTimestamptz as PgtypeTimestamptz
|
|
716
|
+
from neurograph.v1.models.pixel_client_info import PixelClientInfo as PixelClientInfo
|
|
717
|
+
from neurograph.v1.models.pixel_client_pixel_details_request import PixelClientPixelDetailsRequest as PixelClientPixelDetailsRequest
|
|
718
|
+
from neurograph.v1.models.pixel_client_pixel_details_response import PixelClientPixelDetailsResponse as PixelClientPixelDetailsResponse
|
|
719
|
+
from neurograph.v1.models.pixel_client_pixel_summary import PixelClientPixelSummary as PixelClientPixelSummary
|
|
720
|
+
from neurograph.v1.models.pixel_client_pixel_totals import PixelClientPixelTotals as PixelClientPixelTotals
|
|
721
|
+
from neurograph.v1.models.pixel_daily_client_pixel_metrics import PixelDailyClientPixelMetrics as PixelDailyClientPixelMetrics
|
|
722
|
+
from neurograph.v1.models.pixel_daily_pixel_metrics import PixelDailyPixelMetrics as PixelDailyPixelMetrics
|
|
723
|
+
from neurograph.v1.models.pixel_date_range import PixelDateRange as PixelDateRange
|
|
724
|
+
from neurograph.v1.models.pixel_enrichment_coverage import PixelEnrichmentCoverage as PixelEnrichmentCoverage
|
|
725
|
+
from neurograph.v1.models.pixel_pixel_overview_request import PixelPixelOverviewRequest as PixelPixelOverviewRequest
|
|
726
|
+
from neurograph.v1.models.pixel_pixel_overview_response import PixelPixelOverviewResponse as PixelPixelOverviewResponse
|
|
727
|
+
from neurograph.v1.models.pixel_pixel_overview_totals import PixelPixelOverviewTotals as PixelPixelOverviewTotals
|
|
728
|
+
from neurograph.v1.models.reporting_activity_metrics import ReportingActivityMetrics as ReportingActivityMetrics
|
|
729
|
+
from neurograph.v1.models.reporting_affinity_meta import ReportingAffinityMeta as ReportingAffinityMeta
|
|
730
|
+
from neurograph.v1.models.reporting_age_breakdown_row import ReportingAgeBreakdownRow as ReportingAgeBreakdownRow
|
|
731
|
+
from neurograph.v1.models.reporting_age_bucket import ReportingAgeBucket as ReportingAgeBucket
|
|
732
|
+
from neurograph.v1.models.reporting_age_distribution_data import ReportingAgeDistributionData as ReportingAgeDistributionData
|
|
733
|
+
from neurograph.v1.models.reporting_buyer_scenario import ReportingBuyerScenario as ReportingBuyerScenario
|
|
734
|
+
from neurograph.v1.models.reporting_buyer_scenarios_meta import ReportingBuyerScenariosMeta as ReportingBuyerScenariosMeta
|
|
735
|
+
from neurograph.v1.models.reporting_category_performance_data import ReportingCategoryPerformanceData as ReportingCategoryPerformanceData
|
|
736
|
+
from neurograph.v1.models.reporting_category_performance_row import ReportingCategoryPerformanceRow as ReportingCategoryPerformanceRow
|
|
737
|
+
from neurograph.v1.models.reporting_category_spend_data import ReportingCategorySpendData as ReportingCategorySpendData
|
|
738
|
+
from neurograph.v1.models.reporting_category_spend_week import ReportingCategorySpendWeek as ReportingCategorySpendWeek
|
|
739
|
+
from neurograph.v1.models.reporting_category_summary import ReportingCategorySummary as ReportingCategorySummary
|
|
740
|
+
from neurograph.v1.models.reporting_client_activity_event import ReportingClientActivityEvent as ReportingClientActivityEvent
|
|
741
|
+
from neurograph.v1.models.reporting_client_activity_query import ReportingClientActivityQuery as ReportingClientActivityQuery
|
|
742
|
+
from neurograph.v1.models.reporting_client_activity_summary import ReportingClientActivitySummary as ReportingClientActivitySummary
|
|
743
|
+
from neurograph.v1.models.reporting_client_breakdown import ReportingClientBreakdown as ReportingClientBreakdown
|
|
744
|
+
from neurograph.v1.models.reporting_client_enrichment_coverage import ReportingClientEnrichmentCoverage as ReportingClientEnrichmentCoverage
|
|
745
|
+
from neurograph.v1.models.reporting_combined_activity_response import ReportingCombinedActivityResponse as ReportingCombinedActivityResponse
|
|
746
|
+
from neurograph.v1.models.reporting_computed_metrics import ReportingComputedMetrics as ReportingComputedMetrics
|
|
747
|
+
from neurograph.v1.models.reporting_customer_cycle_metrics import ReportingCustomerCycleMetrics as ReportingCustomerCycleMetrics
|
|
748
|
+
from neurograph.v1.models.reporting_customer_insights_request import ReportingCustomerInsightsRequest as ReportingCustomerInsightsRequest
|
|
749
|
+
from neurograph.v1.models.reporting_customer_insights_response import ReportingCustomerInsightsResponse as ReportingCustomerInsightsResponse
|
|
750
|
+
from neurograph.v1.models.reporting_cycle_summary import ReportingCycleSummary as ReportingCycleSummary
|
|
751
|
+
from neurograph.v1.models.reporting_cycle_tiers import ReportingCycleTiers as ReportingCycleTiers
|
|
516
752
|
from neurograph.v1.models.reporting_daily_metric import ReportingDailyMetric as ReportingDailyMetric
|
|
517
753
|
from neurograph.v1.models.reporting_daily_metrics_response import ReportingDailyMetricsResponse as ReportingDailyMetricsResponse
|
|
754
|
+
from neurograph.v1.models.reporting_daily_predictions import ReportingDailyPredictions as ReportingDailyPredictions
|
|
755
|
+
from neurograph.v1.models.reporting_daily_summary import ReportingDailySummary as ReportingDailySummary
|
|
756
|
+
from neurograph.v1.models.reporting_daily_total import ReportingDailyTotal as ReportingDailyTotal
|
|
757
|
+
from neurograph.v1.models.reporting_data_availability_query import ReportingDataAvailabilityQuery as ReportingDataAvailabilityQuery
|
|
758
|
+
from neurograph.v1.models.reporting_data_availability_response import ReportingDataAvailabilityResponse as ReportingDataAvailabilityResponse
|
|
759
|
+
from neurograph.v1.models.reporting_date_range import ReportingDateRange as ReportingDateRange
|
|
760
|
+
from neurograph.v1.models.reporting_demographics_meta import ReportingDemographicsMeta as ReportingDemographicsMeta
|
|
761
|
+
from neurograph.v1.models.reporting_enrichment_coverage_query import ReportingEnrichmentCoverageQuery as ReportingEnrichmentCoverageQuery
|
|
762
|
+
from neurograph.v1.models.reporting_enrichment_coverage_response import ReportingEnrichmentCoverageResponse as ReportingEnrichmentCoverageResponse
|
|
763
|
+
from neurograph.v1.models.reporting_enrichment_coverage_summary import ReportingEnrichmentCoverageSummary as ReportingEnrichmentCoverageSummary
|
|
764
|
+
from neurograph.v1.models.reporting_gender_split_data import ReportingGenderSplitData as ReportingGenderSplitData
|
|
765
|
+
from neurograph.v1.models.reporting_geographic_distribution_data import ReportingGeographicDistributionData as ReportingGeographicDistributionData
|
|
766
|
+
from neurograph.v1.models.reporting_income_band import ReportingIncomeBand as ReportingIncomeBand
|
|
767
|
+
from neurograph.v1.models.reporting_income_bands_data import ReportingIncomeBandsData as ReportingIncomeBandsData
|
|
768
|
+
from neurograph.v1.models.reporting_intent_band_data import ReportingIntentBandData as ReportingIntentBandData
|
|
769
|
+
from neurograph.v1.models.reporting_metro_area import ReportingMetroArea as ReportingMetroArea
|
|
770
|
+
from neurograph.v1.models.reporting_model_insights_request import ReportingModelInsightsRequest as ReportingModelInsightsRequest
|
|
771
|
+
from neurograph.v1.models.reporting_model_insights_response import ReportingModelInsightsResponse as ReportingModelInsightsResponse
|
|
772
|
+
from neurograph.v1.models.reporting_model_job_detail import ReportingModelJobDetail as ReportingModelJobDetail
|
|
773
|
+
from neurograph.v1.models.reporting_model_job_detail_response import ReportingModelJobDetailResponse as ReportingModelJobDetailResponse
|
|
774
|
+
from neurograph.v1.models.reporting_model_job_stats import ReportingModelJobStats as ReportingModelJobStats
|
|
775
|
+
from neurograph.v1.models.reporting_model_job_summary import ReportingModelJobSummary as ReportingModelJobSummary
|
|
776
|
+
from neurograph.v1.models.reporting_model_jobs_over_time import ReportingModelJobsOverTime as ReportingModelJobsOverTime
|
|
777
|
+
from neurograph.v1.models.reporting_model_prediction import ReportingModelPrediction as ReportingModelPrediction
|
|
778
|
+
from neurograph.v1.models.reporting_model_version_stats import ReportingModelVersionStats as ReportingModelVersionStats
|
|
779
|
+
from neurograph.v1.models.reporting_org_breakdown import ReportingOrgBreakdown as ReportingOrgBreakdown
|
|
780
|
+
from neurograph.v1.models.reporting_other_markets import ReportingOtherMarkets as ReportingOtherMarkets
|
|
781
|
+
from neurograph.v1.models.reporting_period_comparison import ReportingPeriodComparison as ReportingPeriodComparison
|
|
782
|
+
from neurograph.v1.models.reporting_persona_buyer_scenarios_request import ReportingPersonaBuyerScenariosRequest as ReportingPersonaBuyerScenariosRequest
|
|
783
|
+
from neurograph.v1.models.reporting_persona_buyer_scenarios_response import ReportingPersonaBuyerScenariosResponse as ReportingPersonaBuyerScenariosResponse
|
|
784
|
+
from neurograph.v1.models.reporting_persona_demographics_request import ReportingPersonaDemographicsRequest as ReportingPersonaDemographicsRequest
|
|
785
|
+
from neurograph.v1.models.reporting_persona_demographics_response import ReportingPersonaDemographicsResponse as ReportingPersonaDemographicsResponse
|
|
786
|
+
from neurograph.v1.models.reporting_persona_product_affinity_request import ReportingPersonaProductAffinityRequest as ReportingPersonaProductAffinityRequest
|
|
787
|
+
from neurograph.v1.models.reporting_persona_product_affinity_response import ReportingPersonaProductAffinityResponse as ReportingPersonaProductAffinityResponse
|
|
788
|
+
from neurograph.v1.models.reporting_portfolio_activity_query import ReportingPortfolioActivityQuery as ReportingPortfolioActivityQuery
|
|
789
|
+
from neurograph.v1.models.reporting_portfolio_activity_response import ReportingPortfolioActivityResponse as ReportingPortfolioActivityResponse
|
|
790
|
+
from neurograph.v1.models.reporting_portfolio_metrics import ReportingPortfolioMetrics as ReportingPortfolioMetrics
|
|
791
|
+
from neurograph.v1.models.reporting_prediction_detail import ReportingPredictionDetail as ReportingPredictionDetail
|
|
792
|
+
from neurograph.v1.models.reporting_prediction_detail_response import ReportingPredictionDetailResponse as ReportingPredictionDetailResponse
|
|
793
|
+
from neurograph.v1.models.reporting_price_bucket import ReportingPriceBucket as ReportingPriceBucket
|
|
794
|
+
from neurograph.v1.models.reporting_price_tolerance_data import ReportingPriceToleranceData as ReportingPriceToleranceData
|
|
795
|
+
from neurograph.v1.models.reporting_product_affinity_query_request import ReportingProductAffinityQueryRequest as ReportingProductAffinityQueryRequest
|
|
796
|
+
from neurograph.v1.models.reporting_product_affinity_response import ReportingProductAffinityResponse as ReportingProductAffinityResponse
|
|
797
|
+
from neurograph.v1.models.reporting_product_affinity_row import ReportingProductAffinityRow as ReportingProductAffinityRow
|
|
798
|
+
from neurograph.v1.models.reporting_product_performance_data import ReportingProductPerformanceData as ReportingProductPerformanceData
|
|
799
|
+
from neurograph.v1.models.reporting_product_performance_row import ReportingProductPerformanceRow as ReportingProductPerformanceRow
|
|
800
|
+
from neurograph.v1.models.reporting_purchase_cycle_data import ReportingPurchaseCycleData as ReportingPurchaseCycleData
|
|
801
|
+
from neurograph.v1.models.reporting_purchase_timing_data import ReportingPurchaseTimingData as ReportingPurchaseTimingData
|
|
802
|
+
from neurograph.v1.models.reporting_purchases_response import ReportingPurchasesResponse as ReportingPurchasesResponse
|
|
518
803
|
from neurograph.v1.models.reporting_query import ReportingQuery as ReportingQuery
|
|
804
|
+
from neurograph.v1.models.reporting_sessions_response import ReportingSessionsResponse as ReportingSessionsResponse
|
|
805
|
+
from neurograph.v1.models.reporting_summary_kpis import ReportingSummaryKPIs as ReportingSummaryKPIs
|
|
806
|
+
from neurograph.v1.models.reporting_timing_bucket import ReportingTimingBucket as ReportingTimingBucket
|
|
807
|
+
from neurograph.v1.models.reporting_traffic_pipeline_day import ReportingTrafficPipelineDay as ReportingTrafficPipelineDay
|
|
808
|
+
from neurograph.v1.models.reporting_traffic_trend_day import ReportingTrafficTrendDay as ReportingTrafficTrendDay
|
|
809
|
+
from neurograph.v1.models.reports_data_source_config import ReportsDataSourceConfig as ReportsDataSourceConfig
|
|
810
|
+
from neurograph.v1.models.reports_date_range import ReportsDateRange as ReportsDateRange
|
|
811
|
+
from neurograph.v1.models.reports_facet_item import ReportsFacetItem as ReportsFacetItem
|
|
812
|
+
from neurograph.v1.models.reports_linked_kpi import ReportsLinkedKPI as ReportsLinkedKPI
|
|
813
|
+
from neurograph.v1.models.reports_linked_query import ReportsLinkedQuery as ReportsLinkedQuery
|
|
814
|
+
from neurograph.v1.models.reports_markdown_content_response import ReportsMarkdownContentResponse as ReportsMarkdownContentResponse
|
|
815
|
+
from neurograph.v1.models.reports_markdown_content_update_request import ReportsMarkdownContentUpdateRequest as ReportsMarkdownContentUpdateRequest
|
|
816
|
+
from neurograph.v1.models.reports_og_image_regenerate_response import ReportsOGImageRegenerateResponse as ReportsOGImageRegenerateResponse
|
|
817
|
+
from neurograph.v1.models.reports_public_branding import ReportsPublicBranding as ReportsPublicBranding
|
|
818
|
+
from neurograph.v1.models.reports_public_report_response import ReportsPublicReportResponse as ReportsPublicReportResponse
|
|
819
|
+
from neurograph.v1.models.reports_recommendation import ReportsRecommendation as ReportsRecommendation
|
|
820
|
+
from neurograph.v1.models.reports_report_agent_status_response import ReportsReportAgentStatusResponse as ReportsReportAgentStatusResponse
|
|
821
|
+
from neurograph.v1.models.reports_report_artifact_create_request import ReportsReportArtifactCreateRequest as ReportsReportArtifactCreateRequest
|
|
822
|
+
from neurograph.v1.models.reports_report_artifact_delete_response import ReportsReportArtifactDeleteResponse as ReportsReportArtifactDeleteResponse
|
|
823
|
+
from neurograph.v1.models.reports_report_artifact_list_response import ReportsReportArtifactListResponse as ReportsReportArtifactListResponse
|
|
824
|
+
from neurograph.v1.models.reports_report_artifact_response import ReportsReportArtifactResponse as ReportsReportArtifactResponse
|
|
825
|
+
from neurograph.v1.models.reports_report_artifact_search_response import ReportsReportArtifactSearchResponse as ReportsReportArtifactSearchResponse
|
|
826
|
+
from neurograph.v1.models.reports_report_artifact_update_request import ReportsReportArtifactUpdateRequest as ReportsReportArtifactUpdateRequest
|
|
827
|
+
from neurograph.v1.models.reports_report_facets_response import ReportsReportFacetsResponse as ReportsReportFacetsResponse
|
|
828
|
+
from neurograph.v1.models.reports_report_generate_request import ReportsReportGenerateRequest as ReportsReportGenerateRequest
|
|
829
|
+
from neurograph.v1.models.reports_report_generate_response import ReportsReportGenerateResponse as ReportsReportGenerateResponse
|
|
830
|
+
from neurograph.v1.models.reports_share_link_response import ReportsShareLinkResponse as ReportsShareLinkResponse
|
|
831
|
+
from neurograph.v1.models.reports_sync_agent_request import ReportsSyncAgentRequest as ReportsSyncAgentRequest
|
|
832
|
+
from neurograph.v1.models.reports_sync_agent_response import ReportsSyncAgentResponse as ReportsSyncAgentResponse
|
|
833
|
+
from neurograph.v1.models.signal_client_info import SignalClientInfo as SignalClientInfo
|
|
834
|
+
from neurograph.v1.models.signal_client_signal_details_request import SignalClientSignalDetailsRequest as SignalClientSignalDetailsRequest
|
|
835
|
+
from neurograph.v1.models.signal_client_signal_details_response import SignalClientSignalDetailsResponse as SignalClientSignalDetailsResponse
|
|
836
|
+
from neurograph.v1.models.signal_client_signal_summary import SignalClientSignalSummary as SignalClientSignalSummary
|
|
837
|
+
from neurograph.v1.models.signal_client_signal_totals import SignalClientSignalTotals as SignalClientSignalTotals
|
|
838
|
+
from neurograph.v1.models.signal_conversion_summary import SignalConversionSummary as SignalConversionSummary
|
|
839
|
+
from neurograph.v1.models.signal_conversion_totals import SignalConversionTotals as SignalConversionTotals
|
|
840
|
+
from neurograph.v1.models.signal_daily_conversion_metrics import SignalDailyConversionMetrics as SignalDailyConversionMetrics
|
|
841
|
+
from neurograph.v1.models.signal_daily_intent_band import SignalDailyIntentBand as SignalDailyIntentBand
|
|
842
|
+
from neurograph.v1.models.signal_daily_intent_metrics import SignalDailyIntentMetrics as SignalDailyIntentMetrics
|
|
843
|
+
from neurograph.v1.models.signal_daily_purchase_metrics import SignalDailyPurchaseMetrics as SignalDailyPurchaseMetrics
|
|
844
|
+
from neurograph.v1.models.signal_date_range import SignalDateRange as SignalDateRange
|
|
845
|
+
from neurograph.v1.models.signal_intent_distribution import SignalIntentDistribution as SignalIntentDistribution
|
|
846
|
+
from neurograph.v1.models.signal_intent_summary import SignalIntentSummary as SignalIntentSummary
|
|
847
|
+
from neurograph.v1.models.signal_persona_conversion import SignalPersonaConversion as SignalPersonaConversion
|
|
848
|
+
from neurograph.v1.models.signal_signal_overview_request import SignalSignalOverviewRequest as SignalSignalOverviewRequest
|
|
849
|
+
from neurograph.v1.models.signal_signal_overview_response import SignalSignalOverviewResponse as SignalSignalOverviewResponse
|
|
850
|
+
from neurograph.v1.models.signal_signal_overview_totals import SignalSignalOverviewTotals as SignalSignalOverviewTotals
|
|
519
851
|
from neurograph.v1.models.utils_color_pair_result import UtilsColorPairResult as UtilsColorPairResult
|
|
520
852
|
from neurograph.v1.models.utils_validation_error import UtilsValidationError as UtilsValidationError
|
|
521
853
|
from neurograph.v1.models.utils_validation_errors import UtilsValidationErrors as UtilsValidationErrors
|
neurograph/v1/api/__init__.py
CHANGED
|
@@ -12,8 +12,10 @@ 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.pixel_api import PixelApi
|
|
15
16
|
from neurograph.v1.api.reporting_api import ReportingApi
|
|
16
|
-
from neurograph.v1.api.
|
|
17
|
+
from neurograph.v1.api.reports_api import ReportsApi
|
|
18
|
+
from neurograph.v1.api.signal_api import SignalApi
|
|
17
19
|
from neurograph.v1.api.user_api import UserApi
|
|
18
20
|
from neurograph.v1.api.workbench_api import WorkbenchApi
|
|
19
21
|
|