neurograph-core 1.202512092319__py3-none-any.whl → 1.202601140018__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.
Files changed (114) hide show
  1. neurograph/v1/__init__.py +178 -2
  2. neurograph/v1/api/__init__.py +1 -1
  3. neurograph/v1/api/admin_api.py +302 -0
  4. neurograph/v1/api/client_api.py +569 -0
  5. neurograph/v1/api/organization_api.py +283 -0
  6. neurograph/v1/api/persona_api.py +1985 -301
  7. neurograph/v1/api/reporting_api.py +3002 -28
  8. neurograph/v1/api/reports_api.py +4339 -0
  9. neurograph/v1/models/__init__.py +88 -0
  10. neurograph/v1/models/admin_reset_password_request.py +89 -0
  11. neurograph/v1/models/admin_reset_password_response.py +91 -0
  12. neurograph/v1/models/admin_upsert_user_request.py +5 -3
  13. neurograph/v1/models/admin_upsert_user_response.py +4 -2
  14. neurograph/v1/models/client_match_criteria_row_in_db.py +4 -2
  15. neurograph/v1/models/client_persona.py +3 -1
  16. neurograph/v1/models/client_persona_assignment_stats.py +95 -0
  17. neurograph/v1/models/client_persona_assignment_stats_response.py +97 -0
  18. neurograph/v1/models/client_slack_message_request.py +87 -0
  19. neurograph/v1/models/client_slack_message_response.py +87 -0
  20. neurograph/v1/models/db_persona_factor.py +99 -0
  21. neurograph/v1/models/db_persona_match_criterium.py +97 -0
  22. neurograph/v1/models/organizations_gamma_block_settings.py +93 -0
  23. neurograph/v1/models/organizations_gamma_button_settings.py +91 -0
  24. neurograph/v1/models/organizations_gamma_card_settings.py +97 -0
  25. neurograph/v1/models/organizations_gamma_color_settings.py +101 -0
  26. neurograph/v1/models/organizations_gamma_design_settings.py +103 -0
  27. neurograph/v1/models/organizations_gamma_font_settings.py +107 -0
  28. neurograph/v1/models/organizations_gamma_theme_request.py +113 -0
  29. neurograph/v1/models/organizations_gamma_theme_response.py +95 -0
  30. neurograph/v1/models/organizations_gamma_theme_settings.py +105 -0
  31. neurograph/v1/models/personas_factor_delete_response.py +89 -0
  32. neurograph/v1/models/personas_factor_update_request.py +95 -0
  33. neurograph/v1/models/personas_factor_update_response.py +93 -0
  34. neurograph/v1/models/personas_get_persona_instance_response.py +3 -1
  35. neurograph/v1/models/personas_insight_create_request.py +6 -4
  36. neurograph/v1/models/personas_insight_create_response.py +4 -2
  37. neurograph/v1/models/personas_instance_create_request.py +4 -2
  38. neurograph/v1/models/personas_instance_create_response.py +3 -1
  39. neurograph/v1/models/personas_match_criteria_delete_response.py +89 -0
  40. neurograph/v1/models/personas_match_criteria_reorder_item.py +89 -0
  41. neurograph/v1/models/personas_match_criteria_reorder_request.py +95 -0
  42. neurograph/v1/models/personas_match_criteria_reorder_response.py +89 -0
  43. neurograph/v1/models/personas_match_criteria_row_in_db.py +4 -2
  44. neurograph/v1/models/personas_match_criteria_update_request.py +91 -0
  45. neurograph/v1/models/personas_match_criteria_update_response.py +93 -0
  46. neurograph/v1/models/personas_persona.py +3 -1
  47. neurograph/v1/models/personas_update_demographics_request.py +95 -0
  48. neurograph/v1/models/personas_update_demographics_response.py +99 -0
  49. neurograph/v1/models/reporting_activity_metrics.py +97 -0
  50. neurograph/v1/models/reporting_age_breakdown_row.py +97 -0
  51. neurograph/v1/models/reporting_client_activity_event.py +103 -0
  52. neurograph/v1/models/reporting_client_activity_query.py +91 -0
  53. neurograph/v1/models/reporting_client_activity_summary.py +89 -0
  54. neurograph/v1/models/reporting_client_breakdown.py +93 -0
  55. neurograph/v1/models/reporting_client_enrichment_coverage.py +97 -0
  56. neurograph/v1/models/reporting_combined_activity_response.py +100 -0
  57. neurograph/v1/models/reporting_customer_insights_request.py +93 -0
  58. neurograph/v1/models/reporting_customer_insights_response.py +125 -0
  59. neurograph/v1/models/reporting_daily_metric.py +40 -8
  60. neurograph/v1/models/reporting_daily_predictions.py +89 -0
  61. neurograph/v1/models/reporting_daily_summary.py +89 -0
  62. neurograph/v1/models/reporting_daily_total.py +91 -0
  63. neurograph/v1/models/reporting_data_availability_query.py +87 -0
  64. neurograph/v1/models/reporting_data_availability_response.py +89 -0
  65. neurograph/v1/models/reporting_date_range.py +89 -0
  66. neurograph/v1/models/reporting_enrichment_coverage_query.py +89 -0
  67. neurograph/v1/models/reporting_enrichment_coverage_response.py +107 -0
  68. neurograph/v1/models/reporting_enrichment_coverage_summary.py +95 -0
  69. neurograph/v1/models/reporting_intent_band_data.py +91 -0
  70. neurograph/v1/models/reporting_model_insights_request.py +93 -0
  71. neurograph/v1/models/reporting_model_insights_response.py +143 -0
  72. neurograph/v1/models/reporting_model_job_detail.py +99 -0
  73. neurograph/v1/models/reporting_model_job_detail_response.py +109 -0
  74. neurograph/v1/models/reporting_model_job_stats.py +95 -0
  75. neurograph/v1/models/reporting_model_job_summary.py +105 -0
  76. neurograph/v1/models/reporting_model_jobs_over_time.py +91 -0
  77. neurograph/v1/models/reporting_model_prediction.py +95 -0
  78. neurograph/v1/models/reporting_model_version_stats.py +91 -0
  79. neurograph/v1/models/reporting_org_breakdown.py +91 -0
  80. neurograph/v1/models/reporting_portfolio_activity_query.py +93 -0
  81. neurograph/v1/models/reporting_portfolio_activity_response.py +123 -0
  82. neurograph/v1/models/reporting_portfolio_metrics.py +108 -0
  83. neurograph/v1/models/reporting_prediction_detail.py +99 -0
  84. neurograph/v1/models/reporting_prediction_detail_response.py +97 -0
  85. neurograph/v1/models/reporting_product_affinity_query_request.py +93 -0
  86. neurograph/v1/models/reporting_product_affinity_response.py +101 -0
  87. neurograph/v1/models/reporting_product_affinity_row.py +115 -0
  88. neurograph/v1/models/reporting_purchases_response.py +111 -0
  89. neurograph/v1/models/reporting_sessions_response.py +111 -0
  90. neurograph/v1/models/reporting_summary_kpis.py +95 -0
  91. neurograph/v1/models/reporting_traffic_pipeline_day.py +108 -0
  92. neurograph/v1/models/reporting_traffic_trend_day.py +91 -0
  93. neurograph/v1/models/reports_error_response.py +89 -0
  94. neurograph/v1/models/reports_facet_item.py +89 -0
  95. neurograph/v1/models/reports_linked_kpi.py +95 -0
  96. neurograph/v1/models/reports_linked_query.py +91 -0
  97. neurograph/v1/models/reports_markdown_content_response.py +95 -0
  98. neurograph/v1/models/reports_markdown_content_update_request.py +87 -0
  99. neurograph/v1/models/reports_og_image_regenerate_response.py +91 -0
  100. neurograph/v1/models/reports_public_branding.py +95 -0
  101. neurograph/v1/models/reports_public_report_response.py +123 -0
  102. neurograph/v1/models/reports_recommendation.py +95 -0
  103. neurograph/v1/models/reports_report_artifact_create_request.py +145 -0
  104. neurograph/v1/models/reports_report_artifact_list_response.py +103 -0
  105. neurograph/v1/models/reports_report_artifact_response.py +175 -0
  106. neurograph/v1/models/reports_report_artifact_search_response.py +103 -0
  107. neurograph/v1/models/reports_report_artifact_update_request.py +141 -0
  108. neurograph/v1/models/reports_report_facets_response.py +122 -0
  109. neurograph/v1/models/reports_share_link_response.py +93 -0
  110. {neurograph_core-1.202512092319.dist-info → neurograph_core-1.202601140018.dist-info}/METADATA +1 -1
  111. {neurograph_core-1.202512092319.dist-info → neurograph_core-1.202601140018.dist-info}/RECORD +113 -25
  112. neurograph/v1/api/system_api.py +0 -293
  113. {neurograph_core-1.202512092319.dist-info → neurograph_core-1.202601140018.dist-info}/WHEEL +0 -0
  114. {neurograph_core-1.202512092319.dist-info → neurograph_core-1.202601140018.dist-info}/top_level.txt +0 -0
neurograph/v1/__init__.py CHANGED
@@ -30,7 +30,7 @@ __all__ = [
30
30
  "OrganizationMetadataApi",
31
31
  "PersonaApi",
32
32
  "ReportingApi",
33
- "SystemApi",
33
+ "ReportsApi",
34
34
  "UserApi",
35
35
  "WorkbenchApi",
36
36
  "ApiResponse",
@@ -43,6 +43,8 @@ __all__ = [
43
43
  "ApiAttributeError",
44
44
  "ApiException",
45
45
  "AdminPermissionResponse",
46
+ "AdminResetPasswordRequest",
47
+ "AdminResetPasswordResponse",
46
48
  "AdminSetPermissionRequest",
47
49
  "AdminUpsertUserRequest",
48
50
  "AdminUpsertUserResponse",
@@ -71,6 +73,8 @@ __all__ = [
71
73
  "ClientOrganizationBrand",
72
74
  "ClientOrganizationDetail",
73
75
  "ClientPersona",
76
+ "ClientPersonaAssignmentStats",
77
+ "ClientPersonaAssignmentStatsResponse",
74
78
  "ClientPersonaFactor",
75
79
  "ClientPersonaInsight",
76
80
  "ClientPersonaPersonalityTrait",
@@ -78,6 +82,8 @@ __all__ = [
78
82
  "ClientProbe",
79
83
  "ClientProbeTodoRow",
80
84
  "ClientQuery",
85
+ "ClientSlackMessageRequest",
86
+ "ClientSlackMessageResponse",
81
87
  "ClientTriggerProbeResponse",
82
88
  "ClientURLSnapshotResponse",
83
89
  "ClientUpsertRequest",
@@ -100,7 +106,9 @@ __all__ = [
100
106
  "DbKnowledgeStore",
101
107
  "DbMyClient",
102
108
  "DbMyOrg",
109
+ "DbPersonaFactor",
103
110
  "DbPersonaFactorCreateParams",
111
+ "DbPersonaMatchCriterium",
104
112
  "DbPixelSnippet",
105
113
  "DbUserClientRole",
106
114
  "DbUserInDb",
@@ -186,6 +194,15 @@ __all__ = [
186
194
  "OrganizationsDeleteMetadataRequest",
187
195
  "OrganizationsDeleteMetadataResponse",
188
196
  "OrganizationsDetailResponse",
197
+ "OrganizationsGammaBlockSettings",
198
+ "OrganizationsGammaButtonSettings",
199
+ "OrganizationsGammaCardSettings",
200
+ "OrganizationsGammaColorSettings",
201
+ "OrganizationsGammaDesignSettings",
202
+ "OrganizationsGammaFontSettings",
203
+ "OrganizationsGammaThemeRequest",
204
+ "OrganizationsGammaThemeResponse",
205
+ "OrganizationsGammaThemeSettings",
189
206
  "OrganizationsGenerateTokensRequest",
190
207
  "OrganizationsGenerateTokensResponse",
191
208
  "OrganizationsGenerationMetadata",
@@ -217,7 +234,10 @@ __all__ = [
217
234
  "OrganizationsWorkbenchConfig",
218
235
  "PersonasFactorCreateRequest",
219
236
  "PersonasFactorCreateResponse",
237
+ "PersonasFactorDeleteResponse",
220
238
  "PersonasFactorRow",
239
+ "PersonasFactorUpdateRequest",
240
+ "PersonasFactorUpdateResponse",
221
241
  "PersonasGetPersonaInstanceResponse",
222
242
  "PersonasInsightCreateRequest",
223
243
  "PersonasInsightCreateResponse",
@@ -231,10 +251,16 @@ __all__ = [
231
251
  "PersonasKpiCreateResponse",
232
252
  "PersonasKpiReqRow",
233
253
  "PersonasKpiRowInDb",
254
+ "PersonasMatchCriteriaDeleteResponse",
255
+ "PersonasMatchCriteriaReorderItem",
256
+ "PersonasMatchCriteriaReorderRequest",
257
+ "PersonasMatchCriteriaReorderResponse",
234
258
  "PersonasMatchCriteriaRequest",
235
259
  "PersonasMatchCriteriaResponse",
236
260
  "PersonasMatchCriteriaRowIn",
237
261
  "PersonasMatchCriteriaRowInDb",
262
+ "PersonasMatchCriteriaUpdateRequest",
263
+ "PersonasMatchCriteriaUpdateResponse",
238
264
  "PersonasPersona",
239
265
  "PersonasPersonaFactor",
240
266
  "PersonasPersonaInsight",
@@ -247,6 +273,8 @@ __all__ = [
247
273
  "PersonasSeedGetManyResponse",
248
274
  "PersonasSeedUpsertRequest",
249
275
  "PersonasSeedsDeleteResponse",
276
+ "PersonasUpdateDemographicsRequest",
277
+ "PersonasUpdateDemographicsResponse",
250
278
  "PgtypeBool",
251
279
  "PgtypeInfinityModifier",
252
280
  "PgtypeInt4",
@@ -254,9 +282,69 @@ __all__ = [
254
282
  "PgtypeText",
255
283
  "PgtypeTimestamp",
256
284
  "PgtypeTimestamptz",
285
+ "ReportingActivityMetrics",
286
+ "ReportingAgeBreakdownRow",
287
+ "ReportingClientActivityEvent",
288
+ "ReportingClientActivityQuery",
289
+ "ReportingClientActivitySummary",
290
+ "ReportingClientBreakdown",
291
+ "ReportingClientEnrichmentCoverage",
292
+ "ReportingCombinedActivityResponse",
293
+ "ReportingCustomerInsightsRequest",
294
+ "ReportingCustomerInsightsResponse",
257
295
  "ReportingDailyMetric",
258
296
  "ReportingDailyMetricsResponse",
297
+ "ReportingDailyPredictions",
298
+ "ReportingDailySummary",
299
+ "ReportingDailyTotal",
300
+ "ReportingDataAvailabilityQuery",
301
+ "ReportingDataAvailabilityResponse",
302
+ "ReportingDateRange",
303
+ "ReportingEnrichmentCoverageQuery",
304
+ "ReportingEnrichmentCoverageResponse",
305
+ "ReportingEnrichmentCoverageSummary",
306
+ "ReportingIntentBandData",
307
+ "ReportingModelInsightsRequest",
308
+ "ReportingModelInsightsResponse",
309
+ "ReportingModelJobDetail",
310
+ "ReportingModelJobDetailResponse",
311
+ "ReportingModelJobStats",
312
+ "ReportingModelJobSummary",
313
+ "ReportingModelJobsOverTime",
314
+ "ReportingModelPrediction",
315
+ "ReportingModelVersionStats",
316
+ "ReportingOrgBreakdown",
317
+ "ReportingPortfolioActivityQuery",
318
+ "ReportingPortfolioActivityResponse",
319
+ "ReportingPortfolioMetrics",
320
+ "ReportingPredictionDetail",
321
+ "ReportingPredictionDetailResponse",
322
+ "ReportingProductAffinityQueryRequest",
323
+ "ReportingProductAffinityResponse",
324
+ "ReportingProductAffinityRow",
325
+ "ReportingPurchasesResponse",
259
326
  "ReportingQuery",
327
+ "ReportingSessionsResponse",
328
+ "ReportingSummaryKPIs",
329
+ "ReportingTrafficPipelineDay",
330
+ "ReportingTrafficTrendDay",
331
+ "ReportsErrorResponse",
332
+ "ReportsFacetItem",
333
+ "ReportsLinkedKPI",
334
+ "ReportsLinkedQuery",
335
+ "ReportsMarkdownContentResponse",
336
+ "ReportsMarkdownContentUpdateRequest",
337
+ "ReportsOGImageRegenerateResponse",
338
+ "ReportsPublicBranding",
339
+ "ReportsPublicReportResponse",
340
+ "ReportsRecommendation",
341
+ "ReportsReportArtifactCreateRequest",
342
+ "ReportsReportArtifactListResponse",
343
+ "ReportsReportArtifactResponse",
344
+ "ReportsReportArtifactSearchResponse",
345
+ "ReportsReportArtifactUpdateRequest",
346
+ "ReportsReportFacetsResponse",
347
+ "ReportsShareLinkResponse",
260
348
  "UtilsColorPairResult",
261
349
  "UtilsValidationError",
262
350
  "UtilsValidationErrors",
@@ -281,7 +369,7 @@ from neurograph.v1.api.organization_api import OrganizationApi as OrganizationAp
281
369
  from neurograph.v1.api.organization_metadata_api import OrganizationMetadataApi as OrganizationMetadataApi
282
370
  from neurograph.v1.api.persona_api import PersonaApi as PersonaApi
283
371
  from neurograph.v1.api.reporting_api import ReportingApi as ReportingApi
284
- from neurograph.v1.api.system_api import SystemApi as SystemApi
372
+ from neurograph.v1.api.reports_api import ReportsApi as ReportsApi
285
373
  from neurograph.v1.api.user_api import UserApi as UserApi
286
374
  from neurograph.v1.api.workbench_api import WorkbenchApi as WorkbenchApi
287
375
 
@@ -298,6 +386,8 @@ from neurograph.v1.exceptions import ApiException as ApiException
298
386
 
299
387
  # import models into sdk package
300
388
  from neurograph.v1.models.admin_permission_response import AdminPermissionResponse as AdminPermissionResponse
389
+ from neurograph.v1.models.admin_reset_password_request import AdminResetPasswordRequest as AdminResetPasswordRequest
390
+ from neurograph.v1.models.admin_reset_password_response import AdminResetPasswordResponse as AdminResetPasswordResponse
301
391
  from neurograph.v1.models.admin_set_permission_request import AdminSetPermissionRequest as AdminSetPermissionRequest
302
392
  from neurograph.v1.models.admin_upsert_user_request import AdminUpsertUserRequest as AdminUpsertUserRequest
303
393
  from neurograph.v1.models.admin_upsert_user_response import AdminUpsertUserResponse as AdminUpsertUserResponse
@@ -326,6 +416,8 @@ from neurograph.v1.models.client_metadata_response import ClientMetadataResponse
326
416
  from neurograph.v1.models.client_organization_brand import ClientOrganizationBrand as ClientOrganizationBrand
327
417
  from neurograph.v1.models.client_organization_detail import ClientOrganizationDetail as ClientOrganizationDetail
328
418
  from neurograph.v1.models.client_persona import ClientPersona as ClientPersona
419
+ from neurograph.v1.models.client_persona_assignment_stats import ClientPersonaAssignmentStats as ClientPersonaAssignmentStats
420
+ from neurograph.v1.models.client_persona_assignment_stats_response import ClientPersonaAssignmentStatsResponse as ClientPersonaAssignmentStatsResponse
329
421
  from neurograph.v1.models.client_persona_factor import ClientPersonaFactor as ClientPersonaFactor
330
422
  from neurograph.v1.models.client_persona_insight import ClientPersonaInsight as ClientPersonaInsight
331
423
  from neurograph.v1.models.client_persona_personality_trait import ClientPersonaPersonalityTrait as ClientPersonaPersonalityTrait
@@ -333,6 +425,8 @@ from neurograph.v1.models.client_personas_response import ClientPersonasResponse
333
425
  from neurograph.v1.models.client_probe import ClientProbe as ClientProbe
334
426
  from neurograph.v1.models.client_probe_todo_row import ClientProbeTodoRow as ClientProbeTodoRow
335
427
  from neurograph.v1.models.client_query import ClientQuery as ClientQuery
428
+ from neurograph.v1.models.client_slack_message_request import ClientSlackMessageRequest as ClientSlackMessageRequest
429
+ from neurograph.v1.models.client_slack_message_response import ClientSlackMessageResponse as ClientSlackMessageResponse
336
430
  from neurograph.v1.models.client_trigger_probe_response import ClientTriggerProbeResponse as ClientTriggerProbeResponse
337
431
  from neurograph.v1.models.client_url_snapshot_response import ClientURLSnapshotResponse as ClientURLSnapshotResponse
338
432
  from neurograph.v1.models.client_upsert_request import ClientUpsertRequest as ClientUpsertRequest
@@ -355,7 +449,9 @@ from neurograph.v1.models.db_knowledge_product import DbKnowledgeProduct as DbKn
355
449
  from neurograph.v1.models.db_knowledge_store import DbKnowledgeStore as DbKnowledgeStore
356
450
  from neurograph.v1.models.db_my_client import DbMyClient as DbMyClient
357
451
  from neurograph.v1.models.db_my_org import DbMyOrg as DbMyOrg
452
+ from neurograph.v1.models.db_persona_factor import DbPersonaFactor as DbPersonaFactor
358
453
  from neurograph.v1.models.db_persona_factor_create_params import DbPersonaFactorCreateParams as DbPersonaFactorCreateParams
454
+ from neurograph.v1.models.db_persona_match_criterium import DbPersonaMatchCriterium as DbPersonaMatchCriterium
359
455
  from neurograph.v1.models.db_pixel_snippet import DbPixelSnippet as DbPixelSnippet
360
456
  from neurograph.v1.models.db_user_client_role import DbUserClientRole as DbUserClientRole
361
457
  from neurograph.v1.models.db_user_in_db import DbUserInDb as DbUserInDb
@@ -441,6 +537,15 @@ from neurograph.v1.models.organizations_create_request import OrganizationsCreat
441
537
  from neurograph.v1.models.organizations_delete_metadata_request import OrganizationsDeleteMetadataRequest as OrganizationsDeleteMetadataRequest
442
538
  from neurograph.v1.models.organizations_delete_metadata_response import OrganizationsDeleteMetadataResponse as OrganizationsDeleteMetadataResponse
443
539
  from neurograph.v1.models.organizations_detail_response import OrganizationsDetailResponse as OrganizationsDetailResponse
540
+ from neurograph.v1.models.organizations_gamma_block_settings import OrganizationsGammaBlockSettings as OrganizationsGammaBlockSettings
541
+ from neurograph.v1.models.organizations_gamma_button_settings import OrganizationsGammaButtonSettings as OrganizationsGammaButtonSettings
542
+ from neurograph.v1.models.organizations_gamma_card_settings import OrganizationsGammaCardSettings as OrganizationsGammaCardSettings
543
+ from neurograph.v1.models.organizations_gamma_color_settings import OrganizationsGammaColorSettings as OrganizationsGammaColorSettings
544
+ from neurograph.v1.models.organizations_gamma_design_settings import OrganizationsGammaDesignSettings as OrganizationsGammaDesignSettings
545
+ from neurograph.v1.models.organizations_gamma_font_settings import OrganizationsGammaFontSettings as OrganizationsGammaFontSettings
546
+ from neurograph.v1.models.organizations_gamma_theme_request import OrganizationsGammaThemeRequest as OrganizationsGammaThemeRequest
547
+ from neurograph.v1.models.organizations_gamma_theme_response import OrganizationsGammaThemeResponse as OrganizationsGammaThemeResponse
548
+ from neurograph.v1.models.organizations_gamma_theme_settings import OrganizationsGammaThemeSettings as OrganizationsGammaThemeSettings
444
549
  from neurograph.v1.models.organizations_generate_tokens_request import OrganizationsGenerateTokensRequest as OrganizationsGenerateTokensRequest
445
550
  from neurograph.v1.models.organizations_generate_tokens_response import OrganizationsGenerateTokensResponse as OrganizationsGenerateTokensResponse
446
551
  from neurograph.v1.models.organizations_generation_metadata import OrganizationsGenerationMetadata as OrganizationsGenerationMetadata
@@ -472,7 +577,10 @@ from neurograph.v1.models.organizations_validate_branding_response import Organi
472
577
  from neurograph.v1.models.organizations_workbench_config import OrganizationsWorkbenchConfig as OrganizationsWorkbenchConfig
473
578
  from neurograph.v1.models.personas_factor_create_request import PersonasFactorCreateRequest as PersonasFactorCreateRequest
474
579
  from neurograph.v1.models.personas_factor_create_response import PersonasFactorCreateResponse as PersonasFactorCreateResponse
580
+ from neurograph.v1.models.personas_factor_delete_response import PersonasFactorDeleteResponse as PersonasFactorDeleteResponse
475
581
  from neurograph.v1.models.personas_factor_row import PersonasFactorRow as PersonasFactorRow
582
+ from neurograph.v1.models.personas_factor_update_request import PersonasFactorUpdateRequest as PersonasFactorUpdateRequest
583
+ from neurograph.v1.models.personas_factor_update_response import PersonasFactorUpdateResponse as PersonasFactorUpdateResponse
476
584
  from neurograph.v1.models.personas_get_persona_instance_response import PersonasGetPersonaInstanceResponse as PersonasGetPersonaInstanceResponse
477
585
  from neurograph.v1.models.personas_insight_create_request import PersonasInsightCreateRequest as PersonasInsightCreateRequest
478
586
  from neurograph.v1.models.personas_insight_create_response import PersonasInsightCreateResponse as PersonasInsightCreateResponse
@@ -486,10 +594,16 @@ from neurograph.v1.models.personas_kpi_create_request import PersonasKpiCreateRe
486
594
  from neurograph.v1.models.personas_kpi_create_response import PersonasKpiCreateResponse as PersonasKpiCreateResponse
487
595
  from neurograph.v1.models.personas_kpi_req_row import PersonasKpiReqRow as PersonasKpiReqRow
488
596
  from neurograph.v1.models.personas_kpi_row_in_db import PersonasKpiRowInDb as PersonasKpiRowInDb
597
+ from neurograph.v1.models.personas_match_criteria_delete_response import PersonasMatchCriteriaDeleteResponse as PersonasMatchCriteriaDeleteResponse
598
+ from neurograph.v1.models.personas_match_criteria_reorder_item import PersonasMatchCriteriaReorderItem as PersonasMatchCriteriaReorderItem
599
+ from neurograph.v1.models.personas_match_criteria_reorder_request import PersonasMatchCriteriaReorderRequest as PersonasMatchCriteriaReorderRequest
600
+ from neurograph.v1.models.personas_match_criteria_reorder_response import PersonasMatchCriteriaReorderResponse as PersonasMatchCriteriaReorderResponse
489
601
  from neurograph.v1.models.personas_match_criteria_request import PersonasMatchCriteriaRequest as PersonasMatchCriteriaRequest
490
602
  from neurograph.v1.models.personas_match_criteria_response import PersonasMatchCriteriaResponse as PersonasMatchCriteriaResponse
491
603
  from neurograph.v1.models.personas_match_criteria_row_in import PersonasMatchCriteriaRowIn as PersonasMatchCriteriaRowIn
492
604
  from neurograph.v1.models.personas_match_criteria_row_in_db import PersonasMatchCriteriaRowInDb as PersonasMatchCriteriaRowInDb
605
+ from neurograph.v1.models.personas_match_criteria_update_request import PersonasMatchCriteriaUpdateRequest as PersonasMatchCriteriaUpdateRequest
606
+ from neurograph.v1.models.personas_match_criteria_update_response import PersonasMatchCriteriaUpdateResponse as PersonasMatchCriteriaUpdateResponse
493
607
  from neurograph.v1.models.personas_persona import PersonasPersona as PersonasPersona
494
608
  from neurograph.v1.models.personas_persona_factor import PersonasPersonaFactor as PersonasPersonaFactor
495
609
  from neurograph.v1.models.personas_persona_insight import PersonasPersonaInsight as PersonasPersonaInsight
@@ -502,6 +616,8 @@ from neurograph.v1.models.personas_seed import PersonasSeed as PersonasSeed
502
616
  from neurograph.v1.models.personas_seed_get_many_response import PersonasSeedGetManyResponse as PersonasSeedGetManyResponse
503
617
  from neurograph.v1.models.personas_seed_upsert_request import PersonasSeedUpsertRequest as PersonasSeedUpsertRequest
504
618
  from neurograph.v1.models.personas_seeds_delete_response import PersonasSeedsDeleteResponse as PersonasSeedsDeleteResponse
619
+ from neurograph.v1.models.personas_update_demographics_request import PersonasUpdateDemographicsRequest as PersonasUpdateDemographicsRequest
620
+ from neurograph.v1.models.personas_update_demographics_response import PersonasUpdateDemographicsResponse as PersonasUpdateDemographicsResponse
505
621
  from neurograph.v1.models.pgtype_bool import PgtypeBool as PgtypeBool
506
622
  from neurograph.v1.models.pgtype_infinity_modifier import PgtypeInfinityModifier as PgtypeInfinityModifier
507
623
  from neurograph.v1.models.pgtype_int4 import PgtypeInt4 as PgtypeInt4
@@ -509,9 +625,69 @@ from neurograph.v1.models.pgtype_int8 import PgtypeInt8 as PgtypeInt8
509
625
  from neurograph.v1.models.pgtype_text import PgtypeText as PgtypeText
510
626
  from neurograph.v1.models.pgtype_timestamp import PgtypeTimestamp as PgtypeTimestamp
511
627
  from neurograph.v1.models.pgtype_timestamptz import PgtypeTimestamptz as PgtypeTimestamptz
628
+ from neurograph.v1.models.reporting_activity_metrics import ReportingActivityMetrics as ReportingActivityMetrics
629
+ from neurograph.v1.models.reporting_age_breakdown_row import ReportingAgeBreakdownRow as ReportingAgeBreakdownRow
630
+ from neurograph.v1.models.reporting_client_activity_event import ReportingClientActivityEvent as ReportingClientActivityEvent
631
+ from neurograph.v1.models.reporting_client_activity_query import ReportingClientActivityQuery as ReportingClientActivityQuery
632
+ from neurograph.v1.models.reporting_client_activity_summary import ReportingClientActivitySummary as ReportingClientActivitySummary
633
+ from neurograph.v1.models.reporting_client_breakdown import ReportingClientBreakdown as ReportingClientBreakdown
634
+ from neurograph.v1.models.reporting_client_enrichment_coverage import ReportingClientEnrichmentCoverage as ReportingClientEnrichmentCoverage
635
+ from neurograph.v1.models.reporting_combined_activity_response import ReportingCombinedActivityResponse as ReportingCombinedActivityResponse
636
+ from neurograph.v1.models.reporting_customer_insights_request import ReportingCustomerInsightsRequest as ReportingCustomerInsightsRequest
637
+ from neurograph.v1.models.reporting_customer_insights_response import ReportingCustomerInsightsResponse as ReportingCustomerInsightsResponse
512
638
  from neurograph.v1.models.reporting_daily_metric import ReportingDailyMetric as ReportingDailyMetric
513
639
  from neurograph.v1.models.reporting_daily_metrics_response import ReportingDailyMetricsResponse as ReportingDailyMetricsResponse
640
+ from neurograph.v1.models.reporting_daily_predictions import ReportingDailyPredictions as ReportingDailyPredictions
641
+ from neurograph.v1.models.reporting_daily_summary import ReportingDailySummary as ReportingDailySummary
642
+ from neurograph.v1.models.reporting_daily_total import ReportingDailyTotal as ReportingDailyTotal
643
+ from neurograph.v1.models.reporting_data_availability_query import ReportingDataAvailabilityQuery as ReportingDataAvailabilityQuery
644
+ from neurograph.v1.models.reporting_data_availability_response import ReportingDataAvailabilityResponse as ReportingDataAvailabilityResponse
645
+ from neurograph.v1.models.reporting_date_range import ReportingDateRange as ReportingDateRange
646
+ from neurograph.v1.models.reporting_enrichment_coverage_query import ReportingEnrichmentCoverageQuery as ReportingEnrichmentCoverageQuery
647
+ from neurograph.v1.models.reporting_enrichment_coverage_response import ReportingEnrichmentCoverageResponse as ReportingEnrichmentCoverageResponse
648
+ from neurograph.v1.models.reporting_enrichment_coverage_summary import ReportingEnrichmentCoverageSummary as ReportingEnrichmentCoverageSummary
649
+ from neurograph.v1.models.reporting_intent_band_data import ReportingIntentBandData as ReportingIntentBandData
650
+ from neurograph.v1.models.reporting_model_insights_request import ReportingModelInsightsRequest as ReportingModelInsightsRequest
651
+ from neurograph.v1.models.reporting_model_insights_response import ReportingModelInsightsResponse as ReportingModelInsightsResponse
652
+ from neurograph.v1.models.reporting_model_job_detail import ReportingModelJobDetail as ReportingModelJobDetail
653
+ from neurograph.v1.models.reporting_model_job_detail_response import ReportingModelJobDetailResponse as ReportingModelJobDetailResponse
654
+ from neurograph.v1.models.reporting_model_job_stats import ReportingModelJobStats as ReportingModelJobStats
655
+ from neurograph.v1.models.reporting_model_job_summary import ReportingModelJobSummary as ReportingModelJobSummary
656
+ from neurograph.v1.models.reporting_model_jobs_over_time import ReportingModelJobsOverTime as ReportingModelJobsOverTime
657
+ from neurograph.v1.models.reporting_model_prediction import ReportingModelPrediction as ReportingModelPrediction
658
+ from neurograph.v1.models.reporting_model_version_stats import ReportingModelVersionStats as ReportingModelVersionStats
659
+ from neurograph.v1.models.reporting_org_breakdown import ReportingOrgBreakdown as ReportingOrgBreakdown
660
+ from neurograph.v1.models.reporting_portfolio_activity_query import ReportingPortfolioActivityQuery as ReportingPortfolioActivityQuery
661
+ from neurograph.v1.models.reporting_portfolio_activity_response import ReportingPortfolioActivityResponse as ReportingPortfolioActivityResponse
662
+ from neurograph.v1.models.reporting_portfolio_metrics import ReportingPortfolioMetrics as ReportingPortfolioMetrics
663
+ from neurograph.v1.models.reporting_prediction_detail import ReportingPredictionDetail as ReportingPredictionDetail
664
+ from neurograph.v1.models.reporting_prediction_detail_response import ReportingPredictionDetailResponse as ReportingPredictionDetailResponse
665
+ from neurograph.v1.models.reporting_product_affinity_query_request import ReportingProductAffinityQueryRequest as ReportingProductAffinityQueryRequest
666
+ from neurograph.v1.models.reporting_product_affinity_response import ReportingProductAffinityResponse as ReportingProductAffinityResponse
667
+ from neurograph.v1.models.reporting_product_affinity_row import ReportingProductAffinityRow as ReportingProductAffinityRow
668
+ from neurograph.v1.models.reporting_purchases_response import ReportingPurchasesResponse as ReportingPurchasesResponse
514
669
  from neurograph.v1.models.reporting_query import ReportingQuery as ReportingQuery
670
+ from neurograph.v1.models.reporting_sessions_response import ReportingSessionsResponse as ReportingSessionsResponse
671
+ from neurograph.v1.models.reporting_summary_kpis import ReportingSummaryKPIs as ReportingSummaryKPIs
672
+ from neurograph.v1.models.reporting_traffic_pipeline_day import ReportingTrafficPipelineDay as ReportingTrafficPipelineDay
673
+ from neurograph.v1.models.reporting_traffic_trend_day import ReportingTrafficTrendDay as ReportingTrafficTrendDay
674
+ from neurograph.v1.models.reports_error_response import ReportsErrorResponse as ReportsErrorResponse
675
+ from neurograph.v1.models.reports_facet_item import ReportsFacetItem as ReportsFacetItem
676
+ from neurograph.v1.models.reports_linked_kpi import ReportsLinkedKPI as ReportsLinkedKPI
677
+ from neurograph.v1.models.reports_linked_query import ReportsLinkedQuery as ReportsLinkedQuery
678
+ from neurograph.v1.models.reports_markdown_content_response import ReportsMarkdownContentResponse as ReportsMarkdownContentResponse
679
+ from neurograph.v1.models.reports_markdown_content_update_request import ReportsMarkdownContentUpdateRequest as ReportsMarkdownContentUpdateRequest
680
+ from neurograph.v1.models.reports_og_image_regenerate_response import ReportsOGImageRegenerateResponse as ReportsOGImageRegenerateResponse
681
+ from neurograph.v1.models.reports_public_branding import ReportsPublicBranding as ReportsPublicBranding
682
+ from neurograph.v1.models.reports_public_report_response import ReportsPublicReportResponse as ReportsPublicReportResponse
683
+ from neurograph.v1.models.reports_recommendation import ReportsRecommendation as ReportsRecommendation
684
+ from neurograph.v1.models.reports_report_artifact_create_request import ReportsReportArtifactCreateRequest as ReportsReportArtifactCreateRequest
685
+ from neurograph.v1.models.reports_report_artifact_list_response import ReportsReportArtifactListResponse as ReportsReportArtifactListResponse
686
+ from neurograph.v1.models.reports_report_artifact_response import ReportsReportArtifactResponse as ReportsReportArtifactResponse
687
+ from neurograph.v1.models.reports_report_artifact_search_response import ReportsReportArtifactSearchResponse as ReportsReportArtifactSearchResponse
688
+ from neurograph.v1.models.reports_report_artifact_update_request import ReportsReportArtifactUpdateRequest as ReportsReportArtifactUpdateRequest
689
+ from neurograph.v1.models.reports_report_facets_response import ReportsReportFacetsResponse as ReportsReportFacetsResponse
690
+ from neurograph.v1.models.reports_share_link_response import ReportsShareLinkResponse as ReportsShareLinkResponse
515
691
  from neurograph.v1.models.utils_color_pair_result import UtilsColorPairResult as UtilsColorPairResult
516
692
  from neurograph.v1.models.utils_validation_error import UtilsValidationError as UtilsValidationError
517
693
  from neurograph.v1.models.utils_validation_errors import UtilsValidationErrors as UtilsValidationErrors
@@ -13,7 +13,7 @@ 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
15
  from neurograph.v1.api.reporting_api import ReportingApi
16
- from neurograph.v1.api.system_api import SystemApi
16
+ from neurograph.v1.api.reports_api import ReportsApi
17
17
  from neurograph.v1.api.user_api import UserApi
18
18
  from neurograph.v1.api.workbench_api import WorkbenchApi
19
19
 
@@ -17,8 +17,11 @@ from typing import Any, Dict, List, Optional, Tuple, Union
17
17
  from typing_extensions import Annotated
18
18
 
19
19
  from pydantic import Field, StrictInt, StrictStr
20
+ from typing import Optional
20
21
  from typing_extensions import Annotated
21
22
  from neurograph.v1.models.admin_permission_response import AdminPermissionResponse
23
+ from neurograph.v1.models.admin_reset_password_request import AdminResetPasswordRequest
24
+ from neurograph.v1.models.admin_reset_password_response import AdminResetPasswordResponse
22
25
  from neurograph.v1.models.admin_set_permission_request import AdminSetPermissionRequest
23
26
  from neurograph.v1.models.admin_upsert_user_request import AdminUpsertUserRequest
24
27
  from neurograph.v1.models.admin_upsert_user_response import AdminUpsertUserResponse
@@ -839,6 +842,305 @@ class AdminApi:
839
842
 
840
843
 
841
844
 
845
+ @validate_call
846
+ def api_v1_admin_users_id_reset_password_post(
847
+ self,
848
+ id: Annotated[StrictInt, Field(description="User's ID")],
849
+ request: Annotated[Optional[AdminResetPasswordRequest], Field(description="Reset password request")] = None,
850
+ _request_timeout: Union[
851
+ None,
852
+ Annotated[StrictFloat, Field(gt=0)],
853
+ Tuple[
854
+ Annotated[StrictFloat, Field(gt=0)],
855
+ Annotated[StrictFloat, Field(gt=0)]
856
+ ]
857
+ ] = None,
858
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
859
+ _content_type: Optional[StrictStr] = None,
860
+ _headers: Optional[Dict[StrictStr, Any]] = None,
861
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
862
+ ) -> AdminResetPasswordResponse:
863
+ """Reset User Password
864
+
865
+ Reset a user's password. If no password provided, generates a secure temporary one.
866
+
867
+ :param id: User's ID (required)
868
+ :type id: int
869
+ :param request: Reset password request
870
+ :type request: AdminResetPasswordRequest
871
+ :param _request_timeout: timeout setting for this request. If one
872
+ number provided, it will be total request
873
+ timeout. It can also be a pair (tuple) of
874
+ (connection, read) timeouts.
875
+ :type _request_timeout: int, tuple(int, int), optional
876
+ :param _request_auth: set to override the auth_settings for an a single
877
+ request; this effectively ignores the
878
+ authentication in the spec for a single request.
879
+ :type _request_auth: dict, optional
880
+ :param _content_type: force content-type for the request.
881
+ :type _content_type: str, Optional
882
+ :param _headers: set to override the headers for a single
883
+ request; this effectively ignores the headers
884
+ in the spec for a single request.
885
+ :type _headers: dict, optional
886
+ :param _host_index: set to override the host_index for a single
887
+ request; this effectively ignores the host_index
888
+ in the spec for a single request.
889
+ :type _host_index: int, optional
890
+ :return: Returns the result object.
891
+ """ # noqa: E501
892
+
893
+ _param = self._api_v1_admin_users_id_reset_password_post_serialize(
894
+ id=id,
895
+ request=request,
896
+ _request_auth=_request_auth,
897
+ _content_type=_content_type,
898
+ _headers=_headers,
899
+ _host_index=_host_index
900
+ )
901
+
902
+ _response_types_map: Dict[str, Optional[str]] = {
903
+ '200': "AdminResetPasswordResponse",
904
+ '400': "AdminResetPasswordResponse",
905
+ '404': "AdminResetPasswordResponse",
906
+ '500': "AdminResetPasswordResponse",
907
+ }
908
+ response_data = self.api_client.call_api(
909
+ *_param,
910
+ _request_timeout=_request_timeout
911
+ )
912
+ response_data.read()
913
+ return self.api_client.response_deserialize(
914
+ response_data=response_data,
915
+ response_types_map=_response_types_map,
916
+ ).data
917
+
918
+
919
+ @validate_call
920
+ def api_v1_admin_users_id_reset_password_post_with_http_info(
921
+ self,
922
+ id: Annotated[StrictInt, Field(description="User's ID")],
923
+ request: Annotated[Optional[AdminResetPasswordRequest], Field(description="Reset password request")] = None,
924
+ _request_timeout: Union[
925
+ None,
926
+ Annotated[StrictFloat, Field(gt=0)],
927
+ Tuple[
928
+ Annotated[StrictFloat, Field(gt=0)],
929
+ Annotated[StrictFloat, Field(gt=0)]
930
+ ]
931
+ ] = None,
932
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
933
+ _content_type: Optional[StrictStr] = None,
934
+ _headers: Optional[Dict[StrictStr, Any]] = None,
935
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
936
+ ) -> ApiResponse[AdminResetPasswordResponse]:
937
+ """Reset User Password
938
+
939
+ Reset a user's password. If no password provided, generates a secure temporary one.
940
+
941
+ :param id: User's ID (required)
942
+ :type id: int
943
+ :param request: Reset password request
944
+ :type request: AdminResetPasswordRequest
945
+ :param _request_timeout: timeout setting for this request. If one
946
+ number provided, it will be total request
947
+ timeout. It can also be a pair (tuple) of
948
+ (connection, read) timeouts.
949
+ :type _request_timeout: int, tuple(int, int), optional
950
+ :param _request_auth: set to override the auth_settings for an a single
951
+ request; this effectively ignores the
952
+ authentication in the spec for a single request.
953
+ :type _request_auth: dict, optional
954
+ :param _content_type: force content-type for the request.
955
+ :type _content_type: str, Optional
956
+ :param _headers: set to override the headers for a single
957
+ request; this effectively ignores the headers
958
+ in the spec for a single request.
959
+ :type _headers: dict, optional
960
+ :param _host_index: set to override the host_index for a single
961
+ request; this effectively ignores the host_index
962
+ in the spec for a single request.
963
+ :type _host_index: int, optional
964
+ :return: Returns the result object.
965
+ """ # noqa: E501
966
+
967
+ _param = self._api_v1_admin_users_id_reset_password_post_serialize(
968
+ id=id,
969
+ request=request,
970
+ _request_auth=_request_auth,
971
+ _content_type=_content_type,
972
+ _headers=_headers,
973
+ _host_index=_host_index
974
+ )
975
+
976
+ _response_types_map: Dict[str, Optional[str]] = {
977
+ '200': "AdminResetPasswordResponse",
978
+ '400': "AdminResetPasswordResponse",
979
+ '404': "AdminResetPasswordResponse",
980
+ '500': "AdminResetPasswordResponse",
981
+ }
982
+ response_data = self.api_client.call_api(
983
+ *_param,
984
+ _request_timeout=_request_timeout
985
+ )
986
+ response_data.read()
987
+ return self.api_client.response_deserialize(
988
+ response_data=response_data,
989
+ response_types_map=_response_types_map,
990
+ )
991
+
992
+
993
+ @validate_call
994
+ def api_v1_admin_users_id_reset_password_post_without_preload_content(
995
+ self,
996
+ id: Annotated[StrictInt, Field(description="User's ID")],
997
+ request: Annotated[Optional[AdminResetPasswordRequest], Field(description="Reset password request")] = None,
998
+ _request_timeout: Union[
999
+ None,
1000
+ Annotated[StrictFloat, Field(gt=0)],
1001
+ Tuple[
1002
+ Annotated[StrictFloat, Field(gt=0)],
1003
+ Annotated[StrictFloat, Field(gt=0)]
1004
+ ]
1005
+ ] = None,
1006
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
1007
+ _content_type: Optional[StrictStr] = None,
1008
+ _headers: Optional[Dict[StrictStr, Any]] = None,
1009
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1010
+ ) -> RESTResponseType:
1011
+ """Reset User Password
1012
+
1013
+ Reset a user's password. If no password provided, generates a secure temporary one.
1014
+
1015
+ :param id: User's ID (required)
1016
+ :type id: int
1017
+ :param request: Reset password request
1018
+ :type request: AdminResetPasswordRequest
1019
+ :param _request_timeout: timeout setting for this request. If one
1020
+ number provided, it will be total request
1021
+ timeout. It can also be a pair (tuple) of
1022
+ (connection, read) timeouts.
1023
+ :type _request_timeout: int, tuple(int, int), optional
1024
+ :param _request_auth: set to override the auth_settings for an a single
1025
+ request; this effectively ignores the
1026
+ authentication in the spec for a single request.
1027
+ :type _request_auth: dict, optional
1028
+ :param _content_type: force content-type for the request.
1029
+ :type _content_type: str, Optional
1030
+ :param _headers: set to override the headers for a single
1031
+ request; this effectively ignores the headers
1032
+ in the spec for a single request.
1033
+ :type _headers: dict, optional
1034
+ :param _host_index: set to override the host_index for a single
1035
+ request; this effectively ignores the host_index
1036
+ in the spec for a single request.
1037
+ :type _host_index: int, optional
1038
+ :return: Returns the result object.
1039
+ """ # noqa: E501
1040
+
1041
+ _param = self._api_v1_admin_users_id_reset_password_post_serialize(
1042
+ id=id,
1043
+ request=request,
1044
+ _request_auth=_request_auth,
1045
+ _content_type=_content_type,
1046
+ _headers=_headers,
1047
+ _host_index=_host_index
1048
+ )
1049
+
1050
+ _response_types_map: Dict[str, Optional[str]] = {
1051
+ '200': "AdminResetPasswordResponse",
1052
+ '400': "AdminResetPasswordResponse",
1053
+ '404': "AdminResetPasswordResponse",
1054
+ '500': "AdminResetPasswordResponse",
1055
+ }
1056
+ response_data = self.api_client.call_api(
1057
+ *_param,
1058
+ _request_timeout=_request_timeout
1059
+ )
1060
+ return response_data.response
1061
+
1062
+
1063
+ def _api_v1_admin_users_id_reset_password_post_serialize(
1064
+ self,
1065
+ id,
1066
+ request,
1067
+ _request_auth,
1068
+ _content_type,
1069
+ _headers,
1070
+ _host_index,
1071
+ ) -> RequestSerialized:
1072
+
1073
+ _host = None
1074
+
1075
+ _collection_formats: Dict[str, str] = {
1076
+ }
1077
+
1078
+ _path_params: Dict[str, str] = {}
1079
+ _query_params: List[Tuple[str, str]] = []
1080
+ _header_params: Dict[str, Optional[str]] = _headers or {}
1081
+ _form_params: List[Tuple[str, str]] = []
1082
+ _files: Dict[
1083
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
1084
+ ] = {}
1085
+ _body_params: Optional[bytes] = None
1086
+
1087
+ # process the path parameters
1088
+ if id is not None:
1089
+ _path_params['id'] = id
1090
+ # process the query parameters
1091
+ # process the header parameters
1092
+ # process the form parameters
1093
+ # process the body parameter
1094
+ if request is not None:
1095
+ _body_params = request
1096
+
1097
+
1098
+ # set the HTTP header `Accept`
1099
+ if 'Accept' not in _header_params:
1100
+ _header_params['Accept'] = self.api_client.select_header_accept(
1101
+ [
1102
+ 'application/json'
1103
+ ]
1104
+ )
1105
+
1106
+ # set the HTTP header `Content-Type`
1107
+ if _content_type:
1108
+ _header_params['Content-Type'] = _content_type
1109
+ else:
1110
+ _default_content_type = (
1111
+ self.api_client.select_header_content_type(
1112
+ [
1113
+ 'application/json'
1114
+ ]
1115
+ )
1116
+ )
1117
+ if _default_content_type is not None:
1118
+ _header_params['Content-Type'] = _default_content_type
1119
+
1120
+ # authentication setting
1121
+ _auth_settings: List[str] = [
1122
+ 'TokenAuth',
1123
+ 'ApiKeyAuth'
1124
+ ]
1125
+
1126
+ return self.api_client.param_serialize(
1127
+ method='POST',
1128
+ resource_path='/api/v1/admin/users/{id}/reset-password',
1129
+ path_params=_path_params,
1130
+ query_params=_query_params,
1131
+ header_params=_header_params,
1132
+ body=_body_params,
1133
+ post_params=_form_params,
1134
+ files=_files,
1135
+ auth_settings=_auth_settings,
1136
+ collection_formats=_collection_formats,
1137
+ _host=_host,
1138
+ _request_auth=_request_auth
1139
+ )
1140
+
1141
+
1142
+
1143
+
842
1144
  @validate_call
843
1145
  def api_v1_admin_users_post(
844
1146
  self,