Skip to content

Commit 6ee8885

Browse files
committed
Updated to latest API release.
1 parent f2f1112 commit 6ee8885

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graphlit_api/input_types.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,7 @@ class PersonaInput(BaseModel):
342342

343343
class SkillInput(BaseModel):
344344
name: str
345+
identifier: Optional[str] = None
345346
text: str
346347
skill_owner: Optional[EntityOwners] = Field(alias="skillOwner", default=None)
347348
description: Optional[str] = None
@@ -462,6 +463,7 @@ class SkillFilter(BaseModel):
462463
modified_date_range: Optional["DateRangeFilter"] = Field(
463464
alias="modifiedDateRange", default=None
464465
)
466+
identifier: Optional[str] = None
465467
skill_owners: Optional[list[EntityOwners]] = Field(
466468
alias="skillOwners", default=None
467469
)
@@ -5050,6 +5052,7 @@ class ProductFilter(BaseModel):
50505052
class SkillUpdateInput(BaseModel):
50515053
id: str
50525054
name: Optional[str] = None
5055+
identifier: Optional[str] = None
50535056
text: Optional[str] = None
50545057
description: Optional[str] = None
50555058
arguments: Optional[list["SkillArgumentInput"]] = None

0 commit comments

Comments
 (0)