Skip to content

Commit

Permalink
chore: auto-fix lint and format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
octavia-squidington-iii committed Sep 29, 2024
1 parent 90cd688 commit 9306445
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions airbyte-integrations/connectors/source-circleci/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ definitions:
field_name: page-token
pagination_strategy:
type: CursorPagination
cursor_value: "{{ response.get(\"next_page_token\", {}) }}"
stop_condition: "{{ not response.get(\"next_page_token\", {}) }}"
cursor_value: '{{ response.get("next_page_token", {}) }}'
stop_condition: '{{ not response.get("next_page_token", {}) }}'
incremental_sync:
type: DatetimeBasedCursor
cursor_field: created_at
Expand All @@ -67,7 +67,7 @@ definitions:
datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ"
start_datetime:
type: MinMaxDatetime
datetime: "{{ config[\"start_date\"] }}"
datetime: '{{ config["start_date"] }}'
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
end_datetime:
type: MinMaxDatetime
Expand Down Expand Up @@ -117,8 +117,8 @@ definitions:
field_name: page-token
pagination_strategy:
type: CursorPagination
cursor_value: "{{ response.get(\"next_page_token\", {}) }}"
stop_condition: "{{ not response.get(\"next_page_token\", {}) }}"
cursor_value: '{{ response.get("next_page_token", {}) }}'
stop_condition: '{{ not response.get("next_page_token", {}) }}'
schema_loader:
type: InlineSchemaLoader
schema:
Expand Down Expand Up @@ -163,8 +163,8 @@ definitions:
field_name: page-token
pagination_strategy:
type: CursorPagination
cursor_value: "{{ response.get(\"next_page_token\", {}) }}"
stop_condition: "{{ not response.get(\"next_page_token\", {}) }}"
cursor_value: '{{ response.get("next_page_token", {}) }}'
stop_condition: '{{ not response.get("next_page_token", {}) }}'
schema_loader:
type: InlineSchemaLoader
schema:
Expand Down Expand Up @@ -209,8 +209,8 @@ definitions:
field_name: page-token
pagination_strategy:
type: CursorPagination
cursor_value: "{{ response.get(\"next_page_token\", {}) }}"
stop_condition: "{{ not response.get(\"next_page_token\", {}) }}"
cursor_value: '{{ response.get("next_page_token", {}) }}'
stop_condition: '{{ not response.get("next_page_token", {}) }}'
incremental_sync:
type: DatetimeBasedCursor
cursor_field: created_at
Expand All @@ -219,7 +219,7 @@ definitions:
datetime_format: "%Y-%m-%dT%H:%M:%S.%fZ"
start_datetime:
type: MinMaxDatetime
datetime: "{{ config[\"start_date\"] }}"
datetime: '{{ config["start_date"] }}'
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
end_datetime:
type: MinMaxDatetime
Expand Down Expand Up @@ -269,8 +269,8 @@ definitions:
field_name: page-token
pagination_strategy:
type: CursorPagination
cursor_value: "{{ response.get(\"next_page_token\", {}) }}"
stop_condition: "{{ not response.get(\"next_page_token\", {}) }}"
cursor_value: '{{ response.get("next_page_token", {}) }}'
stop_condition: '{{ not response.get("next_page_token", {}) }}'
schema_loader:
type: InlineSchemaLoader
schema:
Expand All @@ -280,7 +280,7 @@ definitions:
url_base: https://circleci.com/api/
authenticator:
type: ApiKeyAuthenticator
api_token: "{{ config[\"api_key\"] }}"
api_token: '{{ config["api_key"] }}'
inject_into:
type: RequestOption
field_name: Circle-Token
Expand Down

0 comments on commit 9306445

Please sign in to comment.