Skip to content

Commit dd153e6

Browse files
Merge pull request #667 from codatio/generate/bank-feeds
bank-feeds: release v12.0.3 (in-house codegen)
2 parents c350cd0 + c09ea8e commit dd153e6

13 files changed

Lines changed: 34 additions & 24 deletions

bank-feeds/RELEASES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,3 +929,13 @@ Based on:
929929
- [python v12.0.2] bank-feeds
930930
### Releases
931931
- [PyPI v12.0.2] https://pypi.org/project/codat-bankfeeds/12.0.2 - bank-feeds
932+
933+
## 2026-08-12 14:33:43
934+
### Changes
935+
Based on:
936+
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
937+
- codat sdk-codegen b16d9d8262794a585cbc621bca8d2dca77a75682 https://github.com/codat-spikes/sdk-codegen
938+
### Generated
939+
- [python v12.0.3] bank-feeds
940+
### Releases
941+
- [PyPI v12.0.3] https://pypi.org/project/codat-bankfeeds/12.0.3 - bank-feeds

bank-feeds/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[project]
22
name = "codat-bankfeeds"
3-
version = "12.0.2"
3+
version = "12.0.3"
44
description = "Set up bank feeds from accounts in your application to supported accounting software."
55
authors = [{ name = "Codat", email = "support@codat.io" }]
66
readme = "README-PYPI.md"
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.10"
88
dependencies = [
99
"urllib3 >= 1.25.3, < 3.0.0",
1010
"python-dateutil >= 2.8.2",

bank-feeds/src/codat_bankfeeds/models/accounting_bank_account.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
import json
2323

2424
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, field_validator, model_serializer
25-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
25+
from typing import Any, ClassVar, Dict, List, Optional, Union
2626
from codat_bankfeeds.models.shared.bankaccountstatus import BankAccountStatus
2727
from codat_bankfeeds.models.metadata import Metadata, MetadataTypedDict
2828
from codat_bankfeeds.models.supplemental_data import SupplementalData, SupplementalDataTypedDict
2929
from typing import Optional, Set
30-
from typing_extensions import Self, NotRequired, TypedDict
30+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
3131

3232
from codat_bankfeeds.models.bank_account_create_response_bank_account_type import BankAccountCreateResponseBankAccountType
3333
from codat_bankfeeds.types import OptionalNullable, UNSET, UNSET_SENTINEL

bank-feeds/src/codat_bankfeeds/models/bank_transaction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
import json
2323

2424
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, field_validator, model_serializer
25-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
25+
from typing import Any, ClassVar, Dict, List, Optional, Union
2626
from typing import Optional, Set
27-
from typing_extensions import Self, NotRequired, TypedDict
27+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
2828

2929
class BankTransaction(BaseModel):
3030

bank-feeds/src/codat_bankfeeds/models/items.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
import json
2323

2424
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, field_validator, model_serializer
25-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
25+
from typing import Any, ClassVar, Dict, List, Optional, Union
2626
from codat_bankfeeds.models.shared.bankaccountstatus import BankAccountStatus
2727
from codat_bankfeeds.models.metadata import Metadata, MetadataTypedDict
2828
from codat_bankfeeds.models.supplemental_data import SupplementalData, SupplementalDataTypedDict
2929
from typing import Optional, Set
30-
from typing_extensions import Self, NotRequired, TypedDict
30+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
3131

3232
class Items(BaseModel):
3333

bank-feeds/src/codat_bankfeeds/models/shared/accountinfo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
import json
2222

2323
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, model_serializer
24-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
24+
from typing import Any, ClassVar, Dict, List, Optional, Union
2525
from typing import Optional, Set
26-
from typing_extensions import Self, NotRequired, TypedDict
26+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
2727

2828
from codat_bankfeeds.types import OptionalNullable, UNSET, UNSET_SENTINEL
2929
class AccountInfo(BaseModel):

bank-feeds/src/codat_bankfeeds/models/shared/bankaccountprototype.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
import json
2323

2424
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, field_validator, model_serializer
25-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
25+
from typing import Any, ClassVar, Dict, List, Optional, Union
2626
from codat_bankfeeds.models.shared.bankaccountstatus import BankAccountStatus
2727
from typing import Optional, Set
28-
from typing_extensions import Self, NotRequired, TypedDict
28+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
2929

3030
from codat_bankfeeds.types import OptionalNullable, UNSET, UNSET_SENTINEL
3131
class BankAccountPrototype(BaseModel):

bank-feeds/src/codat_bankfeeds/models/shared/bankfeedmapping.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
import json
2222

2323
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, model_serializer
24-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
24+
from typing import Any, ClassVar, Dict, List, Optional, Union
2525
from codat_bankfeeds.models.shared.targetaccountoption import TargetAccountOption, TargetAccountOptionTypedDict
2626
from typing import Optional, Set
27-
from typing_extensions import Self, NotRequired, TypedDict
27+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
2828

2929
from codat_bankfeeds.types import OptionalNullable, UNSET, UNSET_SENTINEL
3030
class BankFeedMapping(BaseModel):

bank-feeds/src/codat_bankfeeds/models/shared/sourceaccount.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
import json
2323

2424
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, field_validator, model_serializer
25-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
25+
from typing import Any, ClassVar, Dict, List, Optional, Union
2626
from typing import Optional, Set
27-
from typing_extensions import Self, NotRequired, TypedDict
27+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
2828

2929
from codat_bankfeeds.types import OptionalNullable, UNSET, UNSET_SENTINEL
3030
class SourceAccount(BaseModel):

bank-feeds/src/codat_bankfeeds/models/shared/sourceaccountprototype.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
import json
2222

2323
from pydantic import BeforeValidator, PlainSerializer, BaseModel, ConfigDict, Field, model_serializer
24-
from typing import Annotated, Any, ClassVar, Dict, List, Optional, Union
24+
from typing import Any, ClassVar, Dict, List, Optional, Union
2525
from typing import Optional, Set
26-
from typing_extensions import Self, NotRequired, TypedDict
26+
from typing_extensions import Annotated, Self, NotRequired, TypedDict
2727

2828
from codat_bankfeeds.types import OptionalNullable, UNSET, UNSET_SENTINEL
2929
class SourceAccountPrototype(BaseModel):

0 commit comments

Comments
 (0)