Skip to content

Commit c2b898c

Browse files
chore: update GitHub Actions workflow syntax and add checkout_url field to CheckoutSessions model
1 parent 9484960 commit c2b898c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
name: lomi Python package
77

8-
on: [push, pull_request]
8+
on: [ push, pull_request ]
99

1010
permissions:
1111
contents: read
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
2020

2121
steps:
2222
- uses: actions/checkout@v5

lomi/models/checkout_sessions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class CheckoutSessions(BaseModel):
99
amount: float = Field(default=None)
1010
cancel_url: Optional[str] = Field(default=None)
1111
checkout_session_id: str = Field(default=None)
12+
checkout_url: Optional[str] = Field(default=None)
1213
created_at: str = Field(default=None)
1314
created_by: Optional[str] = Field(default=None)
1415
currency_code: CurrencyCode = Field(default=None)

0 commit comments

Comments
 (0)