Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.14",
]
dependencies = [
"singer-sdk~=0.53.2",
"singer-sdk~=0.54.0a4",
"toolz~=1.1.0",
]

Expand Down
6 changes: 3 additions & 3 deletions tap_planetscaleapi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from singer_sdk import OpenAPISchema, StreamSchema
from singer_sdk.authenticators import APIKeyAuthenticator
from singer_sdk.pagination import BasePageNumberPaginator
from singer_sdk.pagination import PageNumberPaginator
from singer_sdk.streams import RESTStream
from toolz.dicttoolz import get_in

Expand Down Expand Up @@ -109,8 +109,8 @@ def http_headers(self) -> dict[str, str]:
}

@override
def get_new_paginator(self) -> BasePageNumberPaginator:
return BasePageNumberPaginator(1)
def get_new_paginator(self) -> PageNumberPaginator:
return PageNumberPaginator(1)

@override
def get_url_params(self, context: Context | None, next_page_token: Any | None) -> dict[str, Any]:
Expand Down
9 changes: 5 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.