neurograph-core 1.202508112256__py3-none-any.whl → 1.202508201827__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- neurograph/v1/__init__.py +38 -20
- neurograph/v1/api/__init__.py +1 -1
- neurograph/v1/api/authentication_api.py +36 -8
- neurograph/v1/api/client_api.py +62 -56
- neurograph/v1/api/client_metadata_api.py +305 -19
- neurograph/v1/api/dagster_api.py +306 -0
- neurograph/v1/api/lookup_api.py +2 -0
- neurograph/v1/api/organization_api.py +257 -252
- neurograph/v1/api/organization_metadata_api.py +22 -19
- neurograph/v1/api/persona_api.py +1249 -135
- neurograph/v1/api/tasks_api.py +1 -0
- neurograph/v1/api/workbench_api.py +6 -3
- neurograph/v1/models/__init__.py +18 -9
- neurograph/v1/models/auth_test_service_token_request.py +87 -0
- neurograph/v1/models/client_client.py +4 -4
- neurograph/v1/models/client_client_upsert_request.py +95 -0
- neurograph/v1/models/client_client_upsert_response.py +111 -0
- neurograph/v1/models/client_client_url_upsert_request.py +4 -4
- neurograph/v1/models/client_client_url_upsert_response.py +14 -7
- neurograph/v1/models/client_client_urls_response.py +1 -1
- neurograph/v1/models/client_kpi.py +1 -1
- neurograph/v1/models/client_metadata.py +3 -3
- neurograph/v1/models/client_persona.py +4 -4
- neurograph/v1/models/client_persona_factor.py +1 -1
- neurograph/v1/models/client_persona_personality_trait.py +1 -1
- neurograph/v1/models/client_query.py +1 -1
- neurograph/v1/models/dagster_dagster_log_create_request.py +93 -0
- neurograph/v1/models/dagster_dagster_log_create_response.py +91 -0
- neurograph/v1/models/db_client_url.py +14 -7
- neurograph/v1/models/db_persona_factor_create_params.py +1 -1
- neurograph/v1/models/organizations_brand_detail_response.py +2 -2
- neurograph/v1/models/organizations_brand_upsert_request.py +2 -2
- neurograph/v1/models/organizations_metadata.py +3 -3
- neurograph/v1/models/organizations_organization.py +1 -1
- neurograph/v1/models/organizations_organization_detail_response.py +2 -8
- neurograph/v1/models/organizations_organization_set_workbench_request.py +10 -10
- neurograph/v1/models/organizations_organization_set_workbench_response.py +13 -11
- neurograph/v1/models/organizations_organization_update_request.py +4 -4
- neurograph/v1/models/organizations_workbench_config.py +13 -11
- neurograph/v1/models/personas_delete_many_persona_instances_request.py +87 -0
- neurograph/v1/models/personas_kpi.py +93 -0
- neurograph/v1/models/personas_match_criteria_row.py +1 -1
- neurograph/v1/models/personas_match_criteria_row_in.py +2 -2
- neurograph/v1/models/personas_persona.py +171 -0
- neurograph/v1/models/personas_persona_factor.py +2 -4
- neurograph/v1/models/personas_persona_factor_create_response.py +3 -3
- neurograph/v1/models/personas_persona_factor_resp.py +101 -0
- neurograph/v1/models/personas_persona_insight.py +93 -0
- neurograph/v1/models/personas_persona_insight_create_request.py +2 -2
- neurograph/v1/models/personas_persona_insight_create_response.py +1 -1
- neurograph/v1/models/personas_persona_instance_create_request.py +1 -1
- neurograph/v1/models/personas_persona_instance_create_response.py +2 -2
- neurograph/v1/models/personas_persona_instances_delete_response.py +89 -0
- neurograph/v1/models/personas_persona_instances_response.py +103 -0
- neurograph/v1/models/personas_persona_kpi_req.py +2 -2
- neurograph/v1/models/personas_persona_kpi_resp.py +1 -1
- neurograph/v1/models/personas_persona_personality_trait.py +93 -0
- neurograph/v1/models/personas_persona_seed_create_request.py +2 -2
- neurograph/v1/models/personas_persona_seed_create_response.py +3 -3
- neurograph/v1/models/personas_persona_seed_get_many_response.py +105 -0
- neurograph/v1/models/personas_persona_seeds_delete_request.py +87 -0
- neurograph/v1/models/personas_persona_seeds_delete_response.py +89 -0
- neurograph/v1/models/personas_personality_trait_in.py +2 -2
- neurograph/v1/models/personas_personality_trait_out.py +1 -1
- neurograph/v1/models/pgtype_infinity_modifier.py +38 -0
- neurograph/v1/models/pgtype_timestamp.py +92 -0
- neurograph/v1/models/workbench_workbench_version.py +3 -3
- neurograph/v1/models/workbench_workbench_version_response.py +3 -3
- neurograph/v1/models/workbench_workbench_version_upsert_request.py +2 -2
- {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508201827.dist-info}/METADATA +2 -2
- {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508201827.dist-info}/RECORD +73 -54
- {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508201827.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202508112256.dist-info → neurograph_core-1.202508201827.dist-info}/top_level.txt +0 -0
|
@@ -16,7 +16,7 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
|
16
16
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
17
|
from typing_extensions import Annotated
|
|
18
18
|
|
|
19
|
-
from pydantic import Field,
|
|
19
|
+
from pydantic import Field, StrictStr
|
|
20
20
|
from typing_extensions import Annotated
|
|
21
21
|
from neurograph.v1.models.organizations_delete_metadata_request import OrganizationsDeleteMetadataRequest
|
|
22
22
|
from neurograph.v1.models.organizations_delete_metadata_response import OrganizationsDeleteMetadataResponse
|
|
@@ -44,7 +44,7 @@ class OrganizationMetadataApi:
|
|
|
44
44
|
@validate_call
|
|
45
45
|
def api_v1_organization_metadata_org_id_delete(
|
|
46
46
|
self,
|
|
47
|
-
org_id: Annotated[
|
|
47
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
48
48
|
request: Annotated[OrganizationsDeleteMetadataRequest, Field(description="Body")],
|
|
49
49
|
_request_timeout: Union[
|
|
50
50
|
None,
|
|
@@ -64,7 +64,7 @@ class OrganizationMetadataApi:
|
|
|
64
64
|
Delete's the given row and returns the remaining metadata
|
|
65
65
|
|
|
66
66
|
:param org_id: Organization ID (required)
|
|
67
|
-
:type org_id:
|
|
67
|
+
:type org_id: str
|
|
68
68
|
:param request: Body (required)
|
|
69
69
|
:type request: OrganizationsDeleteMetadataRequest
|
|
70
70
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -117,7 +117,7 @@ class OrganizationMetadataApi:
|
|
|
117
117
|
@validate_call
|
|
118
118
|
def api_v1_organization_metadata_org_id_delete_with_http_info(
|
|
119
119
|
self,
|
|
120
|
-
org_id: Annotated[
|
|
120
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
121
121
|
request: Annotated[OrganizationsDeleteMetadataRequest, Field(description="Body")],
|
|
122
122
|
_request_timeout: Union[
|
|
123
123
|
None,
|
|
@@ -137,7 +137,7 @@ class OrganizationMetadataApi:
|
|
|
137
137
|
Delete's the given row and returns the remaining metadata
|
|
138
138
|
|
|
139
139
|
:param org_id: Organization ID (required)
|
|
140
|
-
:type org_id:
|
|
140
|
+
:type org_id: str
|
|
141
141
|
:param request: Body (required)
|
|
142
142
|
:type request: OrganizationsDeleteMetadataRequest
|
|
143
143
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -190,7 +190,7 @@ class OrganizationMetadataApi:
|
|
|
190
190
|
@validate_call
|
|
191
191
|
def api_v1_organization_metadata_org_id_delete_without_preload_content(
|
|
192
192
|
self,
|
|
193
|
-
org_id: Annotated[
|
|
193
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
194
194
|
request: Annotated[OrganizationsDeleteMetadataRequest, Field(description="Body")],
|
|
195
195
|
_request_timeout: Union[
|
|
196
196
|
None,
|
|
@@ -210,7 +210,7 @@ class OrganizationMetadataApi:
|
|
|
210
210
|
Delete's the given row and returns the remaining metadata
|
|
211
211
|
|
|
212
212
|
:param org_id: Organization ID (required)
|
|
213
|
-
:type org_id:
|
|
213
|
+
:type org_id: str
|
|
214
214
|
:param request: Body (required)
|
|
215
215
|
:type request: OrganizationsDeleteMetadataRequest
|
|
216
216
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -302,6 +302,7 @@ class OrganizationMetadataApi:
|
|
|
302
302
|
|
|
303
303
|
# authentication setting
|
|
304
304
|
_auth_settings: List[str] = [
|
|
305
|
+
'TokenAuth',
|
|
305
306
|
'ApiKeyAuth'
|
|
306
307
|
]
|
|
307
308
|
|
|
@@ -326,7 +327,7 @@ class OrganizationMetadataApi:
|
|
|
326
327
|
@validate_call
|
|
327
328
|
def api_v1_organization_metadata_org_id_get(
|
|
328
329
|
self,
|
|
329
|
-
org_id: Annotated[
|
|
330
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
330
331
|
_request_timeout: Union[
|
|
331
332
|
None,
|
|
332
333
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -345,7 +346,7 @@ class OrganizationMetadataApi:
|
|
|
345
346
|
Returns all metadata for a given org id
|
|
346
347
|
|
|
347
348
|
:param org_id: Organization ID (required)
|
|
348
|
-
:type org_id:
|
|
349
|
+
:type org_id: str
|
|
349
350
|
:param _request_timeout: timeout setting for this request. If one
|
|
350
351
|
number provided, it will be total request
|
|
351
352
|
timeout. It can also be a pair (tuple) of
|
|
@@ -395,7 +396,7 @@ class OrganizationMetadataApi:
|
|
|
395
396
|
@validate_call
|
|
396
397
|
def api_v1_organization_metadata_org_id_get_with_http_info(
|
|
397
398
|
self,
|
|
398
|
-
org_id: Annotated[
|
|
399
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
399
400
|
_request_timeout: Union[
|
|
400
401
|
None,
|
|
401
402
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -414,7 +415,7 @@ class OrganizationMetadataApi:
|
|
|
414
415
|
Returns all metadata for a given org id
|
|
415
416
|
|
|
416
417
|
:param org_id: Organization ID (required)
|
|
417
|
-
:type org_id:
|
|
418
|
+
:type org_id: str
|
|
418
419
|
:param _request_timeout: timeout setting for this request. If one
|
|
419
420
|
number provided, it will be total request
|
|
420
421
|
timeout. It can also be a pair (tuple) of
|
|
@@ -464,7 +465,7 @@ class OrganizationMetadataApi:
|
|
|
464
465
|
@validate_call
|
|
465
466
|
def api_v1_organization_metadata_org_id_get_without_preload_content(
|
|
466
467
|
self,
|
|
467
|
-
org_id: Annotated[
|
|
468
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
468
469
|
_request_timeout: Union[
|
|
469
470
|
None,
|
|
470
471
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -483,7 +484,7 @@ class OrganizationMetadataApi:
|
|
|
483
484
|
Returns all metadata for a given org id
|
|
484
485
|
|
|
485
486
|
:param org_id: Organization ID (required)
|
|
486
|
-
:type org_id:
|
|
487
|
+
:type org_id: str
|
|
487
488
|
:param _request_timeout: timeout setting for this request. If one
|
|
488
489
|
number provided, it will be total request
|
|
489
490
|
timeout. It can also be a pair (tuple) of
|
|
@@ -569,6 +570,7 @@ class OrganizationMetadataApi:
|
|
|
569
570
|
|
|
570
571
|
# authentication setting
|
|
571
572
|
_auth_settings: List[str] = [
|
|
573
|
+
'TokenAuth',
|
|
572
574
|
'ApiKeyAuth'
|
|
573
575
|
]
|
|
574
576
|
|
|
@@ -593,7 +595,7 @@ class OrganizationMetadataApi:
|
|
|
593
595
|
@validate_call
|
|
594
596
|
def api_v1_organization_metadata_org_id_post(
|
|
595
597
|
self,
|
|
596
|
-
org_id: Annotated[
|
|
598
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
597
599
|
request: Annotated[OrganizationsOrganizationMetadataRequest, Field(description="Body")],
|
|
598
600
|
_request_timeout: Union[
|
|
599
601
|
None,
|
|
@@ -613,7 +615,7 @@ class OrganizationMetadataApi:
|
|
|
613
615
|
Create a metadata for the given organization id
|
|
614
616
|
|
|
615
617
|
:param org_id: Organization ID (required)
|
|
616
|
-
:type org_id:
|
|
618
|
+
:type org_id: str
|
|
617
619
|
:param request: Body (required)
|
|
618
620
|
:type request: OrganizationsOrganizationMetadataRequest
|
|
619
621
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -666,7 +668,7 @@ class OrganizationMetadataApi:
|
|
|
666
668
|
@validate_call
|
|
667
669
|
def api_v1_organization_metadata_org_id_post_with_http_info(
|
|
668
670
|
self,
|
|
669
|
-
org_id: Annotated[
|
|
671
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
670
672
|
request: Annotated[OrganizationsOrganizationMetadataRequest, Field(description="Body")],
|
|
671
673
|
_request_timeout: Union[
|
|
672
674
|
None,
|
|
@@ -686,7 +688,7 @@ class OrganizationMetadataApi:
|
|
|
686
688
|
Create a metadata for the given organization id
|
|
687
689
|
|
|
688
690
|
:param org_id: Organization ID (required)
|
|
689
|
-
:type org_id:
|
|
691
|
+
:type org_id: str
|
|
690
692
|
:param request: Body (required)
|
|
691
693
|
:type request: OrganizationsOrganizationMetadataRequest
|
|
692
694
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -739,7 +741,7 @@ class OrganizationMetadataApi:
|
|
|
739
741
|
@validate_call
|
|
740
742
|
def api_v1_organization_metadata_org_id_post_without_preload_content(
|
|
741
743
|
self,
|
|
742
|
-
org_id: Annotated[
|
|
744
|
+
org_id: Annotated[StrictStr, Field(description="Organization ID")],
|
|
743
745
|
request: Annotated[OrganizationsOrganizationMetadataRequest, Field(description="Body")],
|
|
744
746
|
_request_timeout: Union[
|
|
745
747
|
None,
|
|
@@ -759,7 +761,7 @@ class OrganizationMetadataApi:
|
|
|
759
761
|
Create a metadata for the given organization id
|
|
760
762
|
|
|
761
763
|
:param org_id: Organization ID (required)
|
|
762
|
-
:type org_id:
|
|
764
|
+
:type org_id: str
|
|
763
765
|
:param request: Body (required)
|
|
764
766
|
:type request: OrganizationsOrganizationMetadataRequest
|
|
765
767
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -851,6 +853,7 @@ class OrganizationMetadataApi:
|
|
|
851
853
|
|
|
852
854
|
# authentication setting
|
|
853
855
|
_auth_settings: List[str] = [
|
|
856
|
+
'TokenAuth',
|
|
854
857
|
'ApiKeyAuth'
|
|
855
858
|
]
|
|
856
859
|
|