Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(source-delighted): update end_datetime macro #44601

Merged
merged 3 commits into from
Sep 8, 2024
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
18 changes: 9 additions & 9 deletions airbyte-integrations/connectors/source-delighted/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ definitions:
inject_into: request_parameter
end_datetime:
type: MinMaxDatetime
datetime: "{{ today_utc() }}"
datetime_format: "%Y-%m-%d"
datetime: "{{ now_utc() }}"
datetime_format: "%Y-%m-%d %H:%M:%S.%f%z"
step: P1W
cursor_granularity: PT1S
schema_loader:
Expand Down Expand Up @@ -182,8 +182,8 @@ definitions:
inject_into: request_parameter
end_datetime:
type: MinMaxDatetime
datetime: "{{ today_utc() }}"
datetime_format: "%Y-%m-%d"
datetime: "{{ now_utc() }}"
datetime_format: "%Y-%m-%d %H:%M:%S.%f%z"
step: P1W
cursor_granularity: PT1S
schema_loader:
Expand Down Expand Up @@ -271,8 +271,8 @@ definitions:
inject_into: request_parameter
end_datetime:
type: MinMaxDatetime
datetime: "{{ today_utc() }}"
datetime_format: "%Y-%m-%d"
datetime: "{{ now_utc() }}"
datetime_format: "%Y-%m-%d %H:%M:%S.%f%z"
step: P1W
cursor_granularity: PT1S
schema_loader:
Expand Down Expand Up @@ -362,8 +362,8 @@ definitions:
inject_into: request_parameter
end_datetime:
type: MinMaxDatetime
datetime: "{{ today_utc() }}"
datetime_format: "%Y-%m-%d"
datetime: "{{ now_utc() }}"
datetime_format: "%Y-%m-%d %H:%M:%S.%f%z"
step: P1W
cursor_granularity: PT1S
schema_loader:
Expand Down Expand Up @@ -1004,7 +1004,7 @@ streams:
additionalProperties: true
spec:
type: Spec
documentation_url: https://docsurl.com
documentation_url: https://docs.airbyte.com/integrations/sources/delighted
connection_specification:
$schema: http://json-schema.org/draft-07/schema#
title: Delighted Spec
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: cc88c43f-6f53-4e8a-8c4d-b284baaf9635
dockerImageTag: 0.3.1
dockerImageTag: 0.4.0
dockerRepository: airbyte/source-delighted
documentationUrl: https://docs.airbyte.com/integrations/sources/delighted
githubIssueLabel: source-delighted
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/delighted.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ This source is capable of syncing the following core streams:

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------- |
| 0.4.0 | 2024-09-08 | [44601](https://github.com/airbytehq/airbyte/pull/44601) | Update macro for end_date |
| 0.3.1 | 2024-08-16 | [44196](https://github.com/airbytehq/airbyte/pull/44196) | Bump source-declarative-manifest version |
| 0.3.0 | 2024-08-15 | [44156](https://github.com/airbytehq/airbyte/pull/44156) | Refactor connector to manifest-only format |
| 0.2.19 | 2024-08-10 | [43583](https://github.com/airbytehq/airbyte/pull/43583) | Update dependencies |
Expand Down
Loading