neurograph-core 1.202509220147__py3-none-any.whl → 1.202509242050__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/models/knowledge_entity.py +3 -3
- neurograph/v1/models/knowledge_entity_in_db.py +3 -3
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242050.dist-info}/METADATA +1 -1
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242050.dist-info}/RECORD +6 -6
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242050.dist-info}/WHEEL +0 -0
- {neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242050.dist-info}/top_level.txt +0 -0
|
@@ -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")
|
{neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242050.dist-info}/RECORD
RENAMED
|
@@ -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
|
|
@@ -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.202509242050.dist-info/METADATA,sha256=8JFQBE4jMMmKcsw6T9TFSydFWMZF1TB4mSswhoBRiDc,1936
|
|
176
|
+
neurograph_core-1.202509242050.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
177
|
+
neurograph_core-1.202509242050.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
|
|
178
|
+
neurograph_core-1.202509242050.dist-info/RECORD,,
|
|
File without changes
|
{neurograph_core-1.202509220147.dist-info → neurograph_core-1.202509242050.dist-info}/top_level.txt
RENAMED
|
File without changes
|