neurograph-core 1.202508112256__tar.gz → 1.202508152055__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.202508112256 → neurograph_core-1.202508152055}/PKG-INFO +2 -2
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/README.md +1 -1
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/__init__.py +24 -16
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/__init__.py +0 -1
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/authentication_api.py +36 -8
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/client_api.py +9 -3
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/client_metadata_api.py +287 -1
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/lookup_api.py +2 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/organization_api.py +9 -272
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/organization_metadata_api.py +3 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/persona_api.py +1249 -135
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/tasks_api.py +1 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/workbench_api.py +3 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/__init__.py +12 -7
- neurograph_core-1.202508152055/neurograph/v1/models/auth_test_service_token_request.py +87 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_detail_response.py +1 -7
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_set_workbench_request.py +10 -10
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_set_workbench_response.py +12 -10
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_workbench_config.py +12 -10
- neurograph_core-1.202508152055/neurograph/v1/models/personas_delete_many_persona_instances_request.py +87 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_kpi.py +93 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona.py +171 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_factor.py +1 -3
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_factor_create_response.py +3 -3
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_factor_resp.py +101 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_insight.py +93 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_instances_delete_response.py +89 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_instances_response.py +103 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_personality_trait.py +93 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_seed_get_many_response.py +105 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_seeds_delete_request.py +87 -0
- neurograph_core-1.202508152055/neurograph/v1/models/personas_persona_seeds_delete_response.py +89 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph_core.egg-info/PKG-INFO +2 -2
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph_core.egg-info/SOURCES.txt +24 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/pyproject.toml +1 -1
- neurograph_core-1.202508152055/test/test_auth_test_service_token_request.py +51 -0
- neurograph_core-1.202508152055/test/test_personas_delete_many_persona_instances_request.py +53 -0
- neurograph_core-1.202508152055/test/test_personas_kpi.py +54 -0
- neurograph_core-1.202508152055/test/test_personas_persona.py +106 -0
- neurograph_core-1.202508152055/test/test_personas_persona_factor_resp.py +58 -0
- neurograph_core-1.202508152055/test/test_personas_persona_insight.py +54 -0
- neurograph_core-1.202508152055/test/test_personas_persona_instances_delete_response.py +54 -0
- neurograph_core-1.202508152055/test/test_personas_persona_instances_response.py +113 -0
- neurograph_core-1.202508152055/test/test_personas_persona_personality_trait.py +56 -0
- neurograph_core-1.202508152055/test/test_personas_persona_seed_get_many_response.py +64 -0
- neurograph_core-1.202508152055/test/test_personas_persona_seeds_delete_request.py +53 -0
- neurograph_core-1.202508152055/test/test_personas_persona_seeds_delete_response.py +54 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/__init__.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/atlas_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/system_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api_client.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/configuration.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/exceptions.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/atlas_atlas_version.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/atlas_atlas_version_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/atlas_atlas_version_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/atlas_atlas_version_upsert_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/auth_service_token_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/auth_test_service_token_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/auth_test_token_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_creat_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_get_detail_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_get_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_metadata_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_personas_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_url_upsert_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_url_upsert_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_client_urls_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_delete_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_kpi.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_metadata.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_persona.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_persona_factor.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_persona_insight.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_persona_personality_trait.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/client_query.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/db_client_url.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/db_persona_factor_create_params.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/lookup_language.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/lookup_lookup_language_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/lookup_lookup_state_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/lookup_state.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/lookup_state_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_atlas_config.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_brand_detail_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_brand_upsert_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_delete_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_delete_metadata_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_metadata.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_brand.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_get_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_metadata_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_set_atlas_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_set_atlas_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/organizations_organization_update_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_match_criteria_row.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_match_criteria_row_in.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_factor_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_insight_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_insight_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_instance_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_instance_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_kpi_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_kpi_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_kpi_req.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_kpi_resp.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_match_criteria_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_match_criteria_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_seed_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_seed_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_trait_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_persona_trait_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_personality_trait_in.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/personas_personality_trait_out.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/tasks_sync_from_firebase_result.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/workbench_workbench_url_check_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/workbench_workbench_url_check_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/workbench_workbench_version.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/workbench_workbench_version_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/workbench_workbench_version_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/models/workbench_workbench_version_upsert_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/py.typed +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/rest.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph_core.egg-info/dependency_links.txt +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph_core.egg-info/requires.txt +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph_core.egg-info/top_level.txt +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/setup.cfg +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/setup.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_atlas_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_atlas_atlas_version.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_atlas_atlas_version_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_atlas_atlas_version_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_atlas_atlas_version_upsert_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_auth_service_token_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_auth_test_service_token_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_auth_test_token_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_authentication_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_creat_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_get_detail_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_get_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_metadata_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_personas_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_url_upsert_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_url_upsert_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_client_urls_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_delete_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_kpi.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_metadata.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_metadata_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_persona.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_persona_factor.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_persona_insight.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_persona_personality_trait.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_client_query.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_db_client_url.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_db_persona_factor_create_params.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_lookup_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_lookup_language.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_lookup_lookup_language_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_lookup_lookup_state_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_lookup_state.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_lookup_state_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organization_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organization_metadata_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_atlas_config.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_brand_detail_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_brand_upsert_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_delete_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_delete_metadata_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_metadata.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_brand.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_detail_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_get_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_metadata_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_metadata_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_set_atlas_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_set_atlas_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_set_workbench_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_set_workbench_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_organization_update_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_organizations_workbench_config.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_persona_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_match_criteria_row.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_match_criteria_row_in.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_factor.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_factor_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_factor_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_insight_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_insight_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_instance_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_instance_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_kpi_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_kpi_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_kpi_req.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_kpi_resp.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_match_criteria_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_match_criteria_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_seed_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_seed_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_trait_create_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_persona_trait_create_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_personality_trait_in.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_personas_personality_trait_out.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_system_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_tasks_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_tasks_sync_from_firebase_result.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_time_duration.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_workbench_api.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_workbench_workbench_url_check_request.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_workbench_workbench_url_check_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_workbench_workbench_version.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_workbench_workbench_version_many_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_workbench_workbench_version_response.py +0 -0
- {neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/test/test_workbench_workbench_version_upsert_request.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: neurograph-core
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.202508152055
|
|
4
4
|
Summary: Neurograph Core
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: Neurograph Development Team
|
|
@@ -37,7 +37,7 @@ This guide covers local installation, authentication, and your first API call.
|
|
|
37
37
|
|
|
38
38
|
1. Activate your Python 3.12 virtual environment
|
|
39
39
|
|
|
40
|
-
2. Install the SDK
|
|
40
|
+
2. Install the SDK
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
43
|
pip install neurograph-core
|
|
@@ -18,7 +18,6 @@ __version__ = "1.0.0"
|
|
|
18
18
|
|
|
19
19
|
# Define package exports
|
|
20
20
|
__all__ = [
|
|
21
|
-
"AtlasApi",
|
|
22
21
|
"AuthenticationApi",
|
|
23
22
|
"ClientApi",
|
|
24
23
|
"ClientMetadataApi",
|
|
@@ -38,11 +37,8 @@ __all__ = [
|
|
|
38
37
|
"ApiKeyError",
|
|
39
38
|
"ApiAttributeError",
|
|
40
39
|
"ApiException",
|
|
41
|
-
"AtlasAtlasVersion",
|
|
42
|
-
"AtlasAtlasVersionManyResponse",
|
|
43
|
-
"AtlasAtlasVersionResponse",
|
|
44
|
-
"AtlasAtlasVersionUpsertRequest",
|
|
45
40
|
"AuthServiceTokenRequest",
|
|
41
|
+
"AuthTestServiceTokenRequest",
|
|
46
42
|
"AuthTestServiceTokenResponse",
|
|
47
43
|
"AuthTestTokenResponse",
|
|
48
44
|
"ClientClient",
|
|
@@ -71,7 +67,6 @@ __all__ = [
|
|
|
71
67
|
"LookupLookupStateResponse",
|
|
72
68
|
"LookupState",
|
|
73
69
|
"LookupStateResponse",
|
|
74
|
-
"OrganizationsAtlasConfig",
|
|
75
70
|
"OrganizationsBrandDetailResponse",
|
|
76
71
|
"OrganizationsBrandUpsertRequest",
|
|
77
72
|
"OrganizationsDeleteMetadataRequest",
|
|
@@ -84,29 +79,38 @@ __all__ = [
|
|
|
84
79
|
"OrganizationsOrganizationGetManyResponse",
|
|
85
80
|
"OrganizationsOrganizationMetadataRequest",
|
|
86
81
|
"OrganizationsOrganizationMetadataResponse",
|
|
87
|
-
"OrganizationsOrganizationSetAtlasRequest",
|
|
88
|
-
"OrganizationsOrganizationSetAtlasResponse",
|
|
89
82
|
"OrganizationsOrganizationSetWorkbenchRequest",
|
|
90
83
|
"OrganizationsOrganizationSetWorkbenchResponse",
|
|
91
84
|
"OrganizationsOrganizationUpdateRequest",
|
|
92
85
|
"OrganizationsWorkbenchConfig",
|
|
86
|
+
"PersonasDeleteManyPersonaInstancesRequest",
|
|
87
|
+
"PersonasKpi",
|
|
93
88
|
"PersonasMatchCriteriaRow",
|
|
94
89
|
"PersonasMatchCriteriaRowIn",
|
|
90
|
+
"PersonasPersona",
|
|
95
91
|
"PersonasPersonaFactor",
|
|
96
92
|
"PersonasPersonaFactorCreateRequest",
|
|
97
93
|
"PersonasPersonaFactorCreateResponse",
|
|
94
|
+
"PersonasPersonaFactorResp",
|
|
95
|
+
"PersonasPersonaInsight",
|
|
98
96
|
"PersonasPersonaInsightCreateRequest",
|
|
99
97
|
"PersonasPersonaInsightCreateResponse",
|
|
100
98
|
"PersonasPersonaInstanceCreateRequest",
|
|
101
99
|
"PersonasPersonaInstanceCreateResponse",
|
|
100
|
+
"PersonasPersonaInstancesDeleteResponse",
|
|
101
|
+
"PersonasPersonaInstancesResponse",
|
|
102
102
|
"PersonasPersonaKpiCreateRequest",
|
|
103
103
|
"PersonasPersonaKpiCreateResponse",
|
|
104
104
|
"PersonasPersonaKpiReq",
|
|
105
105
|
"PersonasPersonaKpiResp",
|
|
106
106
|
"PersonasPersonaMatchCriteriaRequest",
|
|
107
107
|
"PersonasPersonaMatchCriteriaResponse",
|
|
108
|
+
"PersonasPersonaPersonalityTrait",
|
|
108
109
|
"PersonasPersonaSeedCreateRequest",
|
|
109
110
|
"PersonasPersonaSeedCreateResponse",
|
|
111
|
+
"PersonasPersonaSeedGetManyResponse",
|
|
112
|
+
"PersonasPersonaSeedsDeleteRequest",
|
|
113
|
+
"PersonasPersonaSeedsDeleteResponse",
|
|
110
114
|
"PersonasPersonaTraitCreateRequest",
|
|
111
115
|
"PersonasPersonaTraitCreateResponse",
|
|
112
116
|
"PersonasPersonalityTraitIn",
|
|
@@ -121,7 +125,6 @@ __all__ = [
|
|
|
121
125
|
]
|
|
122
126
|
|
|
123
127
|
# import apis into sdk package
|
|
124
|
-
from neurograph.v1.api.atlas_api import AtlasApi as AtlasApi
|
|
125
128
|
from neurograph.v1.api.authentication_api import AuthenticationApi as AuthenticationApi
|
|
126
129
|
from neurograph.v1.api.client_api import ClientApi as ClientApi
|
|
127
130
|
from neurograph.v1.api.client_metadata_api import ClientMetadataApi as ClientMetadataApi
|
|
@@ -145,11 +148,8 @@ from neurograph.v1.exceptions import ApiAttributeError as ApiAttributeError
|
|
|
145
148
|
from neurograph.v1.exceptions import ApiException as ApiException
|
|
146
149
|
|
|
147
150
|
# import models into sdk package
|
|
148
|
-
from neurograph.v1.models.atlas_atlas_version import AtlasAtlasVersion as AtlasAtlasVersion
|
|
149
|
-
from neurograph.v1.models.atlas_atlas_version_many_response import AtlasAtlasVersionManyResponse as AtlasAtlasVersionManyResponse
|
|
150
|
-
from neurograph.v1.models.atlas_atlas_version_response import AtlasAtlasVersionResponse as AtlasAtlasVersionResponse
|
|
151
|
-
from neurograph.v1.models.atlas_atlas_version_upsert_request import AtlasAtlasVersionUpsertRequest as AtlasAtlasVersionUpsertRequest
|
|
152
151
|
from neurograph.v1.models.auth_service_token_request import AuthServiceTokenRequest as AuthServiceTokenRequest
|
|
152
|
+
from neurograph.v1.models.auth_test_service_token_request import AuthTestServiceTokenRequest as AuthTestServiceTokenRequest
|
|
153
153
|
from neurograph.v1.models.auth_test_service_token_response import AuthTestServiceTokenResponse as AuthTestServiceTokenResponse
|
|
154
154
|
from neurograph.v1.models.auth_test_token_response import AuthTestTokenResponse as AuthTestTokenResponse
|
|
155
155
|
from neurograph.v1.models.client_client import ClientClient as ClientClient
|
|
@@ -178,7 +178,6 @@ from neurograph.v1.models.lookup_lookup_language_response import LookupLookupLan
|
|
|
178
178
|
from neurograph.v1.models.lookup_lookup_state_response import LookupLookupStateResponse as LookupLookupStateResponse
|
|
179
179
|
from neurograph.v1.models.lookup_state import LookupState as LookupState
|
|
180
180
|
from neurograph.v1.models.lookup_state_response import LookupStateResponse as LookupStateResponse
|
|
181
|
-
from neurograph.v1.models.organizations_atlas_config import OrganizationsAtlasConfig as OrganizationsAtlasConfig
|
|
182
181
|
from neurograph.v1.models.organizations_brand_detail_response import OrganizationsBrandDetailResponse as OrganizationsBrandDetailResponse
|
|
183
182
|
from neurograph.v1.models.organizations_brand_upsert_request import OrganizationsBrandUpsertRequest as OrganizationsBrandUpsertRequest
|
|
184
183
|
from neurograph.v1.models.organizations_delete_metadata_request import OrganizationsDeleteMetadataRequest as OrganizationsDeleteMetadataRequest
|
|
@@ -191,29 +190,38 @@ from neurograph.v1.models.organizations_organization_detail_response import Orga
|
|
|
191
190
|
from neurograph.v1.models.organizations_organization_get_many_response import OrganizationsOrganizationGetManyResponse as OrganizationsOrganizationGetManyResponse
|
|
192
191
|
from neurograph.v1.models.organizations_organization_metadata_request import OrganizationsOrganizationMetadataRequest as OrganizationsOrganizationMetadataRequest
|
|
193
192
|
from neurograph.v1.models.organizations_organization_metadata_response import OrganizationsOrganizationMetadataResponse as OrganizationsOrganizationMetadataResponse
|
|
194
|
-
from neurograph.v1.models.organizations_organization_set_atlas_request import OrganizationsOrganizationSetAtlasRequest as OrganizationsOrganizationSetAtlasRequest
|
|
195
|
-
from neurograph.v1.models.organizations_organization_set_atlas_response import OrganizationsOrganizationSetAtlasResponse as OrganizationsOrganizationSetAtlasResponse
|
|
196
193
|
from neurograph.v1.models.organizations_organization_set_workbench_request import OrganizationsOrganizationSetWorkbenchRequest as OrganizationsOrganizationSetWorkbenchRequest
|
|
197
194
|
from neurograph.v1.models.organizations_organization_set_workbench_response import OrganizationsOrganizationSetWorkbenchResponse as OrganizationsOrganizationSetWorkbenchResponse
|
|
198
195
|
from neurograph.v1.models.organizations_organization_update_request import OrganizationsOrganizationUpdateRequest as OrganizationsOrganizationUpdateRequest
|
|
199
196
|
from neurograph.v1.models.organizations_workbench_config import OrganizationsWorkbenchConfig as OrganizationsWorkbenchConfig
|
|
197
|
+
from neurograph.v1.models.personas_delete_many_persona_instances_request import PersonasDeleteManyPersonaInstancesRequest as PersonasDeleteManyPersonaInstancesRequest
|
|
198
|
+
from neurograph.v1.models.personas_kpi import PersonasKpi as PersonasKpi
|
|
200
199
|
from neurograph.v1.models.personas_match_criteria_row import PersonasMatchCriteriaRow as PersonasMatchCriteriaRow
|
|
201
200
|
from neurograph.v1.models.personas_match_criteria_row_in import PersonasMatchCriteriaRowIn as PersonasMatchCriteriaRowIn
|
|
201
|
+
from neurograph.v1.models.personas_persona import PersonasPersona as PersonasPersona
|
|
202
202
|
from neurograph.v1.models.personas_persona_factor import PersonasPersonaFactor as PersonasPersonaFactor
|
|
203
203
|
from neurograph.v1.models.personas_persona_factor_create_request import PersonasPersonaFactorCreateRequest as PersonasPersonaFactorCreateRequest
|
|
204
204
|
from neurograph.v1.models.personas_persona_factor_create_response import PersonasPersonaFactorCreateResponse as PersonasPersonaFactorCreateResponse
|
|
205
|
+
from neurograph.v1.models.personas_persona_factor_resp import PersonasPersonaFactorResp as PersonasPersonaFactorResp
|
|
206
|
+
from neurograph.v1.models.personas_persona_insight import PersonasPersonaInsight as PersonasPersonaInsight
|
|
205
207
|
from neurograph.v1.models.personas_persona_insight_create_request import PersonasPersonaInsightCreateRequest as PersonasPersonaInsightCreateRequest
|
|
206
208
|
from neurograph.v1.models.personas_persona_insight_create_response import PersonasPersonaInsightCreateResponse as PersonasPersonaInsightCreateResponse
|
|
207
209
|
from neurograph.v1.models.personas_persona_instance_create_request import PersonasPersonaInstanceCreateRequest as PersonasPersonaInstanceCreateRequest
|
|
208
210
|
from neurograph.v1.models.personas_persona_instance_create_response import PersonasPersonaInstanceCreateResponse as PersonasPersonaInstanceCreateResponse
|
|
211
|
+
from neurograph.v1.models.personas_persona_instances_delete_response import PersonasPersonaInstancesDeleteResponse as PersonasPersonaInstancesDeleteResponse
|
|
212
|
+
from neurograph.v1.models.personas_persona_instances_response import PersonasPersonaInstancesResponse as PersonasPersonaInstancesResponse
|
|
209
213
|
from neurograph.v1.models.personas_persona_kpi_create_request import PersonasPersonaKpiCreateRequest as PersonasPersonaKpiCreateRequest
|
|
210
214
|
from neurograph.v1.models.personas_persona_kpi_create_response import PersonasPersonaKpiCreateResponse as PersonasPersonaKpiCreateResponse
|
|
211
215
|
from neurograph.v1.models.personas_persona_kpi_req import PersonasPersonaKpiReq as PersonasPersonaKpiReq
|
|
212
216
|
from neurograph.v1.models.personas_persona_kpi_resp import PersonasPersonaKpiResp as PersonasPersonaKpiResp
|
|
213
217
|
from neurograph.v1.models.personas_persona_match_criteria_request import PersonasPersonaMatchCriteriaRequest as PersonasPersonaMatchCriteriaRequest
|
|
214
218
|
from neurograph.v1.models.personas_persona_match_criteria_response import PersonasPersonaMatchCriteriaResponse as PersonasPersonaMatchCriteriaResponse
|
|
219
|
+
from neurograph.v1.models.personas_persona_personality_trait import PersonasPersonaPersonalityTrait as PersonasPersonaPersonalityTrait
|
|
215
220
|
from neurograph.v1.models.personas_persona_seed_create_request import PersonasPersonaSeedCreateRequest as PersonasPersonaSeedCreateRequest
|
|
216
221
|
from neurograph.v1.models.personas_persona_seed_create_response import PersonasPersonaSeedCreateResponse as PersonasPersonaSeedCreateResponse
|
|
222
|
+
from neurograph.v1.models.personas_persona_seed_get_many_response import PersonasPersonaSeedGetManyResponse as PersonasPersonaSeedGetManyResponse
|
|
223
|
+
from neurograph.v1.models.personas_persona_seeds_delete_request import PersonasPersonaSeedsDeleteRequest as PersonasPersonaSeedsDeleteRequest
|
|
224
|
+
from neurograph.v1.models.personas_persona_seeds_delete_response import PersonasPersonaSeedsDeleteResponse as PersonasPersonaSeedsDeleteResponse
|
|
217
225
|
from neurograph.v1.models.personas_persona_trait_create_request import PersonasPersonaTraitCreateRequest as PersonasPersonaTraitCreateRequest
|
|
218
226
|
from neurograph.v1.models.personas_persona_trait_create_response import PersonasPersonaTraitCreateResponse as PersonasPersonaTraitCreateResponse
|
|
219
227
|
from neurograph.v1.models.personas_personality_trait_in import PersonasPersonalityTraitIn as PersonasPersonalityTraitIn
|
{neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/__init__.py
RENAMED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# flake8: noqa
|
|
2
2
|
|
|
3
3
|
# import apis into api package
|
|
4
|
-
from neurograph.v1.api.atlas_api import AtlasApi
|
|
5
4
|
from neurograph.v1.api.authentication_api import AuthenticationApi
|
|
6
5
|
from neurograph.v1.api.client_api import ClientApi
|
|
7
6
|
from neurograph.v1.api.client_metadata_api import ClientMetadataApi
|
|
@@ -19,6 +19,7 @@ from typing_extensions import Annotated
|
|
|
19
19
|
from pydantic import Field
|
|
20
20
|
from typing_extensions import Annotated
|
|
21
21
|
from neurograph.v1.models.auth_service_token_request import AuthServiceTokenRequest
|
|
22
|
+
from neurograph.v1.models.auth_test_service_token_request import AuthTestServiceTokenRequest
|
|
22
23
|
from neurograph.v1.models.auth_test_service_token_response import AuthTestServiceTokenResponse
|
|
23
24
|
from neurograph.v1.models.auth_test_token_response import AuthTestTokenResponse
|
|
24
25
|
|
|
@@ -43,6 +44,7 @@ class AuthenticationApi:
|
|
|
43
44
|
@validate_call
|
|
44
45
|
def api_v1_auth_service_check_token_post(
|
|
45
46
|
self,
|
|
47
|
+
request: Annotated[AuthTestServiceTokenRequest, Field(description="Body")],
|
|
46
48
|
_request_timeout: Union[
|
|
47
49
|
None,
|
|
48
50
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -56,10 +58,12 @@ class AuthenticationApi:
|
|
|
56
58
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
57
59
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
58
60
|
) -> AuthTestServiceTokenResponse:
|
|
59
|
-
"""Test a
|
|
61
|
+
"""Test a Service token
|
|
60
62
|
|
|
61
|
-
Test a
|
|
63
|
+
Test a Service token
|
|
62
64
|
|
|
65
|
+
:param request: Body (required)
|
|
66
|
+
:type request: AuthTestServiceTokenRequest
|
|
63
67
|
:param _request_timeout: timeout setting for this request. If one
|
|
64
68
|
number provided, it will be total request
|
|
65
69
|
timeout. It can also be a pair (tuple) of
|
|
@@ -83,6 +87,7 @@ class AuthenticationApi:
|
|
|
83
87
|
""" # noqa: E501
|
|
84
88
|
|
|
85
89
|
_param = self._api_v1_auth_service_check_token_post_serialize(
|
|
90
|
+
request=request,
|
|
86
91
|
_request_auth=_request_auth,
|
|
87
92
|
_content_type=_content_type,
|
|
88
93
|
_headers=_headers,
|
|
@@ -109,6 +114,7 @@ class AuthenticationApi:
|
|
|
109
114
|
@validate_call
|
|
110
115
|
def api_v1_auth_service_check_token_post_with_http_info(
|
|
111
116
|
self,
|
|
117
|
+
request: Annotated[AuthTestServiceTokenRequest, Field(description="Body")],
|
|
112
118
|
_request_timeout: Union[
|
|
113
119
|
None,
|
|
114
120
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -122,10 +128,12 @@ class AuthenticationApi:
|
|
|
122
128
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
123
129
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
124
130
|
) -> ApiResponse[AuthTestServiceTokenResponse]:
|
|
125
|
-
"""Test a
|
|
131
|
+
"""Test a Service token
|
|
126
132
|
|
|
127
|
-
Test a
|
|
133
|
+
Test a Service token
|
|
128
134
|
|
|
135
|
+
:param request: Body (required)
|
|
136
|
+
:type request: AuthTestServiceTokenRequest
|
|
129
137
|
:param _request_timeout: timeout setting for this request. If one
|
|
130
138
|
number provided, it will be total request
|
|
131
139
|
timeout. It can also be a pair (tuple) of
|
|
@@ -149,6 +157,7 @@ class AuthenticationApi:
|
|
|
149
157
|
""" # noqa: E501
|
|
150
158
|
|
|
151
159
|
_param = self._api_v1_auth_service_check_token_post_serialize(
|
|
160
|
+
request=request,
|
|
152
161
|
_request_auth=_request_auth,
|
|
153
162
|
_content_type=_content_type,
|
|
154
163
|
_headers=_headers,
|
|
@@ -175,6 +184,7 @@ class AuthenticationApi:
|
|
|
175
184
|
@validate_call
|
|
176
185
|
def api_v1_auth_service_check_token_post_without_preload_content(
|
|
177
186
|
self,
|
|
187
|
+
request: Annotated[AuthTestServiceTokenRequest, Field(description="Body")],
|
|
178
188
|
_request_timeout: Union[
|
|
179
189
|
None,
|
|
180
190
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -188,10 +198,12 @@ class AuthenticationApi:
|
|
|
188
198
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
189
199
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
190
200
|
) -> RESTResponseType:
|
|
191
|
-
"""Test a
|
|
201
|
+
"""Test a Service token
|
|
192
202
|
|
|
193
|
-
Test a
|
|
203
|
+
Test a Service token
|
|
194
204
|
|
|
205
|
+
:param request: Body (required)
|
|
206
|
+
:type request: AuthTestServiceTokenRequest
|
|
195
207
|
:param _request_timeout: timeout setting for this request. If one
|
|
196
208
|
number provided, it will be total request
|
|
197
209
|
timeout. It can also be a pair (tuple) of
|
|
@@ -215,6 +227,7 @@ class AuthenticationApi:
|
|
|
215
227
|
""" # noqa: E501
|
|
216
228
|
|
|
217
229
|
_param = self._api_v1_auth_service_check_token_post_serialize(
|
|
230
|
+
request=request,
|
|
218
231
|
_request_auth=_request_auth,
|
|
219
232
|
_content_type=_content_type,
|
|
220
233
|
_headers=_headers,
|
|
@@ -236,6 +249,7 @@ class AuthenticationApi:
|
|
|
236
249
|
|
|
237
250
|
def _api_v1_auth_service_check_token_post_serialize(
|
|
238
251
|
self,
|
|
252
|
+
request,
|
|
239
253
|
_request_auth,
|
|
240
254
|
_content_type,
|
|
241
255
|
_headers,
|
|
@@ -261,6 +275,8 @@ class AuthenticationApi:
|
|
|
261
275
|
# process the header parameters
|
|
262
276
|
# process the form parameters
|
|
263
277
|
# process the body parameter
|
|
278
|
+
if request is not None:
|
|
279
|
+
_body_params = request
|
|
264
280
|
|
|
265
281
|
|
|
266
282
|
# set the HTTP header `Accept`
|
|
@@ -271,15 +287,27 @@ class AuthenticationApi:
|
|
|
271
287
|
]
|
|
272
288
|
)
|
|
273
289
|
|
|
290
|
+
# set the HTTP header `Content-Type`
|
|
291
|
+
if _content_type:
|
|
292
|
+
_header_params['Content-Type'] = _content_type
|
|
293
|
+
else:
|
|
294
|
+
_default_content_type = (
|
|
295
|
+
self.api_client.select_header_content_type(
|
|
296
|
+
[
|
|
297
|
+
'application/json'
|
|
298
|
+
]
|
|
299
|
+
)
|
|
300
|
+
)
|
|
301
|
+
if _default_content_type is not None:
|
|
302
|
+
_header_params['Content-Type'] = _default_content_type
|
|
274
303
|
|
|
275
304
|
# authentication setting
|
|
276
305
|
_auth_settings: List[str] = [
|
|
277
|
-
'TokenAuth'
|
|
278
306
|
]
|
|
279
307
|
|
|
280
308
|
return self.api_client.param_serialize(
|
|
281
309
|
method='POST',
|
|
282
|
-
resource_path='/api/v1/auth/service/check-token
|
|
310
|
+
resource_path='/api/v1/auth/service/check-token',
|
|
283
311
|
path_params=_path_params,
|
|
284
312
|
query_params=_query_params,
|
|
285
313
|
header_params=_header_params,
|
{neurograph_core-1.202508112256 → neurograph_core-1.202508152055}/neurograph/v1/api/client_api.py
RENAMED
|
@@ -292,6 +292,7 @@ class ClientApi:
|
|
|
292
292
|
|
|
293
293
|
# authentication setting
|
|
294
294
|
_auth_settings: List[str] = [
|
|
295
|
+
'TokenAuth',
|
|
295
296
|
'ApiKeyAuth'
|
|
296
297
|
]
|
|
297
298
|
|
|
@@ -559,6 +560,7 @@ class ClientApi:
|
|
|
559
560
|
|
|
560
561
|
# authentication setting
|
|
561
562
|
_auth_settings: List[str] = [
|
|
563
|
+
'TokenAuth',
|
|
562
564
|
'ApiKeyAuth'
|
|
563
565
|
]
|
|
564
566
|
|
|
@@ -826,6 +828,7 @@ class ClientApi:
|
|
|
826
828
|
|
|
827
829
|
# authentication setting
|
|
828
830
|
_auth_settings: List[str] = [
|
|
831
|
+
'TokenAuth',
|
|
829
832
|
'ApiKeyAuth'
|
|
830
833
|
]
|
|
831
834
|
|
|
@@ -1093,6 +1096,7 @@ class ClientApi:
|
|
|
1093
1096
|
|
|
1094
1097
|
# authentication setting
|
|
1095
1098
|
_auth_settings: List[str] = [
|
|
1099
|
+
'TokenAuth',
|
|
1096
1100
|
'ApiKeyAuth'
|
|
1097
1101
|
]
|
|
1098
1102
|
|
|
@@ -1135,7 +1139,7 @@ class ClientApi:
|
|
|
1135
1139
|
) -> ClientClientGetManyResponse:
|
|
1136
1140
|
"""Get Clients
|
|
1137
1141
|
|
|
1138
|
-
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account
|
|
1142
|
+
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account OrgId (AccountId).
|
|
1139
1143
|
|
|
1140
1144
|
:param org_id: fitler by the Organization's ID
|
|
1141
1145
|
:type org_id: int
|
|
@@ -1212,7 +1216,7 @@ class ClientApi:
|
|
|
1212
1216
|
) -> ApiResponse[ClientClientGetManyResponse]:
|
|
1213
1217
|
"""Get Clients
|
|
1214
1218
|
|
|
1215
|
-
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account
|
|
1219
|
+
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account OrgId (AccountId).
|
|
1216
1220
|
|
|
1217
1221
|
:param org_id: fitler by the Organization's ID
|
|
1218
1222
|
:type org_id: int
|
|
@@ -1289,7 +1293,7 @@ class ClientApi:
|
|
|
1289
1293
|
) -> RESTResponseType:
|
|
1290
1294
|
"""Get Clients
|
|
1291
1295
|
|
|
1292
|
-
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account
|
|
1296
|
+
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account OrgId (AccountId).
|
|
1293
1297
|
|
|
1294
1298
|
:param org_id: fitler by the Organization's ID
|
|
1295
1299
|
:type org_id: int
|
|
@@ -1396,6 +1400,7 @@ class ClientApi:
|
|
|
1396
1400
|
|
|
1397
1401
|
# authentication setting
|
|
1398
1402
|
_auth_settings: List[str] = [
|
|
1403
|
+
'TokenAuth',
|
|
1399
1404
|
'ApiKeyAuth'
|
|
1400
1405
|
]
|
|
1401
1406
|
|
|
@@ -1663,6 +1668,7 @@ class ClientApi:
|
|
|
1663
1668
|
|
|
1664
1669
|
# authentication setting
|
|
1665
1670
|
_auth_settings: List[str] = [
|
|
1671
|
+
'TokenAuth',
|
|
1666
1672
|
'ApiKeyAuth'
|
|
1667
1673
|
]
|
|
1668
1674
|
|