neurograph-core 1.202509220147__py3-none-any.whl → 1.202509242146__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/api/knowledge_api.py +17 -0
- neurograph/v1/models/knowledge_entity.py +3 -3
- neurograph/v1/models/knowledge_entity_in_db.py +3 -3
- neurograph/v1/models/knowledge_query.py +3 -1
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242146.dist-info}/METADATA +1 -1
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242146.dist-info}/RECORD +8 -8
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242146.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242146.dist-info}/top_level.txt +0 -0
|
@@ -2211,6 +2211,7 @@ class KnowledgeApi:
|
|
|
2211
2211
|
@validate_call
|
|
2212
2212
|
def api_v1_knowledge_entity_get(
|
|
2213
2213
|
self,
|
|
2214
|
+
batch_id: Optional[StrictStr] = None,
|
|
2214
2215
|
client_id: Optional[StrictStr] = None,
|
|
2215
2216
|
kind: Optional[StrictStr] = None,
|
|
2216
2217
|
limit: Optional[StrictInt] = None,
|
|
@@ -2233,6 +2234,8 @@ class KnowledgeApi:
|
|
|
2233
2234
|
|
|
2234
2235
|
Get one or many knowledge Entities, up to 10mb per request
|
|
2235
2236
|
|
|
2237
|
+
:param batch_id:
|
|
2238
|
+
:type batch_id: str
|
|
2236
2239
|
:param client_id:
|
|
2237
2240
|
:type client_id: str
|
|
2238
2241
|
:param kind:
|
|
@@ -2266,6 +2269,7 @@ class KnowledgeApi:
|
|
|
2266
2269
|
""" # noqa: E501
|
|
2267
2270
|
|
|
2268
2271
|
_param = self._api_v1_knowledge_entity_get_serialize(
|
|
2272
|
+
batch_id=batch_id,
|
|
2269
2273
|
client_id=client_id,
|
|
2270
2274
|
kind=kind,
|
|
2271
2275
|
limit=limit,
|
|
@@ -2296,6 +2300,7 @@ class KnowledgeApi:
|
|
|
2296
2300
|
@validate_call
|
|
2297
2301
|
def api_v1_knowledge_entity_get_with_http_info(
|
|
2298
2302
|
self,
|
|
2303
|
+
batch_id: Optional[StrictStr] = None,
|
|
2299
2304
|
client_id: Optional[StrictStr] = None,
|
|
2300
2305
|
kind: Optional[StrictStr] = None,
|
|
2301
2306
|
limit: Optional[StrictInt] = None,
|
|
@@ -2318,6 +2323,8 @@ class KnowledgeApi:
|
|
|
2318
2323
|
|
|
2319
2324
|
Get one or many knowledge Entities, up to 10mb per request
|
|
2320
2325
|
|
|
2326
|
+
:param batch_id:
|
|
2327
|
+
:type batch_id: str
|
|
2321
2328
|
:param client_id:
|
|
2322
2329
|
:type client_id: str
|
|
2323
2330
|
:param kind:
|
|
@@ -2351,6 +2358,7 @@ class KnowledgeApi:
|
|
|
2351
2358
|
""" # noqa: E501
|
|
2352
2359
|
|
|
2353
2360
|
_param = self._api_v1_knowledge_entity_get_serialize(
|
|
2361
|
+
batch_id=batch_id,
|
|
2354
2362
|
client_id=client_id,
|
|
2355
2363
|
kind=kind,
|
|
2356
2364
|
limit=limit,
|
|
@@ -2381,6 +2389,7 @@ class KnowledgeApi:
|
|
|
2381
2389
|
@validate_call
|
|
2382
2390
|
def api_v1_knowledge_entity_get_without_preload_content(
|
|
2383
2391
|
self,
|
|
2392
|
+
batch_id: Optional[StrictStr] = None,
|
|
2384
2393
|
client_id: Optional[StrictStr] = None,
|
|
2385
2394
|
kind: Optional[StrictStr] = None,
|
|
2386
2395
|
limit: Optional[StrictInt] = None,
|
|
@@ -2403,6 +2412,8 @@ class KnowledgeApi:
|
|
|
2403
2412
|
|
|
2404
2413
|
Get one or many knowledge Entities, up to 10mb per request
|
|
2405
2414
|
|
|
2415
|
+
:param batch_id:
|
|
2416
|
+
:type batch_id: str
|
|
2406
2417
|
:param client_id:
|
|
2407
2418
|
:type client_id: str
|
|
2408
2419
|
:param kind:
|
|
@@ -2436,6 +2447,7 @@ class KnowledgeApi:
|
|
|
2436
2447
|
""" # noqa: E501
|
|
2437
2448
|
|
|
2438
2449
|
_param = self._api_v1_knowledge_entity_get_serialize(
|
|
2450
|
+
batch_id=batch_id,
|
|
2439
2451
|
client_id=client_id,
|
|
2440
2452
|
kind=kind,
|
|
2441
2453
|
limit=limit,
|
|
@@ -2461,6 +2473,7 @@ class KnowledgeApi:
|
|
|
2461
2473
|
|
|
2462
2474
|
def _api_v1_knowledge_entity_get_serialize(
|
|
2463
2475
|
self,
|
|
2476
|
+
batch_id,
|
|
2464
2477
|
client_id,
|
|
2465
2478
|
kind,
|
|
2466
2479
|
limit,
|
|
@@ -2488,6 +2501,10 @@ class KnowledgeApi:
|
|
|
2488
2501
|
|
|
2489
2502
|
# process the path parameters
|
|
2490
2503
|
# process the query parameters
|
|
2504
|
+
if batch_id is not None:
|
|
2505
|
+
|
|
2506
|
+
_query_params.append(('batchId', batch_id))
|
|
2507
|
+
|
|
2491
2508
|
if client_id is not None:
|
|
2492
2509
|
|
|
2493
2510
|
_query_params.append(('clientId', client_id))
|
|
@@ -37,10 +37,10 @@ class KnowledgeEntity(BaseModel):
|
|
|
37
37
|
name: Optional[StrictStr] = None
|
|
38
38
|
relations: Optional[KnowledgeEntityRelations] = None
|
|
39
39
|
var_schema: Optional[KnowledgeEntitySchema] = Field(default=None, alias="schema")
|
|
40
|
-
|
|
40
|
+
source_id: Optional[StrictStr] = None
|
|
41
41
|
source_updated_at: Optional[StrictInt] = None
|
|
42
42
|
ts_updated: Optional[StrictInt] = None
|
|
43
|
-
__properties: ClassVar[List[str]] = ["client_id", "data", "ext", "extra", "kind", "name", "relations", "schema", "
|
|
43
|
+
__properties: ClassVar[List[str]] = ["client_id", "data", "ext", "extra", "kind", "name", "relations", "schema", "source_id", "source_updated_at", "ts_updated"]
|
|
44
44
|
|
|
45
45
|
model_config = ConfigDict(
|
|
46
46
|
populate_by_name=True,
|
|
@@ -110,7 +110,7 @@ class KnowledgeEntity(BaseModel):
|
|
|
110
110
|
"name": obj.get("name"),
|
|
111
111
|
"relations": KnowledgeEntityRelations.from_dict(obj["relations"]) if obj.get("relations") is not None else None,
|
|
112
112
|
"schema": KnowledgeEntitySchema.from_dict(obj["schema"]) if obj.get("schema") is not None else None,
|
|
113
|
-
"
|
|
113
|
+
"source_id": obj.get("source_id"),
|
|
114
114
|
"source_updated_at": obj.get("source_updated_at"),
|
|
115
115
|
"ts_updated": obj.get("ts_updated")
|
|
116
116
|
})
|
|
@@ -39,11 +39,11 @@ class KnowledgeEntityInDb(BaseModel):
|
|
|
39
39
|
name: Optional[StrictStr] = None
|
|
40
40
|
relations: Optional[KnowledgeEntityRelations] = None
|
|
41
41
|
var_schema: Optional[KnowledgeEntitySchema] = Field(default=None, alias="schema")
|
|
42
|
-
|
|
42
|
+
source_id: Optional[StrictStr] = None
|
|
43
43
|
source_updated_at: Optional[StrictInt] = None
|
|
44
44
|
ts_created: Optional[StrictInt] = None
|
|
45
45
|
ts_updated: Optional[StrictInt] = None
|
|
46
|
-
__properties: ClassVar[List[str]] = ["batch_id", "client_id", "data", "ext", "extra", "id", "kind", "name", "relations", "schema", "
|
|
46
|
+
__properties: ClassVar[List[str]] = ["batch_id", "client_id", "data", "ext", "extra", "id", "kind", "name", "relations", "schema", "source_id", "source_updated_at", "ts_created", "ts_updated"]
|
|
47
47
|
|
|
48
48
|
model_config = ConfigDict(
|
|
49
49
|
populate_by_name=True,
|
|
@@ -115,7 +115,7 @@ class KnowledgeEntityInDb(BaseModel):
|
|
|
115
115
|
"name": obj.get("name"),
|
|
116
116
|
"relations": KnowledgeEntityRelations.from_dict(obj["relations"]) if obj.get("relations") is not None else None,
|
|
117
117
|
"schema": KnowledgeEntitySchema.from_dict(obj["schema"]) if obj.get("schema") is not None else None,
|
|
118
|
-
"
|
|
118
|
+
"source_id": obj.get("source_id"),
|
|
119
119
|
"source_updated_at": obj.get("source_updated_at"),
|
|
120
120
|
"ts_created": obj.get("ts_created"),
|
|
121
121
|
"ts_updated": obj.get("ts_updated")
|
|
@@ -26,12 +26,13 @@ class KnowledgeQuery(BaseModel):
|
|
|
26
26
|
"""
|
|
27
27
|
KnowledgeQuery
|
|
28
28
|
""" # noqa: E501
|
|
29
|
+
batch_id: Optional[StrictStr] = Field(default=None, alias="batchId")
|
|
29
30
|
client_id: Optional[StrictStr] = Field(default=None, alias="clientId")
|
|
30
31
|
kind: Optional[StrictStr] = None
|
|
31
32
|
limit: Optional[StrictInt] = None
|
|
32
33
|
offset: Optional[StrictInt] = None
|
|
33
34
|
schema_id: Optional[StrictStr] = Field(default=None, alias="schemaId")
|
|
34
|
-
__properties: ClassVar[List[str]] = ["clientId", "kind", "limit", "offset", "schemaId"]
|
|
35
|
+
__properties: ClassVar[List[str]] = ["batchId", "clientId", "kind", "limit", "offset", "schemaId"]
|
|
35
36
|
|
|
36
37
|
model_config = ConfigDict(
|
|
37
38
|
populate_by_name=True,
|
|
@@ -84,6 +85,7 @@ class KnowledgeQuery(BaseModel):
|
|
|
84
85
|
return cls.model_validate(obj)
|
|
85
86
|
|
|
86
87
|
_obj = cls.model_validate({
|
|
88
|
+
"batchId": obj.get("batchId"),
|
|
87
89
|
"clientId": obj.get("clientId"),
|
|
88
90
|
"kind": obj.get("kind"),
|
|
89
91
|
"limit": obj.get("limit"),
|
{neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242146.dist-info}/RECORD
RENAMED
|
@@ -11,7 +11,7 @@ neurograph/v1/api/authentication_api.py,sha256=5Qzs_TMzcjrPAQxbWAZ6HHXM80Fqfv42h
|
|
|
11
11
|
neurograph/v1/api/client_api.py,sha256=BMQpol_76M9ab2LTo1E87c479HUP-_Kny4-IG_WTGDc,87619
|
|
12
12
|
neurograph/v1/api/client_metadata_api.py,sha256=799y_V9AdA_TYCeN-qTEtKUFbq05Mv1vgCc0UY4qpcc,45652
|
|
13
13
|
neurograph/v1/api/dagster_api.py,sha256=s17w5ZatLPE-jfcCr6U1O2bOXEIvuGxhFMjKkNbMtO0,22042
|
|
14
|
-
neurograph/v1/api/knowledge_api.py,sha256=
|
|
14
|
+
neurograph/v1/api/knowledge_api.py,sha256=eJEPs6klqJaCNMPgELoYn_Vq5zO-sdaPdishECPjvXA,187472
|
|
15
15
|
neurograph/v1/api/knowledge_extract_api.py,sha256=SkaITyaEukSt3murGIv2vT993-XvELaftmItV4rIng4,69067
|
|
16
16
|
neurograph/v1/api/lookup_api.py,sha256=tHr-4nTp8-ZB3YN7pv53N14zCmPcLMwbuxJZv2w75sI,50977
|
|
17
17
|
neurograph/v1/api/organization_api.py,sha256=rsl3DDVKNwLKwLfjDHMHmov8rt5NV8qKPT5vK3j7rSA,78133
|
|
@@ -78,13 +78,13 @@ neurograph/v1/models/knowledge_enrichment_artifact_response.py,sha256=U0kYpPU1Km
|
|
|
78
78
|
neurograph/v1/models/knowledge_enrichment_artifact_update_output_request.py,sha256=KWi5Q_D6r-yCDCaFkadaw9RCOXf-6JmmRh_m3KpwNbo,3023
|
|
79
79
|
neurograph/v1/models/knowledge_enrichment_artifact_update_status_request.py,sha256=U0IxNhuBFENClAXrfzfjidKCXLmKM6UJewKkJazi3gQ,3392
|
|
80
80
|
neurograph/v1/models/knowledge_enrichment_query.py,sha256=pLGc_ST6Hjg6r6EnxbP6dOzGjpRz5cx7b_zhG3UaaVs,3193
|
|
81
|
-
neurograph/v1/models/knowledge_entity.py,sha256=
|
|
81
|
+
neurograph/v1/models/knowledge_entity.py,sha256=jUJDNCGw6PyOelQZVEzA1y8phYricyTOL77ZsyTsu_E,4568
|
|
82
82
|
neurograph/v1/models/knowledge_entity_create_request.py,sha256=96z7BBLzkcB03acLVl63aMjAmdoIy9XbsQJgNlUs1_c,3130
|
|
83
83
|
neurograph/v1/models/knowledge_entity_create_response.py,sha256=4eLYm1MFW2Ue5Bawc6d9QgUhkXs8W4Ysb7FDoOogVtU,3345
|
|
84
84
|
neurograph/v1/models/knowledge_entity_err_row.py,sha256=EyA9L9k_6_g7FXMPeVzjjLiW9A5CybRcY-IMs8tsU8I,2634
|
|
85
85
|
neurograph/v1/models/knowledge_entity_extra.py,sha256=_FPWSExIzhndkvRvarPIwomVvPPhbNwITZWShPmTA_8,2764
|
|
86
86
|
neurograph/v1/models/knowledge_entity_get_many_response.py,sha256=cECUw3xhfetwgy1a9G0JPWUL2xjkWBH63KfqmVePVc0,3520
|
|
87
|
-
neurograph/v1/models/knowledge_entity_in_db.py,sha256=
|
|
87
|
+
neurograph/v1/models/knowledge_entity_in_db.py,sha256=k1Z-zSqhbt_vPAk2XDGAjQLiudKUM23wgYgDOYcP-NU,4862
|
|
88
88
|
neurograph/v1/models/knowledge_entity_relations.py,sha256=zhxVLNY4-tOML3tXTbHd0yXRgQacFC4XVc_qogUy-C0,2771
|
|
89
89
|
neurograph/v1/models/knowledge_entity_schema.py,sha256=FrCnPOZHpZPPbX5RoQnOb9BkoQQCWFqb1zaGMF-f6-o,2620
|
|
90
90
|
neurograph/v1/models/knowledge_entity_schema_row.py,sha256=PnMhdlksr_71UVw3B-rL8qaJv8ytDASgXkCGhEQeK_E,3258
|
|
@@ -105,7 +105,7 @@ neurograph/v1/models/knowledge_order_query.py,sha256=3aLKfozkQ7Hcn6-zeEtJDGN01Kk
|
|
|
105
105
|
neurograph/v1/models/knowledge_order_response.py,sha256=8Tx741pcqfNKFk7mejVHH9NBCKx40I3-ZWdTtG-zYRQ,3496
|
|
106
106
|
neurograph/v1/models/knowledge_product_query.py,sha256=jZKf9dsHOj7FEmTpF2qMKahonDqbH08URY8cOTdRhEE,3218
|
|
107
107
|
neurograph/v1/models/knowledge_product_response.py,sha256=mVsk0JVnP_TZGsbMwVuwIIJs4aKHU6G08PwIHbTVtw0,3520
|
|
108
|
-
neurograph/v1/models/knowledge_query.py,sha256=
|
|
108
|
+
neurograph/v1/models/knowledge_query.py,sha256=OHJ66k0cqhTTnLTWTlGpWdR37MrhDXOI4DFRHOVcegM,3090
|
|
109
109
|
neurograph/v1/models/knowledge_store_query.py,sha256=kmOSjDNRZUMcm8O6rqq3OrlkmqHXJ7ydesNDS-fBj9o,3165
|
|
110
110
|
neurograph/v1/models/knowledge_store_response.py,sha256=LisJ--lX25X9ygalTcVJim1Hkm8ATFK3aMYdsjcy6O0,3496
|
|
111
111
|
neurograph/v1/models/lookup_language.py,sha256=YMyl2EcRcOmNUT4RcbnvNW9tZ4lzTer2GlTN1kaiT0k,3010
|
|
@@ -172,7 +172,7 @@ neurograph/v1/models/workbench_workbench_version.py,sha256=AsgikzRU6BRj99gRFGGTl
|
|
|
172
172
|
neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
|
|
173
173
|
neurograph/v1/models/workbench_workbench_version_response.py,sha256=nMupKXBsoi4eXD-fsp_5PHrMislATwoBpVIZU7mG9RM,3283
|
|
174
174
|
neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=bAxjBeFe8EG3bXPUrLjfntlC65lK5p_ddPs_0yX3A9g,2994
|
|
175
|
-
neurograph_core-1.
|
|
176
|
-
neurograph_core-1.
|
|
177
|
-
neurograph_core-1.
|
|
178
|
-
neurograph_core-1.
|
|
175
|
+
neurograph_core-1.202509242146.dist-info/METADATA,sha256=vtl-TLVs5pdutTaG-ZB6esBxzmAup-oDGPiqP3QTTcs,1936
|
|
176
|
+
neurograph_core-1.202509242146.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
177
|
+
neurograph_core-1.202509242146.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
|
|
178
|
+
neurograph_core-1.202509242146.dist-info/RECORD,,
|
|
File without changes
|
{neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242146.dist-info}/top_level.txt
RENAMED
|
File without changes
|