Skip to content

Commit

Permalink
source-outreach: fix record parsing and cursor field access (airbyteh…
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored Jul 4, 2022
1 parent 5cdf2f4 commit 65c2389
Show file tree
Hide file tree
Showing 11 changed files with 938 additions and 975 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@
- sourceDefinitionId: 3490c201-5d95-4783-b600-eaf07a4c7787
name: Outreach
dockerRepository: airbyte/source-outreach
dockerImageTag: 0.1.1
dockerImageTag: 0.1.2
documentationUrl: https://docs.airbyte.io/integrations/sources/outreach
icon: outreach.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6407,7 +6407,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-outreach:0.1.1"
- dockerImage: "airbyte/source-outreach:0.1.2"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/outreach"
connectionSpecification:
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-outreach/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_outreach ./source_outreach
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.version=0.1.2
LABEL io.airbyte.name=airbyte/source-outreach
Original file line number Diff line number Diff line change
Expand Up @@ -6,38 +6,38 @@
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["attributes/updatedAt"],
"default_cursor_field": ["updatedAt"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": ["attributes", "updatedAt"]
"cursor_field": ["updatedAt"]
},
{
"stream": {
"name": "sequences",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["attributes/updatedAt"],
"default_cursor_field": ["updatedAt"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": ["attributes", "updatedAt"]
"cursor_field": ["updatedAt"]
},
{
"stream": {
"name": "sequence_states",
"json_schema": {},
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["attributes/updatedAt"],
"default_cursor_field": ["updatedAt"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": ["attributes", "updatedAt"]
"cursor_field": ["updatedAt"]
}
]
}
Loading

0 comments on commit 65c2389

Please sign in to comment.