neurograph-core 1.202512042142__tar.gz → 1.202512060307__tar.gz
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_core-1.202512042142 → neurograph_core-1.202512060307}/PKG-INFO +1 -1
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/__init__.py +6 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/__init__.py +1 -0
- neurograph_core-1.202512060307/neurograph/v1/api/client_health_api.py +603 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/__init__.py +2 -0
- neurograph_core-1.202512060307/neurograph/v1/models/client_healthcheck_create_request.py +91 -0
- neurograph_core-1.202512060307/neurograph/v1/models/client_healthcheck_response.py +97 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph_core.egg-info/PKG-INFO +1 -1
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph_core.egg-info/SOURCES.txt +6 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/pyproject.toml +1 -1
- neurograph_core-1.202512060307/test/test_client_health_api.py +45 -0
- neurograph_core-1.202512060307/test/test_client_healthcheck_create_request.py +55 -0
- neurograph_core-1.202512060307/test/test_client_healthcheck_response.py +58 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/README.md +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/__init__.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/admin_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/authentication_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/client_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/client_metadata_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/dagster_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/knowledge_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/knowledge_extract_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/lookup_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/organization_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/organization_metadata_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/persona_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/reporting_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/system_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/user_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/workbench_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api_client.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/configuration.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/exceptions.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_permission_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_set_permission_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_upsert_user_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_upsert_user_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_user.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_user_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_users_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/admin_users_org_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/auth_service_token_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/auth_service_token_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/auth_test_service_token_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/auth_test_service_token_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/auth_test_token_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_client.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_delete_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_get_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_info.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_kpi.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_match_criteria_row_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_metadata.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_metadata_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_organization_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_organization_detail.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_persona.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_persona_factor.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_persona_insight.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_persona_personality_trait.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_personas_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_probe.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_probe_todo_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_trigger_probe_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_url_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_url_snapshot_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_url_snapshot_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_url_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_url_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_urls_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/client_workbench_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/dagster_info.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/dagster_log_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/dagster_log_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/dagster_log_get_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_account_organization_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_client_url.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_knowledge_customer.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_knowledge_order.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_knowledge_product.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_knowledge_store.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_my_client.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_my_org.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_persona_factor_create_params.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_pixel_snippet.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_user_client_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_user_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_user_org_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/db_user_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_assertion.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_assertion_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_assertion_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_assertion_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_assertion_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_customer_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_customer_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_enrichment_artifact.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_enrichment_artifact_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_enrichment_artifact_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_enrichment_artifact_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_enrichment_artifact_update_output_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_enrichment_artifact_update_status_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_enrichment_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_err_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_extra.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_relations.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_schema.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_schema_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_schema_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_schemas_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_schemas_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_type_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_type_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_type_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_type_upsert_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_entity_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_ingest_raw_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_ingest_raw_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_ingest_raw_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_kind_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_order_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_order_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_product.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_product_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_product_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_product_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_product_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_store_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/knowledge_store_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_env.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_language.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_language_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_lookup_environments_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_roles_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_state.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_state_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_states_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_uid.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/lookup_uids_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/me_my_profile_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/openai_accessibility_info.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/openai_brand_analysis.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/openai_brand_colors.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/openai_generated_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_apply_preset_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_apply_preset_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_generation_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_generation_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_history_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_history_item.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_history_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_rollback_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_rollback_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_brand_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_component_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_delete_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_delete_metadata_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_generate_tokens_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_generate_tokens_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_generation_metadata.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_get_branding_tokens_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_metadata.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_metadata_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_organization.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_organization_set_workbench_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_organization_set_workbench_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_organization_update_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_preset_recommendation.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_preview_branding_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_preview_branding_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_recommend_presets_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_screenshot_url_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_screenshot_url_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_spacing_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_test_accessibility_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_test_accessibility_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_theme_preset_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_theme_preset_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_theme_preset_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_theme_preset_update_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_typography_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_validate_branding_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_validate_branding_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/organizations_workbench_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_factor_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_factor_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_factor_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_get_persona_instance_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_insight_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_insight_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_instance_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_instance_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_instance_delete_many_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_instance_delete_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_instances_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_kpi.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_kpi_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_kpi_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_kpi_req_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_kpi_row_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_match_criteria_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_match_criteria_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_match_criteria_row_in.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_match_criteria_row_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_persona.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_persona_factor.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_persona_insight.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_persona_personality_trait.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_personality_trait_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_personality_trait_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_personality_trait_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_personality_trait_req.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_seed.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_seed_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_seed_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/personas_seeds_delete_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/pgtype_bool.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/pgtype_infinity_modifier.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/pgtype_int4.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/pgtype_int8.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/pgtype_text.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/pgtype_timestamp.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/pgtype_timestamptz.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/reporting_daily_metric.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/reporting_daily_metrics_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/reporting_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/utils_color_pair_result.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/utils_validation_error.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/utils_validation_errors.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/workbench_workbench_url_check_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/workbench_workbench_url_check_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/workbench_workbench_version.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/workbench_workbench_version_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/workbench_workbench_version_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/workbench_workbench_version_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/py.typed +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/rest.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph_core.egg-info/dependency_links.txt +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph_core.egg-info/requires.txt +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph_core.egg-info/top_level.txt +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/setup.cfg +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/setup.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_permission_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_set_permission_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_upsert_user_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_upsert_user_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_user.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_user_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_users_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_admin_users_org_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_auth_service_token_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_auth_service_token_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_auth_test_service_token_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_auth_test_service_token_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_auth_test_token_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_authentication_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_client.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_delete_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_get_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_info.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_kpi.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_match_criteria_row_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_metadata.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_metadata_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_metadata_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_organization_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_organization_detail.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_persona.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_persona_factor.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_persona_insight.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_persona_personality_trait.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_personas_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_probe.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_probe_todo_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_trigger_probe_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_url_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_url_snapshot_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_url_snapshot_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_url_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_url_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_urls_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_client_workbench_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_dagster_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_dagster_info.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_dagster_log_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_dagster_log_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_dagster_log_get_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_account_organization_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_client_url.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_knowledge_customer.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_knowledge_order.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_knowledge_product.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_knowledge_store.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_my_client.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_my_org.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_persona_factor_create_params.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_pixel_snippet.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_user_client_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_user_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_user_org_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_db_user_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_assertion.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_assertion_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_assertion_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_assertion_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_assertion_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_customer_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_customer_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_enrichment_artifact.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_enrichment_artifact_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_enrichment_artifact_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_enrichment_artifact_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_enrichment_artifact_update_output_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_enrichment_artifact_update_status_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_enrichment_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_err_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_extra.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_relations.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_schema.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_schema_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_schema_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_schemas_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_schemas_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_type_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_type_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_type_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_type_upsert_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_entity_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_extract_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_ingest_raw_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_ingest_raw_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_ingest_raw_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_kind_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_order_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_order_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_product.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_product_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_product_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_product_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_product_upsert_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_store_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_knowledge_store_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_env.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_language.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_language_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_lookup_environments_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_role.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_roles_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_state.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_state_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_states_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_uid.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_lookup_uids_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_me_my_profile_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_openai_accessibility_info.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_openai_brand_analysis.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_openai_brand_colors.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_openai_generated_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organization_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organization_metadata_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_apply_preset_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_apply_preset_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_generation_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_generation_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_history_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_history_item.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_history_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_rollback_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_rollback_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_brand_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_component_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_delete_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_delete_metadata_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_detail_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_generate_tokens_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_generate_tokens_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_generation_metadata.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_get_branding_tokens_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_metadata.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_metadata_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_metadata_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_organization.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_organization_set_workbench_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_organization_set_workbench_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_organization_update_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_preset_recommendation.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_preview_branding_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_preview_branding_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_recommend_presets_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_screenshot_url_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_screenshot_url_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_spacing_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_test_accessibility_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_test_accessibility_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_theme_preset_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_theme_preset_list_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_theme_preset_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_theme_preset_update_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_typography_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_validate_branding_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_validate_branding_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_organizations_workbench_config.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_persona_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_factor_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_factor_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_factor_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_get_persona_instance_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_insight_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_insight_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_instance_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_instance_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_instance_delete_many_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_instance_delete_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_instances_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_kpi.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_kpi_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_kpi_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_kpi_req_row.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_kpi_row_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_match_criteria_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_match_criteria_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_match_criteria_row_in.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_match_criteria_row_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_persona.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_persona_factor.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_persona_insight.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_persona_personality_trait.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_personality_trait_create_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_personality_trait_create_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_personality_trait_in_db.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_personality_trait_req.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_seed.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_seed_get_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_seed_upsert_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_personas_seeds_delete_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_pgtype_bool.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_pgtype_infinity_modifier.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_pgtype_int4.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_pgtype_int8.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_pgtype_text.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_pgtype_timestamp.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_pgtype_timestamptz.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_reporting_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_reporting_daily_metric.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_reporting_daily_metrics_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_reporting_query.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_system_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_user_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_utils_color_pair_result.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_utils_validation_error.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_utils_validation_errors.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_workbench_api.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_workbench_workbench_url_check_request.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_workbench_workbench_url_check_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_workbench_workbench_version.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_workbench_workbench_version_many_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_workbench_workbench_version_response.py +0 -0
- {neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/test/test_workbench_workbench_version_upsert_request.py +0 -0
|
@@ -21,6 +21,7 @@ __all__ = [
|
|
|
21
21
|
"AdminApi",
|
|
22
22
|
"AuthenticationApi",
|
|
23
23
|
"ClientApi",
|
|
24
|
+
"ClientHealthApi",
|
|
24
25
|
"ClientMetadataApi",
|
|
25
26
|
"DagsterApi",
|
|
26
27
|
"KnowledgeApi",
|
|
@@ -59,6 +60,8 @@ __all__ = [
|
|
|
59
60
|
"ClientDeleteMetadataRequest",
|
|
60
61
|
"ClientGetDetailResponse",
|
|
61
62
|
"ClientGetManyResponse",
|
|
63
|
+
"ClientHealthcheckCreateRequest",
|
|
64
|
+
"ClientHealthcheckResponse",
|
|
62
65
|
"ClientInfo",
|
|
63
66
|
"ClientKpi",
|
|
64
67
|
"ClientMatchCriteriaRowInDb",
|
|
@@ -269,6 +272,7 @@ __all__ = [
|
|
|
269
272
|
from neurograph.v1.api.admin_api import AdminApi as AdminApi
|
|
270
273
|
from neurograph.v1.api.authentication_api import AuthenticationApi as AuthenticationApi
|
|
271
274
|
from neurograph.v1.api.client_api import ClientApi as ClientApi
|
|
275
|
+
from neurograph.v1.api.client_health_api import ClientHealthApi as ClientHealthApi
|
|
272
276
|
from neurograph.v1.api.client_metadata_api import ClientMetadataApi as ClientMetadataApi
|
|
273
277
|
from neurograph.v1.api.dagster_api import DagsterApi as DagsterApi
|
|
274
278
|
from neurograph.v1.api.knowledge_api import KnowledgeApi as KnowledgeApi
|
|
@@ -311,6 +315,8 @@ from neurograph.v1.models.client_client import ClientClient as ClientClient
|
|
|
311
315
|
from neurograph.v1.models.client_delete_metadata_request import ClientDeleteMetadataRequest as ClientDeleteMetadataRequest
|
|
312
316
|
from neurograph.v1.models.client_get_detail_response import ClientGetDetailResponse as ClientGetDetailResponse
|
|
313
317
|
from neurograph.v1.models.client_get_many_response import ClientGetManyResponse as ClientGetManyResponse
|
|
318
|
+
from neurograph.v1.models.client_healthcheck_create_request import ClientHealthcheckCreateRequest as ClientHealthcheckCreateRequest
|
|
319
|
+
from neurograph.v1.models.client_healthcheck_response import ClientHealthcheckResponse as ClientHealthcheckResponse
|
|
314
320
|
from neurograph.v1.models.client_info import ClientInfo as ClientInfo
|
|
315
321
|
from neurograph.v1.models.client_kpi import ClientKpi as ClientKpi
|
|
316
322
|
from neurograph.v1.models.client_match_criteria_row_in_db import ClientMatchCriteriaRowInDb as ClientMatchCriteriaRowInDb
|
{neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/api/__init__.py
RENAMED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
from neurograph.v1.api.admin_api import AdminApi
|
|
5
5
|
from neurograph.v1.api.authentication_api import AuthenticationApi
|
|
6
6
|
from neurograph.v1.api.client_api import ClientApi
|
|
7
|
+
from neurograph.v1.api.client_health_api import ClientHealthApi
|
|
7
8
|
from neurograph.v1.api.client_metadata_api import ClientMetadataApi
|
|
8
9
|
from neurograph.v1.api.dagster_api import DagsterApi
|
|
9
10
|
from neurograph.v1.api.knowledge_api import KnowledgeApi
|
|
@@ -0,0 +1,603 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Neurograph Core
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
import warnings
|
|
15
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
16
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
|
+
from typing_extensions import Annotated
|
|
18
|
+
|
|
19
|
+
from pydantic import Field, StrictStr
|
|
20
|
+
from typing_extensions import Annotated
|
|
21
|
+
from neurograph.v1.models.client_healthcheck_create_request import ClientHealthcheckCreateRequest
|
|
22
|
+
from neurograph.v1.models.client_healthcheck_response import ClientHealthcheckResponse
|
|
23
|
+
|
|
24
|
+
from neurograph.v1.api_client import ApiClient, RequestSerialized
|
|
25
|
+
from neurograph.v1.api_response import ApiResponse
|
|
26
|
+
from neurograph.v1.rest import RESTResponseType
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class ClientHealthApi:
|
|
30
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
31
|
+
Ref: https://openapi-generator.tech
|
|
32
|
+
|
|
33
|
+
Do not edit the class manually.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
def __init__(self, api_client=None) -> None:
|
|
37
|
+
if api_client is None:
|
|
38
|
+
api_client = ApiClient.get_default()
|
|
39
|
+
self.api_client = api_client
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@validate_call
|
|
43
|
+
def api_v1_clients_client_id_healthcheck_latest_get(
|
|
44
|
+
self,
|
|
45
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
46
|
+
_request_timeout: Union[
|
|
47
|
+
None,
|
|
48
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
49
|
+
Tuple[
|
|
50
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
51
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
52
|
+
]
|
|
53
|
+
] = None,
|
|
54
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
55
|
+
_content_type: Optional[StrictStr] = None,
|
|
56
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
58
|
+
) -> ClientHealthcheckResponse:
|
|
59
|
+
"""Get newest healthcheck entry
|
|
60
|
+
|
|
61
|
+
Retrieve the most recent healthcheck for a client
|
|
62
|
+
|
|
63
|
+
:param client_id: Client ID (required)
|
|
64
|
+
:type client_id: str
|
|
65
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
66
|
+
number provided, it will be total request
|
|
67
|
+
timeout. It can also be a pair (tuple) of
|
|
68
|
+
(connection, read) timeouts.
|
|
69
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
70
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
71
|
+
request; this effectively ignores the
|
|
72
|
+
authentication in the spec for a single request.
|
|
73
|
+
:type _request_auth: dict, optional
|
|
74
|
+
:param _content_type: force content-type for the request.
|
|
75
|
+
:type _content_type: str, Optional
|
|
76
|
+
:param _headers: set to override the headers for a single
|
|
77
|
+
request; this effectively ignores the headers
|
|
78
|
+
in the spec for a single request.
|
|
79
|
+
:type _headers: dict, optional
|
|
80
|
+
:param _host_index: set to override the host_index for a single
|
|
81
|
+
request; this effectively ignores the host_index
|
|
82
|
+
in the spec for a single request.
|
|
83
|
+
:type _host_index: int, optional
|
|
84
|
+
:return: Returns the result object.
|
|
85
|
+
""" # noqa: E501
|
|
86
|
+
|
|
87
|
+
_param = self._api_v1_clients_client_id_healthcheck_latest_get_serialize(
|
|
88
|
+
client_id=client_id,
|
|
89
|
+
_request_auth=_request_auth,
|
|
90
|
+
_content_type=_content_type,
|
|
91
|
+
_headers=_headers,
|
|
92
|
+
_host_index=_host_index
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
96
|
+
'200': "ClientHealthcheckResponse",
|
|
97
|
+
'404': "ClientHealthcheckResponse",
|
|
98
|
+
'503': "ClientHealthcheckResponse",
|
|
99
|
+
}
|
|
100
|
+
response_data = self.api_client.call_api(
|
|
101
|
+
*_param,
|
|
102
|
+
_request_timeout=_request_timeout
|
|
103
|
+
)
|
|
104
|
+
response_data.read()
|
|
105
|
+
return self.api_client.response_deserialize(
|
|
106
|
+
response_data=response_data,
|
|
107
|
+
response_types_map=_response_types_map,
|
|
108
|
+
).data
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
@validate_call
|
|
112
|
+
def api_v1_clients_client_id_healthcheck_latest_get_with_http_info(
|
|
113
|
+
self,
|
|
114
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
115
|
+
_request_timeout: Union[
|
|
116
|
+
None,
|
|
117
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
118
|
+
Tuple[
|
|
119
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
120
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
121
|
+
]
|
|
122
|
+
] = None,
|
|
123
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
124
|
+
_content_type: Optional[StrictStr] = None,
|
|
125
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
126
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
127
|
+
) -> ApiResponse[ClientHealthcheckResponse]:
|
|
128
|
+
"""Get newest healthcheck entry
|
|
129
|
+
|
|
130
|
+
Retrieve the most recent healthcheck for a client
|
|
131
|
+
|
|
132
|
+
:param client_id: Client ID (required)
|
|
133
|
+
:type client_id: str
|
|
134
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
135
|
+
number provided, it will be total request
|
|
136
|
+
timeout. It can also be a pair (tuple) of
|
|
137
|
+
(connection, read) timeouts.
|
|
138
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
139
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
140
|
+
request; this effectively ignores the
|
|
141
|
+
authentication in the spec for a single request.
|
|
142
|
+
:type _request_auth: dict, optional
|
|
143
|
+
:param _content_type: force content-type for the request.
|
|
144
|
+
:type _content_type: str, Optional
|
|
145
|
+
:param _headers: set to override the headers for a single
|
|
146
|
+
request; this effectively ignores the headers
|
|
147
|
+
in the spec for a single request.
|
|
148
|
+
:type _headers: dict, optional
|
|
149
|
+
:param _host_index: set to override the host_index for a single
|
|
150
|
+
request; this effectively ignores the host_index
|
|
151
|
+
in the spec for a single request.
|
|
152
|
+
:type _host_index: int, optional
|
|
153
|
+
:return: Returns the result object.
|
|
154
|
+
""" # noqa: E501
|
|
155
|
+
|
|
156
|
+
_param = self._api_v1_clients_client_id_healthcheck_latest_get_serialize(
|
|
157
|
+
client_id=client_id,
|
|
158
|
+
_request_auth=_request_auth,
|
|
159
|
+
_content_type=_content_type,
|
|
160
|
+
_headers=_headers,
|
|
161
|
+
_host_index=_host_index
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
165
|
+
'200': "ClientHealthcheckResponse",
|
|
166
|
+
'404': "ClientHealthcheckResponse",
|
|
167
|
+
'503': "ClientHealthcheckResponse",
|
|
168
|
+
}
|
|
169
|
+
response_data = self.api_client.call_api(
|
|
170
|
+
*_param,
|
|
171
|
+
_request_timeout=_request_timeout
|
|
172
|
+
)
|
|
173
|
+
response_data.read()
|
|
174
|
+
return self.api_client.response_deserialize(
|
|
175
|
+
response_data=response_data,
|
|
176
|
+
response_types_map=_response_types_map,
|
|
177
|
+
)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
@validate_call
|
|
181
|
+
def api_v1_clients_client_id_healthcheck_latest_get_without_preload_content(
|
|
182
|
+
self,
|
|
183
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
184
|
+
_request_timeout: Union[
|
|
185
|
+
None,
|
|
186
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
187
|
+
Tuple[
|
|
188
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
189
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
190
|
+
]
|
|
191
|
+
] = None,
|
|
192
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
193
|
+
_content_type: Optional[StrictStr] = None,
|
|
194
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
195
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
196
|
+
) -> RESTResponseType:
|
|
197
|
+
"""Get newest healthcheck entry
|
|
198
|
+
|
|
199
|
+
Retrieve the most recent healthcheck for a client
|
|
200
|
+
|
|
201
|
+
:param client_id: Client ID (required)
|
|
202
|
+
:type client_id: str
|
|
203
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
204
|
+
number provided, it will be total request
|
|
205
|
+
timeout. It can also be a pair (tuple) of
|
|
206
|
+
(connection, read) timeouts.
|
|
207
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
208
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
209
|
+
request; this effectively ignores the
|
|
210
|
+
authentication in the spec for a single request.
|
|
211
|
+
:type _request_auth: dict, optional
|
|
212
|
+
:param _content_type: force content-type for the request.
|
|
213
|
+
:type _content_type: str, Optional
|
|
214
|
+
:param _headers: set to override the headers for a single
|
|
215
|
+
request; this effectively ignores the headers
|
|
216
|
+
in the spec for a single request.
|
|
217
|
+
:type _headers: dict, optional
|
|
218
|
+
:param _host_index: set to override the host_index for a single
|
|
219
|
+
request; this effectively ignores the host_index
|
|
220
|
+
in the spec for a single request.
|
|
221
|
+
:type _host_index: int, optional
|
|
222
|
+
:return: Returns the result object.
|
|
223
|
+
""" # noqa: E501
|
|
224
|
+
|
|
225
|
+
_param = self._api_v1_clients_client_id_healthcheck_latest_get_serialize(
|
|
226
|
+
client_id=client_id,
|
|
227
|
+
_request_auth=_request_auth,
|
|
228
|
+
_content_type=_content_type,
|
|
229
|
+
_headers=_headers,
|
|
230
|
+
_host_index=_host_index
|
|
231
|
+
)
|
|
232
|
+
|
|
233
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
234
|
+
'200': "ClientHealthcheckResponse",
|
|
235
|
+
'404': "ClientHealthcheckResponse",
|
|
236
|
+
'503': "ClientHealthcheckResponse",
|
|
237
|
+
}
|
|
238
|
+
response_data = self.api_client.call_api(
|
|
239
|
+
*_param,
|
|
240
|
+
_request_timeout=_request_timeout
|
|
241
|
+
)
|
|
242
|
+
return response_data.response
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
def _api_v1_clients_client_id_healthcheck_latest_get_serialize(
|
|
246
|
+
self,
|
|
247
|
+
client_id,
|
|
248
|
+
_request_auth,
|
|
249
|
+
_content_type,
|
|
250
|
+
_headers,
|
|
251
|
+
_host_index,
|
|
252
|
+
) -> RequestSerialized:
|
|
253
|
+
|
|
254
|
+
_host = None
|
|
255
|
+
|
|
256
|
+
_collection_formats: Dict[str, str] = {
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
_path_params: Dict[str, str] = {}
|
|
260
|
+
_query_params: List[Tuple[str, str]] = []
|
|
261
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
262
|
+
_form_params: List[Tuple[str, str]] = []
|
|
263
|
+
_files: Dict[
|
|
264
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
265
|
+
] = {}
|
|
266
|
+
_body_params: Optional[bytes] = None
|
|
267
|
+
|
|
268
|
+
# process the path parameters
|
|
269
|
+
if client_id is not None:
|
|
270
|
+
_path_params['client_id'] = client_id
|
|
271
|
+
# process the query parameters
|
|
272
|
+
# process the header parameters
|
|
273
|
+
# process the form parameters
|
|
274
|
+
# process the body parameter
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
# set the HTTP header `Accept`
|
|
278
|
+
if 'Accept' not in _header_params:
|
|
279
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
280
|
+
[
|
|
281
|
+
'application/json'
|
|
282
|
+
]
|
|
283
|
+
)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
# authentication setting
|
|
287
|
+
_auth_settings: List[str] = [
|
|
288
|
+
'TokenAuth',
|
|
289
|
+
'ApiKeyAuth'
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
return self.api_client.param_serialize(
|
|
293
|
+
method='GET',
|
|
294
|
+
resource_path='/api/v1/clients/{client_id}/healthcheck/latest',
|
|
295
|
+
path_params=_path_params,
|
|
296
|
+
query_params=_query_params,
|
|
297
|
+
header_params=_header_params,
|
|
298
|
+
body=_body_params,
|
|
299
|
+
post_params=_form_params,
|
|
300
|
+
files=_files,
|
|
301
|
+
auth_settings=_auth_settings,
|
|
302
|
+
collection_formats=_collection_formats,
|
|
303
|
+
_host=_host,
|
|
304
|
+
_request_auth=_request_auth
|
|
305
|
+
)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
@validate_call
|
|
311
|
+
def api_v1_clients_client_id_healthcheck_post(
|
|
312
|
+
self,
|
|
313
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
314
|
+
request: Annotated[ClientHealthcheckCreateRequest, Field(description="Healthcheck data")],
|
|
315
|
+
_request_timeout: Union[
|
|
316
|
+
None,
|
|
317
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
318
|
+
Tuple[
|
|
319
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
320
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
321
|
+
]
|
|
322
|
+
] = None,
|
|
323
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
324
|
+
_content_type: Optional[StrictStr] = None,
|
|
325
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
326
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
327
|
+
) -> ClientHealthcheckResponse:
|
|
328
|
+
"""Create healthcheck entry
|
|
329
|
+
|
|
330
|
+
Create a new client healthcheck for a specific date/hour
|
|
331
|
+
|
|
332
|
+
:param client_id: Client ID (required)
|
|
333
|
+
:type client_id: str
|
|
334
|
+
:param request: Healthcheck data (required)
|
|
335
|
+
:type request: ClientHealthcheckCreateRequest
|
|
336
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
337
|
+
number provided, it will be total request
|
|
338
|
+
timeout. It can also be a pair (tuple) of
|
|
339
|
+
(connection, read) timeouts.
|
|
340
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
341
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
342
|
+
request; this effectively ignores the
|
|
343
|
+
authentication in the spec for a single request.
|
|
344
|
+
:type _request_auth: dict, optional
|
|
345
|
+
:param _content_type: force content-type for the request.
|
|
346
|
+
:type _content_type: str, Optional
|
|
347
|
+
:param _headers: set to override the headers for a single
|
|
348
|
+
request; this effectively ignores the headers
|
|
349
|
+
in the spec for a single request.
|
|
350
|
+
:type _headers: dict, optional
|
|
351
|
+
:param _host_index: set to override the host_index for a single
|
|
352
|
+
request; this effectively ignores the host_index
|
|
353
|
+
in the spec for a single request.
|
|
354
|
+
:type _host_index: int, optional
|
|
355
|
+
:return: Returns the result object.
|
|
356
|
+
""" # noqa: E501
|
|
357
|
+
|
|
358
|
+
_param = self._api_v1_clients_client_id_healthcheck_post_serialize(
|
|
359
|
+
client_id=client_id,
|
|
360
|
+
request=request,
|
|
361
|
+
_request_auth=_request_auth,
|
|
362
|
+
_content_type=_content_type,
|
|
363
|
+
_headers=_headers,
|
|
364
|
+
_host_index=_host_index
|
|
365
|
+
)
|
|
366
|
+
|
|
367
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
368
|
+
'200': "ClientHealthcheckResponse",
|
|
369
|
+
'400': "ClientHealthcheckResponse",
|
|
370
|
+
'503': "ClientHealthcheckResponse",
|
|
371
|
+
}
|
|
372
|
+
response_data = self.api_client.call_api(
|
|
373
|
+
*_param,
|
|
374
|
+
_request_timeout=_request_timeout
|
|
375
|
+
)
|
|
376
|
+
response_data.read()
|
|
377
|
+
return self.api_client.response_deserialize(
|
|
378
|
+
response_data=response_data,
|
|
379
|
+
response_types_map=_response_types_map,
|
|
380
|
+
).data
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
@validate_call
|
|
384
|
+
def api_v1_clients_client_id_healthcheck_post_with_http_info(
|
|
385
|
+
self,
|
|
386
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
387
|
+
request: Annotated[ClientHealthcheckCreateRequest, Field(description="Healthcheck data")],
|
|
388
|
+
_request_timeout: Union[
|
|
389
|
+
None,
|
|
390
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
391
|
+
Tuple[
|
|
392
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
393
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
394
|
+
]
|
|
395
|
+
] = None,
|
|
396
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
397
|
+
_content_type: Optional[StrictStr] = None,
|
|
398
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
399
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
400
|
+
) -> ApiResponse[ClientHealthcheckResponse]:
|
|
401
|
+
"""Create healthcheck entry
|
|
402
|
+
|
|
403
|
+
Create a new client healthcheck for a specific date/hour
|
|
404
|
+
|
|
405
|
+
:param client_id: Client ID (required)
|
|
406
|
+
:type client_id: str
|
|
407
|
+
:param request: Healthcheck data (required)
|
|
408
|
+
:type request: ClientHealthcheckCreateRequest
|
|
409
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
410
|
+
number provided, it will be total request
|
|
411
|
+
timeout. It can also be a pair (tuple) of
|
|
412
|
+
(connection, read) timeouts.
|
|
413
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
414
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
415
|
+
request; this effectively ignores the
|
|
416
|
+
authentication in the spec for a single request.
|
|
417
|
+
:type _request_auth: dict, optional
|
|
418
|
+
:param _content_type: force content-type for the request.
|
|
419
|
+
:type _content_type: str, Optional
|
|
420
|
+
:param _headers: set to override the headers for a single
|
|
421
|
+
request; this effectively ignores the headers
|
|
422
|
+
in the spec for a single request.
|
|
423
|
+
:type _headers: dict, optional
|
|
424
|
+
:param _host_index: set to override the host_index for a single
|
|
425
|
+
request; this effectively ignores the host_index
|
|
426
|
+
in the spec for a single request.
|
|
427
|
+
:type _host_index: int, optional
|
|
428
|
+
:return: Returns the result object.
|
|
429
|
+
""" # noqa: E501
|
|
430
|
+
|
|
431
|
+
_param = self._api_v1_clients_client_id_healthcheck_post_serialize(
|
|
432
|
+
client_id=client_id,
|
|
433
|
+
request=request,
|
|
434
|
+
_request_auth=_request_auth,
|
|
435
|
+
_content_type=_content_type,
|
|
436
|
+
_headers=_headers,
|
|
437
|
+
_host_index=_host_index
|
|
438
|
+
)
|
|
439
|
+
|
|
440
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
441
|
+
'200': "ClientHealthcheckResponse",
|
|
442
|
+
'400': "ClientHealthcheckResponse",
|
|
443
|
+
'503': "ClientHealthcheckResponse",
|
|
444
|
+
}
|
|
445
|
+
response_data = self.api_client.call_api(
|
|
446
|
+
*_param,
|
|
447
|
+
_request_timeout=_request_timeout
|
|
448
|
+
)
|
|
449
|
+
response_data.read()
|
|
450
|
+
return self.api_client.response_deserialize(
|
|
451
|
+
response_data=response_data,
|
|
452
|
+
response_types_map=_response_types_map,
|
|
453
|
+
)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
@validate_call
|
|
457
|
+
def api_v1_clients_client_id_healthcheck_post_without_preload_content(
|
|
458
|
+
self,
|
|
459
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
460
|
+
request: Annotated[ClientHealthcheckCreateRequest, Field(description="Healthcheck data")],
|
|
461
|
+
_request_timeout: Union[
|
|
462
|
+
None,
|
|
463
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
464
|
+
Tuple[
|
|
465
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
466
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
467
|
+
]
|
|
468
|
+
] = None,
|
|
469
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
470
|
+
_content_type: Optional[StrictStr] = None,
|
|
471
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
472
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
473
|
+
) -> RESTResponseType:
|
|
474
|
+
"""Create healthcheck entry
|
|
475
|
+
|
|
476
|
+
Create a new client healthcheck for a specific date/hour
|
|
477
|
+
|
|
478
|
+
:param client_id: Client ID (required)
|
|
479
|
+
:type client_id: str
|
|
480
|
+
:param request: Healthcheck data (required)
|
|
481
|
+
:type request: ClientHealthcheckCreateRequest
|
|
482
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
483
|
+
number provided, it will be total request
|
|
484
|
+
timeout. It can also be a pair (tuple) of
|
|
485
|
+
(connection, read) timeouts.
|
|
486
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
487
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
488
|
+
request; this effectively ignores the
|
|
489
|
+
authentication in the spec for a single request.
|
|
490
|
+
:type _request_auth: dict, optional
|
|
491
|
+
:param _content_type: force content-type for the request.
|
|
492
|
+
:type _content_type: str, Optional
|
|
493
|
+
:param _headers: set to override the headers for a single
|
|
494
|
+
request; this effectively ignores the headers
|
|
495
|
+
in the spec for a single request.
|
|
496
|
+
:type _headers: dict, optional
|
|
497
|
+
:param _host_index: set to override the host_index for a single
|
|
498
|
+
request; this effectively ignores the host_index
|
|
499
|
+
in the spec for a single request.
|
|
500
|
+
:type _host_index: int, optional
|
|
501
|
+
:return: Returns the result object.
|
|
502
|
+
""" # noqa: E501
|
|
503
|
+
|
|
504
|
+
_param = self._api_v1_clients_client_id_healthcheck_post_serialize(
|
|
505
|
+
client_id=client_id,
|
|
506
|
+
request=request,
|
|
507
|
+
_request_auth=_request_auth,
|
|
508
|
+
_content_type=_content_type,
|
|
509
|
+
_headers=_headers,
|
|
510
|
+
_host_index=_host_index
|
|
511
|
+
)
|
|
512
|
+
|
|
513
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
514
|
+
'200': "ClientHealthcheckResponse",
|
|
515
|
+
'400': "ClientHealthcheckResponse",
|
|
516
|
+
'503': "ClientHealthcheckResponse",
|
|
517
|
+
}
|
|
518
|
+
response_data = self.api_client.call_api(
|
|
519
|
+
*_param,
|
|
520
|
+
_request_timeout=_request_timeout
|
|
521
|
+
)
|
|
522
|
+
return response_data.response
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
def _api_v1_clients_client_id_healthcheck_post_serialize(
|
|
526
|
+
self,
|
|
527
|
+
client_id,
|
|
528
|
+
request,
|
|
529
|
+
_request_auth,
|
|
530
|
+
_content_type,
|
|
531
|
+
_headers,
|
|
532
|
+
_host_index,
|
|
533
|
+
) -> RequestSerialized:
|
|
534
|
+
|
|
535
|
+
_host = None
|
|
536
|
+
|
|
537
|
+
_collection_formats: Dict[str, str] = {
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
_path_params: Dict[str, str] = {}
|
|
541
|
+
_query_params: List[Tuple[str, str]] = []
|
|
542
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
543
|
+
_form_params: List[Tuple[str, str]] = []
|
|
544
|
+
_files: Dict[
|
|
545
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
546
|
+
] = {}
|
|
547
|
+
_body_params: Optional[bytes] = None
|
|
548
|
+
|
|
549
|
+
# process the path parameters
|
|
550
|
+
if client_id is not None:
|
|
551
|
+
_path_params['client_id'] = client_id
|
|
552
|
+
# process the query parameters
|
|
553
|
+
# process the header parameters
|
|
554
|
+
# process the form parameters
|
|
555
|
+
# process the body parameter
|
|
556
|
+
if request is not None:
|
|
557
|
+
_body_params = request
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
# set the HTTP header `Accept`
|
|
561
|
+
if 'Accept' not in _header_params:
|
|
562
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
563
|
+
[
|
|
564
|
+
'application/json'
|
|
565
|
+
]
|
|
566
|
+
)
|
|
567
|
+
|
|
568
|
+
# set the HTTP header `Content-Type`
|
|
569
|
+
if _content_type:
|
|
570
|
+
_header_params['Content-Type'] = _content_type
|
|
571
|
+
else:
|
|
572
|
+
_default_content_type = (
|
|
573
|
+
self.api_client.select_header_content_type(
|
|
574
|
+
[
|
|
575
|
+
'application/json'
|
|
576
|
+
]
|
|
577
|
+
)
|
|
578
|
+
)
|
|
579
|
+
if _default_content_type is not None:
|
|
580
|
+
_header_params['Content-Type'] = _default_content_type
|
|
581
|
+
|
|
582
|
+
# authentication setting
|
|
583
|
+
_auth_settings: List[str] = [
|
|
584
|
+
'TokenAuth',
|
|
585
|
+
'ApiKeyAuth'
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
return self.api_client.param_serialize(
|
|
589
|
+
method='POST',
|
|
590
|
+
resource_path='/api/v1/clients/{client_id}/healthcheck',
|
|
591
|
+
path_params=_path_params,
|
|
592
|
+
query_params=_query_params,
|
|
593
|
+
header_params=_header_params,
|
|
594
|
+
body=_body_params,
|
|
595
|
+
post_params=_form_params,
|
|
596
|
+
files=_files,
|
|
597
|
+
auth_settings=_auth_settings,
|
|
598
|
+
collection_formats=_collection_formats,
|
|
599
|
+
_host=_host,
|
|
600
|
+
_request_auth=_request_auth
|
|
601
|
+
)
|
|
602
|
+
|
|
603
|
+
|
{neurograph_core-1.202512042142 → neurograph_core-1.202512060307}/neurograph/v1/models/__init__.py
RENAMED
|
@@ -30,6 +30,8 @@ from neurograph.v1.models.client_client import ClientClient
|
|
|
30
30
|
from neurograph.v1.models.client_delete_metadata_request import ClientDeleteMetadataRequest
|
|
31
31
|
from neurograph.v1.models.client_get_detail_response import ClientGetDetailResponse
|
|
32
32
|
from neurograph.v1.models.client_get_many_response import ClientGetManyResponse
|
|
33
|
+
from neurograph.v1.models.client_healthcheck_create_request import ClientHealthcheckCreateRequest
|
|
34
|
+
from neurograph.v1.models.client_healthcheck_response import ClientHealthcheckResponse
|
|
33
35
|
from neurograph.v1.models.client_info import ClientInfo
|
|
34
36
|
from neurograph.v1.models.client_kpi import ClientKpi
|
|
35
37
|
from neurograph.v1.models.client_match_criteria_row_in_db import ClientMatchCriteriaRowInDb
|