neurograph-core 1.202508152055__py3-none-any.whl → 1.202508221357__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 +14 -4
- neurograph/v1/api/__init__.py +1 -0
- neurograph/v1/api/client_api.py +53 -53
- neurograph/v1/api/client_metadata_api.py +19 -19
- neurograph/v1/api/dagster_api.py +306 -0
- neurograph/v1/api/organization_api.py +281 -13
- neurograph/v1/api/organization_metadata_api.py +19 -19
- neurograph/v1/api/workbench_api.py +3 -3
- neurograph/v1/models/__init__.py +6 -2
- 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 +6 -10
- neurograph/v1/models/client_client_url_upsert_response.py +15 -8
- 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 +4 -8
- 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 +1 -1
- neurograph/v1/models/organizations_organization_set_workbench_request.py +2 -2
- neurograph/v1/models/organizations_organization_set_workbench_response.py +2 -2
- neurograph/v1/models/organizations_organization_update_request.py +4 -4
- neurograph/v1/models/organizations_workbench_config.py +2 -2
- neurograph/v1/models/personas_delete_many_persona_instances_request.py +2 -2
- neurograph/v1/models/personas_kpi.py +1 -1
- 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 +4 -4
- neurograph/v1/models/personas_persona_factor.py +1 -1
- neurograph/v1/models/personas_persona_factor_resp.py +1 -1
- 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 +2 -2
- 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 +1 -1
- 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_seeds_delete_request.py +2 -2
- neurograph/v1/models/personas_persona_seeds_delete_response.py +2 -2
- 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.202508152055.dist-info → neurograph_core-1.202508221357.dist-info}/METADATA +1 -1
- {neurograph_core-1.202508152055.dist-info → neurograph_core-1.202508221357.dist-info}/RECORD +64 -57
- {neurograph_core-1.202508152055.dist-info → neurograph_core-1.202508221357.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202508152055.dist-info → neurograph_core-1.202508221357.dist-info}/top_level.txt +0 -0
neurograph/v1/__init__.py
CHANGED
|
@@ -21,6 +21,7 @@ __all__ = [
|
|
|
21
21
|
"AuthenticationApi",
|
|
22
22
|
"ClientApi",
|
|
23
23
|
"ClientMetadataApi",
|
|
24
|
+
"DagsterApi",
|
|
24
25
|
"LookupApi",
|
|
25
26
|
"OrganizationApi",
|
|
26
27
|
"OrganizationMetadataApi",
|
|
@@ -42,13 +43,13 @@ __all__ = [
|
|
|
42
43
|
"AuthTestServiceTokenResponse",
|
|
43
44
|
"AuthTestTokenResponse",
|
|
44
45
|
"ClientClient",
|
|
45
|
-
"ClientClientCreatResponse",
|
|
46
|
-
"ClientClientCreateRequest",
|
|
47
46
|
"ClientClientGetDetailResponse",
|
|
48
47
|
"ClientClientGetManyResponse",
|
|
49
48
|
"ClientClientMetadataRequest",
|
|
50
49
|
"ClientClientMetadataResponse",
|
|
51
50
|
"ClientClientPersonasResponse",
|
|
51
|
+
"ClientClientUpsertRequest",
|
|
52
|
+
"ClientClientUpsertResponse",
|
|
52
53
|
"ClientClientUrlUpsertRequest",
|
|
53
54
|
"ClientClientUrlUpsertResponse",
|
|
54
55
|
"ClientClientUrlsResponse",
|
|
@@ -60,6 +61,8 @@ __all__ = [
|
|
|
60
61
|
"ClientPersonaInsight",
|
|
61
62
|
"ClientPersonaPersonalityTrait",
|
|
62
63
|
"ClientQuery",
|
|
64
|
+
"DagsterDagsterLogCreateRequest",
|
|
65
|
+
"DagsterDagsterLogCreateResponse",
|
|
63
66
|
"DbClientUrl",
|
|
64
67
|
"DbPersonaFactorCreateParams",
|
|
65
68
|
"LookupLanguage",
|
|
@@ -115,6 +118,8 @@ __all__ = [
|
|
|
115
118
|
"PersonasPersonaTraitCreateResponse",
|
|
116
119
|
"PersonasPersonalityTraitIn",
|
|
117
120
|
"PersonasPersonalityTraitOut",
|
|
121
|
+
"PgtypeInfinityModifier",
|
|
122
|
+
"PgtypeTimestamp",
|
|
118
123
|
"TasksSyncFromFirebaseResult",
|
|
119
124
|
"WorkbenchWorkbenchUrlCheckRequest",
|
|
120
125
|
"WorkbenchWorkbenchUrlCheckResponse",
|
|
@@ -128,6 +133,7 @@ __all__ = [
|
|
|
128
133
|
from neurograph.v1.api.authentication_api import AuthenticationApi as AuthenticationApi
|
|
129
134
|
from neurograph.v1.api.client_api import ClientApi as ClientApi
|
|
130
135
|
from neurograph.v1.api.client_metadata_api import ClientMetadataApi as ClientMetadataApi
|
|
136
|
+
from neurograph.v1.api.dagster_api import DagsterApi as DagsterApi
|
|
131
137
|
from neurograph.v1.api.lookup_api import LookupApi as LookupApi
|
|
132
138
|
from neurograph.v1.api.organization_api import OrganizationApi as OrganizationApi
|
|
133
139
|
from neurograph.v1.api.organization_metadata_api import OrganizationMetadataApi as OrganizationMetadataApi
|
|
@@ -153,13 +159,13 @@ from neurograph.v1.models.auth_test_service_token_request import AuthTestService
|
|
|
153
159
|
from neurograph.v1.models.auth_test_service_token_response import AuthTestServiceTokenResponse as AuthTestServiceTokenResponse
|
|
154
160
|
from neurograph.v1.models.auth_test_token_response import AuthTestTokenResponse as AuthTestTokenResponse
|
|
155
161
|
from neurograph.v1.models.client_client import ClientClient as ClientClient
|
|
156
|
-
from neurograph.v1.models.client_client_creat_response import ClientClientCreatResponse as ClientClientCreatResponse
|
|
157
|
-
from neurograph.v1.models.client_client_create_request import ClientClientCreateRequest as ClientClientCreateRequest
|
|
158
162
|
from neurograph.v1.models.client_client_get_detail_response import ClientClientGetDetailResponse as ClientClientGetDetailResponse
|
|
159
163
|
from neurograph.v1.models.client_client_get_many_response import ClientClientGetManyResponse as ClientClientGetManyResponse
|
|
160
164
|
from neurograph.v1.models.client_client_metadata_request import ClientClientMetadataRequest as ClientClientMetadataRequest
|
|
161
165
|
from neurograph.v1.models.client_client_metadata_response import ClientClientMetadataResponse as ClientClientMetadataResponse
|
|
162
166
|
from neurograph.v1.models.client_client_personas_response import ClientClientPersonasResponse as ClientClientPersonasResponse
|
|
167
|
+
from neurograph.v1.models.client_client_upsert_request import ClientClientUpsertRequest as ClientClientUpsertRequest
|
|
168
|
+
from neurograph.v1.models.client_client_upsert_response import ClientClientUpsertResponse as ClientClientUpsertResponse
|
|
163
169
|
from neurograph.v1.models.client_client_url_upsert_request import ClientClientUrlUpsertRequest as ClientClientUrlUpsertRequest
|
|
164
170
|
from neurograph.v1.models.client_client_url_upsert_response import ClientClientUrlUpsertResponse as ClientClientUrlUpsertResponse
|
|
165
171
|
from neurograph.v1.models.client_client_urls_response import ClientClientUrlsResponse as ClientClientUrlsResponse
|
|
@@ -171,6 +177,8 @@ from neurograph.v1.models.client_persona_factor import ClientPersonaFactor as Cl
|
|
|
171
177
|
from neurograph.v1.models.client_persona_insight import ClientPersonaInsight as ClientPersonaInsight
|
|
172
178
|
from neurograph.v1.models.client_persona_personality_trait import ClientPersonaPersonalityTrait as ClientPersonaPersonalityTrait
|
|
173
179
|
from neurograph.v1.models.client_query import ClientQuery as ClientQuery
|
|
180
|
+
from neurograph.v1.models.dagster_dagster_log_create_request import DagsterDagsterLogCreateRequest as DagsterDagsterLogCreateRequest
|
|
181
|
+
from neurograph.v1.models.dagster_dagster_log_create_response import DagsterDagsterLogCreateResponse as DagsterDagsterLogCreateResponse
|
|
174
182
|
from neurograph.v1.models.db_client_url import DbClientUrl as DbClientUrl
|
|
175
183
|
from neurograph.v1.models.db_persona_factor_create_params import DbPersonaFactorCreateParams as DbPersonaFactorCreateParams
|
|
176
184
|
from neurograph.v1.models.lookup_language import LookupLanguage as LookupLanguage
|
|
@@ -226,6 +234,8 @@ from neurograph.v1.models.personas_persona_trait_create_request import PersonasP
|
|
|
226
234
|
from neurograph.v1.models.personas_persona_trait_create_response import PersonasPersonaTraitCreateResponse as PersonasPersonaTraitCreateResponse
|
|
227
235
|
from neurograph.v1.models.personas_personality_trait_in import PersonasPersonalityTraitIn as PersonasPersonalityTraitIn
|
|
228
236
|
from neurograph.v1.models.personas_personality_trait_out import PersonasPersonalityTraitOut as PersonasPersonalityTraitOut
|
|
237
|
+
from neurograph.v1.models.pgtype_infinity_modifier import PgtypeInfinityModifier as PgtypeInfinityModifier
|
|
238
|
+
from neurograph.v1.models.pgtype_timestamp import PgtypeTimestamp as PgtypeTimestamp
|
|
229
239
|
from neurograph.v1.models.tasks_sync_from_firebase_result import TasksSyncFromFirebaseResult as TasksSyncFromFirebaseResult
|
|
230
240
|
from neurograph.v1.models.workbench_workbench_url_check_request import WorkbenchWorkbenchUrlCheckRequest as WorkbenchWorkbenchUrlCheckRequest
|
|
231
241
|
from neurograph.v1.models.workbench_workbench_url_check_response import WorkbenchWorkbenchUrlCheckResponse as WorkbenchWorkbenchUrlCheckResponse
|
neurograph/v1/api/__init__.py
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
from neurograph.v1.api.authentication_api import AuthenticationApi
|
|
5
5
|
from neurograph.v1.api.client_api import ClientApi
|
|
6
6
|
from neurograph.v1.api.client_metadata_api import ClientMetadataApi
|
|
7
|
+
from neurograph.v1.api.dagster_api import DagsterApi
|
|
7
8
|
from neurograph.v1.api.lookup_api import LookupApi
|
|
8
9
|
from neurograph.v1.api.organization_api import OrganizationApi
|
|
9
10
|
from neurograph.v1.api.organization_metadata_api import OrganizationMetadataApi
|
neurograph/v1/api/client_api.py
CHANGED
|
@@ -16,14 +16,14 @@ 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, StrictInt
|
|
19
|
+
from pydantic import Field, StrictInt, StrictStr
|
|
20
20
|
from typing import Optional
|
|
21
21
|
from typing_extensions import Annotated
|
|
22
|
-
from neurograph.v1.models.client_client_creat_response import ClientClientCreatResponse
|
|
23
|
-
from neurograph.v1.models.client_client_create_request import ClientClientCreateRequest
|
|
24
22
|
from neurograph.v1.models.client_client_get_detail_response import ClientClientGetDetailResponse
|
|
25
23
|
from neurograph.v1.models.client_client_get_many_response import ClientClientGetManyResponse
|
|
26
24
|
from neurograph.v1.models.client_client_personas_response import ClientClientPersonasResponse
|
|
25
|
+
from neurograph.v1.models.client_client_upsert_request import ClientClientUpsertRequest
|
|
26
|
+
from neurograph.v1.models.client_client_upsert_response import ClientClientUpsertResponse
|
|
27
27
|
from neurograph.v1.models.client_client_url_upsert_request import ClientClientUrlUpsertRequest
|
|
28
28
|
from neurograph.v1.models.client_client_url_upsert_response import ClientClientUrlUpsertResponse
|
|
29
29
|
from neurograph.v1.models.client_client_urls_response import ClientClientUrlsResponse
|
|
@@ -49,7 +49,7 @@ class ClientApi:
|
|
|
49
49
|
@validate_call
|
|
50
50
|
def api_v1_client_personas_client_id_get(
|
|
51
51
|
self,
|
|
52
|
-
client_id: Annotated[
|
|
52
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
53
53
|
_request_timeout: Union[
|
|
54
54
|
None,
|
|
55
55
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -68,7 +68,7 @@ class ClientApi:
|
|
|
68
68
|
Get all Client Personas
|
|
69
69
|
|
|
70
70
|
:param client_id: Client's ID (required)
|
|
71
|
-
:type client_id:
|
|
71
|
+
:type client_id: str
|
|
72
72
|
:param _request_timeout: timeout setting for this request. If one
|
|
73
73
|
number provided, it will be total request
|
|
74
74
|
timeout. It can also be a pair (tuple) of
|
|
@@ -118,7 +118,7 @@ class ClientApi:
|
|
|
118
118
|
@validate_call
|
|
119
119
|
def api_v1_client_personas_client_id_get_with_http_info(
|
|
120
120
|
self,
|
|
121
|
-
client_id: Annotated[
|
|
121
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
122
122
|
_request_timeout: Union[
|
|
123
123
|
None,
|
|
124
124
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -137,7 +137,7 @@ class ClientApi:
|
|
|
137
137
|
Get all Client Personas
|
|
138
138
|
|
|
139
139
|
:param client_id: Client's ID (required)
|
|
140
|
-
:type client_id:
|
|
140
|
+
:type client_id: str
|
|
141
141
|
:param _request_timeout: timeout setting for this request. If one
|
|
142
142
|
number provided, it will be total request
|
|
143
143
|
timeout. It can also be a pair (tuple) of
|
|
@@ -187,7 +187,7 @@ class ClientApi:
|
|
|
187
187
|
@validate_call
|
|
188
188
|
def api_v1_client_personas_client_id_get_without_preload_content(
|
|
189
189
|
self,
|
|
190
|
-
client_id: Annotated[
|
|
190
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
191
191
|
_request_timeout: Union[
|
|
192
192
|
None,
|
|
193
193
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -206,7 +206,7 @@ class ClientApi:
|
|
|
206
206
|
Get all Client Personas
|
|
207
207
|
|
|
208
208
|
:param client_id: Client's ID (required)
|
|
209
|
-
:type client_id:
|
|
209
|
+
:type client_id: str
|
|
210
210
|
:param _request_timeout: timeout setting for this request. If one
|
|
211
211
|
number provided, it will be total request
|
|
212
212
|
timeout. It can also be a pair (tuple) of
|
|
@@ -317,7 +317,7 @@ class ClientApi:
|
|
|
317
317
|
@validate_call
|
|
318
318
|
def api_v1_client_url_client_id_get(
|
|
319
319
|
self,
|
|
320
|
-
client_id: Annotated[
|
|
320
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
321
321
|
_request_timeout: Union[
|
|
322
322
|
None,
|
|
323
323
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -336,7 +336,7 @@ class ClientApi:
|
|
|
336
336
|
Returns all of the client's urls for the given client id
|
|
337
337
|
|
|
338
338
|
:param client_id: Client's ID (required)
|
|
339
|
-
:type client_id:
|
|
339
|
+
:type client_id: str
|
|
340
340
|
:param _request_timeout: timeout setting for this request. If one
|
|
341
341
|
number provided, it will be total request
|
|
342
342
|
timeout. It can also be a pair (tuple) of
|
|
@@ -386,7 +386,7 @@ class ClientApi:
|
|
|
386
386
|
@validate_call
|
|
387
387
|
def api_v1_client_url_client_id_get_with_http_info(
|
|
388
388
|
self,
|
|
389
|
-
client_id: Annotated[
|
|
389
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
390
390
|
_request_timeout: Union[
|
|
391
391
|
None,
|
|
392
392
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -405,7 +405,7 @@ class ClientApi:
|
|
|
405
405
|
Returns all of the client's urls for the given client id
|
|
406
406
|
|
|
407
407
|
:param client_id: Client's ID (required)
|
|
408
|
-
:type client_id:
|
|
408
|
+
:type client_id: str
|
|
409
409
|
:param _request_timeout: timeout setting for this request. If one
|
|
410
410
|
number provided, it will be total request
|
|
411
411
|
timeout. It can also be a pair (tuple) of
|
|
@@ -455,7 +455,7 @@ class ClientApi:
|
|
|
455
455
|
@validate_call
|
|
456
456
|
def api_v1_client_url_client_id_get_without_preload_content(
|
|
457
457
|
self,
|
|
458
|
-
client_id: Annotated[
|
|
458
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
459
459
|
_request_timeout: Union[
|
|
460
460
|
None,
|
|
461
461
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -474,7 +474,7 @@ class ClientApi:
|
|
|
474
474
|
Returns all of the client's urls for the given client id
|
|
475
475
|
|
|
476
476
|
:param client_id: Client's ID (required)
|
|
477
|
-
:type client_id:
|
|
477
|
+
:type client_id: str
|
|
478
478
|
:param _request_timeout: timeout setting for this request. If one
|
|
479
479
|
number provided, it will be total request
|
|
480
480
|
timeout. It can also be a pair (tuple) of
|
|
@@ -601,7 +601,7 @@ class ClientApi:
|
|
|
601
601
|
) -> ClientClientUrlUpsertResponse:
|
|
602
602
|
"""Upsert a Client Url
|
|
603
603
|
|
|
604
|
-
Inserts a Client Url into the db when the `id` is
|
|
604
|
+
Inserts a Client Url into the db when the `id` is \"\". Updates when the `id` is not an empty string.
|
|
605
605
|
|
|
606
606
|
:param request: Body (required)
|
|
607
607
|
:type request: ClientClientUrlUpsertRequest
|
|
@@ -670,7 +670,7 @@ class ClientApi:
|
|
|
670
670
|
) -> ApiResponse[ClientClientUrlUpsertResponse]:
|
|
671
671
|
"""Upsert a Client Url
|
|
672
672
|
|
|
673
|
-
Inserts a Client Url into the db when the `id` is
|
|
673
|
+
Inserts a Client Url into the db when the `id` is \"\". Updates when the `id` is not an empty string.
|
|
674
674
|
|
|
675
675
|
:param request: Body (required)
|
|
676
676
|
:type request: ClientClientUrlUpsertRequest
|
|
@@ -739,7 +739,7 @@ class ClientApi:
|
|
|
739
739
|
) -> RESTResponseType:
|
|
740
740
|
"""Upsert a Client Url
|
|
741
741
|
|
|
742
|
-
Inserts a Client Url into the db when the `id` is
|
|
742
|
+
Inserts a Client Url into the db when the `id` is \"\". Updates when the `id` is not an empty string.
|
|
743
743
|
|
|
744
744
|
:param request: Body (required)
|
|
745
745
|
:type request: ClientClientUrlUpsertRequest
|
|
@@ -853,7 +853,7 @@ class ClientApi:
|
|
|
853
853
|
@validate_call
|
|
854
854
|
def api_v1_clients_client_id_get(
|
|
855
855
|
self,
|
|
856
|
-
client_id: Annotated[
|
|
856
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
857
857
|
_request_timeout: Union[
|
|
858
858
|
None,
|
|
859
859
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -872,7 +872,7 @@ class ClientApi:
|
|
|
872
872
|
Get all Client details by their ID
|
|
873
873
|
|
|
874
874
|
:param client_id: Client's ID (required)
|
|
875
|
-
:type client_id:
|
|
875
|
+
:type client_id: str
|
|
876
876
|
:param _request_timeout: timeout setting for this request. If one
|
|
877
877
|
number provided, it will be total request
|
|
878
878
|
timeout. It can also be a pair (tuple) of
|
|
@@ -922,7 +922,7 @@ class ClientApi:
|
|
|
922
922
|
@validate_call
|
|
923
923
|
def api_v1_clients_client_id_get_with_http_info(
|
|
924
924
|
self,
|
|
925
|
-
client_id: Annotated[
|
|
925
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
926
926
|
_request_timeout: Union[
|
|
927
927
|
None,
|
|
928
928
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -941,7 +941,7 @@ class ClientApi:
|
|
|
941
941
|
Get all Client details by their ID
|
|
942
942
|
|
|
943
943
|
:param client_id: Client's ID (required)
|
|
944
|
-
:type client_id:
|
|
944
|
+
:type client_id: str
|
|
945
945
|
:param _request_timeout: timeout setting for this request. If one
|
|
946
946
|
number provided, it will be total request
|
|
947
947
|
timeout. It can also be a pair (tuple) of
|
|
@@ -991,7 +991,7 @@ class ClientApi:
|
|
|
991
991
|
@validate_call
|
|
992
992
|
def api_v1_clients_client_id_get_without_preload_content(
|
|
993
993
|
self,
|
|
994
|
-
client_id: Annotated[
|
|
994
|
+
client_id: Annotated[StrictStr, Field(description="Client's ID")],
|
|
995
995
|
_request_timeout: Union[
|
|
996
996
|
None,
|
|
997
997
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1010,7 +1010,7 @@ class ClientApi:
|
|
|
1010
1010
|
Get all Client details by their ID
|
|
1011
1011
|
|
|
1012
1012
|
:param client_id: Client's ID (required)
|
|
1013
|
-
:type client_id:
|
|
1013
|
+
:type client_id: str
|
|
1014
1014
|
:param _request_timeout: timeout setting for this request. If one
|
|
1015
1015
|
number provided, it will be total request
|
|
1016
1016
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1121,7 +1121,7 @@ class ClientApi:
|
|
|
1121
1121
|
@validate_call
|
|
1122
1122
|
def api_v1_clients_get(
|
|
1123
1123
|
self,
|
|
1124
|
-
org_id: Annotated[Optional[
|
|
1124
|
+
org_id: Annotated[Optional[StrictStr], Field(description="filter by the Organization's ID")] = None,
|
|
1125
1125
|
limit: Annotated[Optional[StrictInt], Field(description="Maximum number of records")] = None,
|
|
1126
1126
|
offset: Annotated[Optional[StrictInt], Field(description="Record offset")] = None,
|
|
1127
1127
|
_request_timeout: Union[
|
|
@@ -1141,8 +1141,8 @@ class ClientApi:
|
|
|
1141
1141
|
|
|
1142
1142
|
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account OrgId (AccountId).
|
|
1143
1143
|
|
|
1144
|
-
:param org_id:
|
|
1145
|
-
:type org_id:
|
|
1144
|
+
:param org_id: filter by the Organization's ID
|
|
1145
|
+
:type org_id: str
|
|
1146
1146
|
:param limit: Maximum number of records
|
|
1147
1147
|
:type limit: int
|
|
1148
1148
|
:param offset: Record offset
|
|
@@ -1198,7 +1198,7 @@ class ClientApi:
|
|
|
1198
1198
|
@validate_call
|
|
1199
1199
|
def api_v1_clients_get_with_http_info(
|
|
1200
1200
|
self,
|
|
1201
|
-
org_id: Annotated[Optional[
|
|
1201
|
+
org_id: Annotated[Optional[StrictStr], Field(description="filter by the Organization's ID")] = None,
|
|
1202
1202
|
limit: Annotated[Optional[StrictInt], Field(description="Maximum number of records")] = None,
|
|
1203
1203
|
offset: Annotated[Optional[StrictInt], Field(description="Record offset")] = None,
|
|
1204
1204
|
_request_timeout: Union[
|
|
@@ -1218,8 +1218,8 @@ class ClientApi:
|
|
|
1218
1218
|
|
|
1219
1219
|
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account OrgId (AccountId).
|
|
1220
1220
|
|
|
1221
|
-
:param org_id:
|
|
1222
|
-
:type org_id:
|
|
1221
|
+
:param org_id: filter by the Organization's ID
|
|
1222
|
+
:type org_id: str
|
|
1223
1223
|
:param limit: Maximum number of records
|
|
1224
1224
|
:type limit: int
|
|
1225
1225
|
:param offset: Record offset
|
|
@@ -1275,7 +1275,7 @@ class ClientApi:
|
|
|
1275
1275
|
@validate_call
|
|
1276
1276
|
def api_v1_clients_get_without_preload_content(
|
|
1277
1277
|
self,
|
|
1278
|
-
org_id: Annotated[Optional[
|
|
1278
|
+
org_id: Annotated[Optional[StrictStr], Field(description="filter by the Organization's ID")] = None,
|
|
1279
1279
|
limit: Annotated[Optional[StrictInt], Field(description="Maximum number of records")] = None,
|
|
1280
1280
|
offset: Annotated[Optional[StrictInt], Field(description="Record offset")] = None,
|
|
1281
1281
|
_request_timeout: Union[
|
|
@@ -1295,8 +1295,8 @@ class ClientApi:
|
|
|
1295
1295
|
|
|
1296
1296
|
Get all Clients. Optionally filter for Organization Guid (orgGuid) or Organization Account OrgId (AccountId).
|
|
1297
1297
|
|
|
1298
|
-
:param org_id:
|
|
1299
|
-
:type org_id:
|
|
1298
|
+
:param org_id: filter by the Organization's ID
|
|
1299
|
+
:type org_id: str
|
|
1300
1300
|
:param limit: Maximum number of records
|
|
1301
1301
|
:type limit: int
|
|
1302
1302
|
:param offset: Record offset
|
|
@@ -1425,7 +1425,7 @@ class ClientApi:
|
|
|
1425
1425
|
@validate_call
|
|
1426
1426
|
def api_v1_clients_post(
|
|
1427
1427
|
self,
|
|
1428
|
-
request: Annotated[
|
|
1428
|
+
request: Annotated[ClientClientUpsertRequest, Field(description="Body")],
|
|
1429
1429
|
_request_timeout: Union[
|
|
1430
1430
|
None,
|
|
1431
1431
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1438,13 +1438,13 @@ class ClientApi:
|
|
|
1438
1438
|
_content_type: Optional[StrictStr] = None,
|
|
1439
1439
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1440
1440
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1441
|
-
) ->
|
|
1441
|
+
) -> ClientClientUpsertResponse:
|
|
1442
1442
|
"""Upsert a Client
|
|
1443
1443
|
|
|
1444
|
-
Inserts a Client into the db when the `id` is
|
|
1444
|
+
Inserts a Client into the db when the `id` is \"\". Updates when the `id` is not an empty string.
|
|
1445
1445
|
|
|
1446
1446
|
:param request: Body (required)
|
|
1447
|
-
:type request:
|
|
1447
|
+
:type request: ClientClientUpsertRequest
|
|
1448
1448
|
:param _request_timeout: timeout setting for this request. If one
|
|
1449
1449
|
number provided, it will be total request
|
|
1450
1450
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1476,9 +1476,9 @@ class ClientApi:
|
|
|
1476
1476
|
)
|
|
1477
1477
|
|
|
1478
1478
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1479
|
-
'200': "
|
|
1480
|
-
'400': "
|
|
1481
|
-
'503': "
|
|
1479
|
+
'200': "ClientClientUpsertResponse",
|
|
1480
|
+
'400': "ClientClientUpsertResponse",
|
|
1481
|
+
'503': "ClientClientUpsertResponse",
|
|
1482
1482
|
}
|
|
1483
1483
|
response_data = self.api_client.call_api(
|
|
1484
1484
|
*_param,
|
|
@@ -1494,7 +1494,7 @@ class ClientApi:
|
|
|
1494
1494
|
@validate_call
|
|
1495
1495
|
def api_v1_clients_post_with_http_info(
|
|
1496
1496
|
self,
|
|
1497
|
-
request: Annotated[
|
|
1497
|
+
request: Annotated[ClientClientUpsertRequest, Field(description="Body")],
|
|
1498
1498
|
_request_timeout: Union[
|
|
1499
1499
|
None,
|
|
1500
1500
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1507,13 +1507,13 @@ class ClientApi:
|
|
|
1507
1507
|
_content_type: Optional[StrictStr] = None,
|
|
1508
1508
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1509
1509
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1510
|
-
) -> ApiResponse[
|
|
1510
|
+
) -> ApiResponse[ClientClientUpsertResponse]:
|
|
1511
1511
|
"""Upsert a Client
|
|
1512
1512
|
|
|
1513
|
-
Inserts a Client into the db when the `id` is
|
|
1513
|
+
Inserts a Client into the db when the `id` is \"\". Updates when the `id` is not an empty string.
|
|
1514
1514
|
|
|
1515
1515
|
:param request: Body (required)
|
|
1516
|
-
:type request:
|
|
1516
|
+
:type request: ClientClientUpsertRequest
|
|
1517
1517
|
:param _request_timeout: timeout setting for this request. If one
|
|
1518
1518
|
number provided, it will be total request
|
|
1519
1519
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1545,9 +1545,9 @@ class ClientApi:
|
|
|
1545
1545
|
)
|
|
1546
1546
|
|
|
1547
1547
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1548
|
-
'200': "
|
|
1549
|
-
'400': "
|
|
1550
|
-
'503': "
|
|
1548
|
+
'200': "ClientClientUpsertResponse",
|
|
1549
|
+
'400': "ClientClientUpsertResponse",
|
|
1550
|
+
'503': "ClientClientUpsertResponse",
|
|
1551
1551
|
}
|
|
1552
1552
|
response_data = self.api_client.call_api(
|
|
1553
1553
|
*_param,
|
|
@@ -1563,7 +1563,7 @@ class ClientApi:
|
|
|
1563
1563
|
@validate_call
|
|
1564
1564
|
def api_v1_clients_post_without_preload_content(
|
|
1565
1565
|
self,
|
|
1566
|
-
request: Annotated[
|
|
1566
|
+
request: Annotated[ClientClientUpsertRequest, Field(description="Body")],
|
|
1567
1567
|
_request_timeout: Union[
|
|
1568
1568
|
None,
|
|
1569
1569
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1579,10 +1579,10 @@ class ClientApi:
|
|
|
1579
1579
|
) -> RESTResponseType:
|
|
1580
1580
|
"""Upsert a Client
|
|
1581
1581
|
|
|
1582
|
-
Inserts a Client into the db when the `id` is
|
|
1582
|
+
Inserts a Client into the db when the `id` is \"\". Updates when the `id` is not an empty string.
|
|
1583
1583
|
|
|
1584
1584
|
:param request: Body (required)
|
|
1585
|
-
:type request:
|
|
1585
|
+
:type request: ClientClientUpsertRequest
|
|
1586
1586
|
:param _request_timeout: timeout setting for this request. If one
|
|
1587
1587
|
number provided, it will be total request
|
|
1588
1588
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1614,9 +1614,9 @@ class ClientApi:
|
|
|
1614
1614
|
)
|
|
1615
1615
|
|
|
1616
1616
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1617
|
-
'200': "
|
|
1618
|
-
'400': "
|
|
1619
|
-
'503': "
|
|
1617
|
+
'200': "ClientClientUpsertResponse",
|
|
1618
|
+
'400': "ClientClientUpsertResponse",
|
|
1619
|
+
'503': "ClientClientUpsertResponse",
|
|
1620
1620
|
}
|
|
1621
1621
|
response_data = self.api_client.call_api(
|
|
1622
1622
|
*_param,
|
|
@@ -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.client_client_metadata_request import ClientClientMetadataRequest
|
|
22
22
|
from neurograph.v1.models.client_client_metadata_response import ClientClientMetadataResponse
|
|
@@ -43,7 +43,7 @@ class ClientMetadataApi:
|
|
|
43
43
|
@validate_call
|
|
44
44
|
def api_v1_client_metadata_client_id_delete(
|
|
45
45
|
self,
|
|
46
|
-
client_id: Annotated[
|
|
46
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
47
47
|
request: Annotated[ClientDeleteMetadataRequest, Field(description="Body")],
|
|
48
48
|
_request_timeout: Union[
|
|
49
49
|
None,
|
|
@@ -63,7 +63,7 @@ class ClientMetadataApi:
|
|
|
63
63
|
Delete's the given row and returns the remaining metadata
|
|
64
64
|
|
|
65
65
|
:param client_id: Client ID (required)
|
|
66
|
-
:type client_id:
|
|
66
|
+
:type client_id: str
|
|
67
67
|
:param request: Body (required)
|
|
68
68
|
:type request: ClientDeleteMetadataRequest
|
|
69
69
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -116,7 +116,7 @@ class ClientMetadataApi:
|
|
|
116
116
|
@validate_call
|
|
117
117
|
def api_v1_client_metadata_client_id_delete_with_http_info(
|
|
118
118
|
self,
|
|
119
|
-
client_id: Annotated[
|
|
119
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
120
120
|
request: Annotated[ClientDeleteMetadataRequest, Field(description="Body")],
|
|
121
121
|
_request_timeout: Union[
|
|
122
122
|
None,
|
|
@@ -136,7 +136,7 @@ class ClientMetadataApi:
|
|
|
136
136
|
Delete's the given row and returns the remaining metadata
|
|
137
137
|
|
|
138
138
|
:param client_id: Client ID (required)
|
|
139
|
-
:type client_id:
|
|
139
|
+
:type client_id: str
|
|
140
140
|
:param request: Body (required)
|
|
141
141
|
:type request: ClientDeleteMetadataRequest
|
|
142
142
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -189,7 +189,7 @@ class ClientMetadataApi:
|
|
|
189
189
|
@validate_call
|
|
190
190
|
def api_v1_client_metadata_client_id_delete_without_preload_content(
|
|
191
191
|
self,
|
|
192
|
-
client_id: Annotated[
|
|
192
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
193
193
|
request: Annotated[ClientDeleteMetadataRequest, Field(description="Body")],
|
|
194
194
|
_request_timeout: Union[
|
|
195
195
|
None,
|
|
@@ -209,7 +209,7 @@ class ClientMetadataApi:
|
|
|
209
209
|
Delete's the given row and returns the remaining metadata
|
|
210
210
|
|
|
211
211
|
:param client_id: Client ID (required)
|
|
212
|
-
:type client_id:
|
|
212
|
+
:type client_id: str
|
|
213
213
|
:param request: Body (required)
|
|
214
214
|
:type request: ClientDeleteMetadataRequest
|
|
215
215
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -326,7 +326,7 @@ class ClientMetadataApi:
|
|
|
326
326
|
@validate_call
|
|
327
327
|
def api_v1_client_metadata_client_id_get(
|
|
328
328
|
self,
|
|
329
|
-
client_id: Annotated[
|
|
329
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
330
330
|
_request_timeout: Union[
|
|
331
331
|
None,
|
|
332
332
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -345,7 +345,7 @@ class ClientMetadataApi:
|
|
|
345
345
|
Returns all metadata for a given client ID
|
|
346
346
|
|
|
347
347
|
:param client_id: Client ID (required)
|
|
348
|
-
:type client_id:
|
|
348
|
+
:type client_id: str
|
|
349
349
|
:param _request_timeout: timeout setting for this request. If one
|
|
350
350
|
number provided, it will be total request
|
|
351
351
|
timeout. It can also be a pair (tuple) of
|
|
@@ -395,7 +395,7 @@ class ClientMetadataApi:
|
|
|
395
395
|
@validate_call
|
|
396
396
|
def api_v1_client_metadata_client_id_get_with_http_info(
|
|
397
397
|
self,
|
|
398
|
-
client_id: Annotated[
|
|
398
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
399
399
|
_request_timeout: Union[
|
|
400
400
|
None,
|
|
401
401
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -414,7 +414,7 @@ class ClientMetadataApi:
|
|
|
414
414
|
Returns all metadata for a given client ID
|
|
415
415
|
|
|
416
416
|
:param client_id: Client ID (required)
|
|
417
|
-
:type client_id:
|
|
417
|
+
:type client_id: str
|
|
418
418
|
:param _request_timeout: timeout setting for this request. If one
|
|
419
419
|
number provided, it will be total request
|
|
420
420
|
timeout. It can also be a pair (tuple) of
|
|
@@ -464,7 +464,7 @@ class ClientMetadataApi:
|
|
|
464
464
|
@validate_call
|
|
465
465
|
def api_v1_client_metadata_client_id_get_without_preload_content(
|
|
466
466
|
self,
|
|
467
|
-
client_id: Annotated[
|
|
467
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
468
468
|
_request_timeout: Union[
|
|
469
469
|
None,
|
|
470
470
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -483,7 +483,7 @@ class ClientMetadataApi:
|
|
|
483
483
|
Returns all metadata for a given client ID
|
|
484
484
|
|
|
485
485
|
:param client_id: Client ID (required)
|
|
486
|
-
:type client_id:
|
|
486
|
+
:type client_id: str
|
|
487
487
|
:param _request_timeout: timeout setting for this request. If one
|
|
488
488
|
number provided, it will be total request
|
|
489
489
|
timeout. It can also be a pair (tuple) of
|
|
@@ -594,7 +594,7 @@ class ClientMetadataApi:
|
|
|
594
594
|
@validate_call
|
|
595
595
|
def api_v1_client_metadata_client_id_post(
|
|
596
596
|
self,
|
|
597
|
-
client_id: Annotated[
|
|
597
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
598
598
|
request: Annotated[ClientClientMetadataRequest, Field(description="Body")],
|
|
599
599
|
_request_timeout: Union[
|
|
600
600
|
None,
|
|
@@ -614,7 +614,7 @@ class ClientMetadataApi:
|
|
|
614
614
|
Returns all of the client's urls for the given client id
|
|
615
615
|
|
|
616
616
|
:param client_id: Client ID (required)
|
|
617
|
-
:type client_id:
|
|
617
|
+
:type client_id: str
|
|
618
618
|
:param request: Body (required)
|
|
619
619
|
:type request: ClientClientMetadataRequest
|
|
620
620
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -667,7 +667,7 @@ class ClientMetadataApi:
|
|
|
667
667
|
@validate_call
|
|
668
668
|
def api_v1_client_metadata_client_id_post_with_http_info(
|
|
669
669
|
self,
|
|
670
|
-
client_id: Annotated[
|
|
670
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
671
671
|
request: Annotated[ClientClientMetadataRequest, Field(description="Body")],
|
|
672
672
|
_request_timeout: Union[
|
|
673
673
|
None,
|
|
@@ -687,7 +687,7 @@ class ClientMetadataApi:
|
|
|
687
687
|
Returns all of the client's urls for the given client id
|
|
688
688
|
|
|
689
689
|
:param client_id: Client ID (required)
|
|
690
|
-
:type client_id:
|
|
690
|
+
:type client_id: str
|
|
691
691
|
:param request: Body (required)
|
|
692
692
|
:type request: ClientClientMetadataRequest
|
|
693
693
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -740,7 +740,7 @@ class ClientMetadataApi:
|
|
|
740
740
|
@validate_call
|
|
741
741
|
def api_v1_client_metadata_client_id_post_without_preload_content(
|
|
742
742
|
self,
|
|
743
|
-
client_id: Annotated[
|
|
743
|
+
client_id: Annotated[StrictStr, Field(description="Client ID")],
|
|
744
744
|
request: Annotated[ClientClientMetadataRequest, Field(description="Body")],
|
|
745
745
|
_request_timeout: Union[
|
|
746
746
|
None,
|
|
@@ -760,7 +760,7 @@ class ClientMetadataApi:
|
|
|
760
760
|
Returns all of the client's urls for the given client id
|
|
761
761
|
|
|
762
762
|
:param client_id: Client ID (required)
|
|
763
|
-
:type client_id:
|
|
763
|
+
:type client_id: str
|
|
764
764
|
:param request: Body (required)
|
|
765
765
|
:type request: ClientClientMetadataRequest
|
|
766
766
|
:param _request_timeout: timeout setting for this request. If one
|