Skip to content

Commit b7b1b68

Browse files
authored
Merge pull request #44 from mapswipe/fix/street-taskid
fix(street): change taskId from string to integer
2 parents b733724 + a6e0e29 commit b7b1b68

File tree

2 files changed

+2
-2
lines changed
  • functions

2 files changed

+2
-2
lines changed

functions/definition/project/project_types/street.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ FbMappingTaskStreetCreateOnlyInput:
3030
type: object
3131
fields:
3232
taskId:
33-
type: string
33+
type: int
3434
groupId:
3535
type: string

functions/generated/pyfirebase/pyfirebase_mapswipe/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def __setattr__(self, name: str, value: typing.Any) -> None:
375375
class FbMappingTaskStreetCreateOnlyInput(TypesyncModel):
376376
"""Represents STREET mapping task fields that are valid while creating a task"""
377377

378-
taskId: str
378+
taskId: int
379379
groupId: str
380380

381381
class Config:

0 commit comments

Comments
 (0)