Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix Decimal serialization #6854

Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b2ec164
fix decimal representation
giancarloromeo Nov 27, 2024
ee97853
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Nov 27, 2024
4a344ef
services/webserver api version: 0.46.0 → 0.47.0
giancarloromeo Nov 28, 2024
508866b
Merge branch 'fix-decimal-serialization' of github.com:giancarloromeo…
giancarloromeo Nov 28, 2024
c70c59e
services/webserver api version: 0.47.0 → 0.48.0
giancarloromeo Nov 28, 2024
ebbb2c1
make openapi-spec
giancarloromeo Nov 28, 2024
83471a5
revert to 0.46
giancarloromeo Nov 28, 2024
91a8719
revert to 0.46.0
giancarloromeo Nov 28, 2024
2d11717
services/webserver api version: 0.46.0 → 0.47.0
giancarloromeo Nov 28, 2024
3b7b41f
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Nov 28, 2024
9672898
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Nov 28, 2024
8f3b40a
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Nov 29, 2024
14d4cda
run make openapi.json
giancarloromeo Dec 2, 2024
c2660a8
make fields optional in Pydantic v2
giancarloromeo Dec 3, 2024
b6036e2
update openapi.json
giancarloromeo Dec 3, 2024
fd67b4f
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Dec 3, 2024
095c39a
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Dec 3, 2024
7ee6a0c
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Dec 3, 2024
37f7c05
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Dec 4, 2024
b8ed53b
remove oas spec test
giancarloromeo Dec 4, 2024
e2d4696
Merge branch 'master' into fix-decimal-serialization
giancarloromeo Dec 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions services/api-server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6490,7 +6490,7 @@
"$ref": "#/components/schemas/UnitExtraInfo"
},
"currentCostPerUnit": {
"type": "number",
"type": "string",
"title": "Currentcostperunit"
},
"default": {
Expand Down Expand Up @@ -6891,7 +6891,7 @@
"type": "integer",
"x_unit": "second"
},
"key": "input_2",
"key": "f763658f-a89a-4a90-ace4-c44631290f12",
"kind": "input"
}
},
Expand Down Expand Up @@ -7091,15 +7091,17 @@
"title": "Modified"
},
"availableCredits": {
"type": "number",
"type": "string",
"title": "Availablecredits"
}
},
"type": "object",
"required": [
"walletId",
"name",
"description",
giancarloromeo marked this conversation as resolved.
Show resolved Hide resolved
"owner",
"thumbnail",
"status",
"created",
"modified",
Expand Down
Loading