File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
generated/pyfirebase/pyfirebase_mapswipe Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,6 @@ FbProjectReadonlyType:
4747 type :
4848 type : object
4949 fields :
50- contributorCount :
51- type : int
52- progress :
53- type : int
5450 resultCount :
5551 type : int
5652
@@ -99,6 +95,10 @@ FbProjectUpdateInput:
9995 type : string
10096 status :
10197 type : FbEnumProjectStatus
98+ contributorCount :
99+ type : int
100+ progress :
101+ type : int
102102
103103FbProjectCreateOnlyInput :
104104 model : alias
Original file line number Diff line number Diff line change @@ -127,8 +127,6 @@ class FbEnumProjectType(enum.Enum):
127127class FbProjectReadonlyType (TypesyncModel ):
128128 """Represents project fields that cannot be updated from backend"""
129129
130- contributorCount : int
131- progress : int
132130 resultCount : int
133131
134132 class Config :
@@ -159,6 +157,8 @@ class FbProjectUpdateInput(TypesyncModel):
159157 manualUrl : str | TypesyncUndefined | None = UNDEFINED
160158 teamId : str | TypesyncUndefined | None = UNDEFINED
161159 status : FbEnumProjectStatus
160+ contributorCount : int
161+ progress : int
162162
163163 class Config :
164164 use_enum_values = False
You can’t perform that action at this time.
0 commit comments