Skip to content

Commit

Permalink
feat: Update API to 2024-09-01
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Oct 11, 2024
1 parent 28844fb commit b953f0c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ A full list of supported settings and capabilities is available by running: `tap
* 3.10
* 3.11
* 3.12
* 3.13

### Source Authentication and Authorization

Expand Down
12 changes: 6 additions & 6 deletions tap_hookdeck/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Connections(HookdeckStream):
"""Connections stream."""

name = "connections"
path = "/2023-07-01/connections"
path = "/2024-09-01/connections"
primary_keys: t.ClassVar[list[str]] = ["id"]

# Incremental not supported
Expand Down Expand Up @@ -139,7 +139,7 @@ class Destinations(HookdeckStream):
"""Destinations stream."""

name = "destinations"
path = "/2023-07-01/destinations"
path = "/2024-09-01/destinations"
primary_keys: t.ClassVar[list[str]] = ["id"]

# Incremental not supported
Expand All @@ -155,7 +155,7 @@ class Sources(HookdeckStream):
"""Sources stream."""

name = "sources"
path = "/2023-07-01/sources"
path = "/2024-09-01/sources"
primary_keys: t.ClassVar[list[str]] = ["id"]

# Incremental not supported
Expand All @@ -171,7 +171,7 @@ class IssueTriggers(HookdeckStream):
"""Issue triggers stream."""

name = "issue_triggers"
path = "/2023-07-01/issue-triggers"
path = "/2024-09-01/issue-triggers"
primary_keys: t.ClassVar[list[str]] = ["id"]

# Incremental not supported
Expand Down Expand Up @@ -212,7 +212,7 @@ class Transformations(HookdeckStream):
"""Transformations stream."""

name = "transformations"
path = "/2023-07-01/transformations"
path = "/2024-09-01/transformations"
primary_keys: t.ClassVar[list[str]] = ["id"]

# Incremental not supported
Expand All @@ -236,7 +236,7 @@ class Requests(HookdeckStream):
"""Requests stream."""

name = "requests"
path = "/2023-07-01/requests"
path = "/2024-09-01/requests"
primary_keys: t.ClassVar[list[str]] = ["id"]

# Incremental not supported
Expand Down

0 comments on commit b953f0c

Please sign in to comment.