Skip to content

Commit 5e33c57

Browse files
kylerominesnatikgadzhioctavia-squidington-iii
authored
🐛 Source Outreach: remove stream_state interpolation (#55180)
Co-authored-by: Natik Gadzhi <[email protected]> Co-authored-by: Octavia Squidington III <[email protected]>
1 parent 3f3eba3 commit 5e33c57

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

airbyte-integrations/connectors/source-outreach/components.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ def get_request_params(
4747
next_page_token: Optional[Mapping[str, Any]] = None,
4848
) -> MutableMapping[str, Any]:
4949
params = {}
50-
if self.cursor_field in stream_state:
51-
params[f"filter[{self.cursor_field}]"] = stream_state[self.cursor_field] + "..inf"
50+
if self.cursor_field.string in stream_state:
51+
params[f"filter[{self.cursor_field.string}]"] = stream_state[self.cursor_field.string] + "..inf"
5252
return params

airbyte-integrations/connectors/source-outreach/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ data:
2828
connectorSubtype: api
2929
connectorType: source
3030
definitionId: 3490c201-5d95-4783-b600-eaf07a4c7787
31-
dockerImageTag: 1.1.5
31+
dockerImageTag: 1.1.6
3232
dockerRepository: airbyte/source-outreach
3333
githubIssueLabel: source-outreach
3434
icon: outreach.svg

docs/integrations/sources/outreach.md

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ List of available streams:
5656

5757
| Version | Date | Pull Request | Subject |
5858
| :------ |:-----------| :----- | :------ |
59+
| 1.1.6 | 2025-03-09 | [55180](https://github.com/airbytehq/airbyte/pull/55180) | 🐛 Source Outreach: remove stream_state interpolation |
5960
| 1.1.5 | 2025-03-08 | [55561](https://github.com/airbytehq/airbyte/pull/55561) | Update dependencies |
6061
| 1.1.4 | 2025-03-01 | [54611](https://github.com/airbytehq/airbyte/pull/54611) | Update dependencies |
6162
| 1.1.3 | 2025-02-24 | [53976](https://github.com/airbytehq/airbyte/pull/54654) | Lower mailings endpoint page size to 100 from 1000 |

0 commit comments

Comments
 (0)