Skip to content

Commit 7fdacc6

Browse files
committed
feat(schema): support new uploading response types
- for compatible reason, this field default to false
1 parent a4bf7d5 commit 7fdacc6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/pynetmito/schemas.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,7 @@ class UploadArtifactReq(BaseAPIModel):
666666

667667

668668
class UploadArtifactResp(BaseAPIModel):
669+
exist: bool = Field(default=False)
669670
url: str
670671

671672

@@ -675,6 +676,7 @@ class UploadAttachmentReq(BaseAPIModel):
675676

676677

677678
class UploadAttachmentResp(BaseAPIModel):
679+
exist: bool = Field(default=False)
678680
url: str
679681

680682

0 commit comments

Comments
 (0)