diff --git a/airbyte-integrations/connectors/source-circleci/manifest.yaml b/airbyte-integrations/connectors/source-circleci/manifest.yaml index c62d5f95652c9..e292092cfa7fd 100644 --- a/airbyte-integrations/connectors/source-circleci/manifest.yaml +++ b/airbyte-integrations/connectors/source-circleci/manifest.yaml @@ -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 @@ -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 @@ -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: @@ -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: @@ -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 @@ -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 @@ -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: @@ -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