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

Source Linnworks: improve streams ProcessedOrders and ProcessedOrderDetails #8226

Merged
merged 23 commits into from
Dec 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d845fd5
Add processed_order_details catalog
monai Nov 24, 2021
92199eb
Update description strings
monai Nov 24, 2021
bf8a405
Change cursor field to dProcessedOn
monai Nov 24, 2021
f4f030e
Make ProcessedOrderDetails stream incremental
monai Nov 24, 2021
7640f7a
Update sample state to fetch more recent data
monai Nov 24, 2021
c4e361f
Fix tests
monai Nov 24, 2021
b0c6baf
Update changelog
monai Nov 24, 2021
0d1d1ff
Merge branch 'master' into linnworks-pod
monai Nov 29, 2021
24e9a5d
Merge branch 'master' into linnworks-pod
monai Nov 29, 2021
e6811ac
Cleanup merge artifact
monai Nov 29, 2021
d1ba096
Update image tag
monai Nov 29, 2021
4f410aa
Run gradlew format
monai Nov 29, 2021
92550d5
Merge branch 'master' into linnworks-pod
monai Dec 6, 2021
1ce92d7
Merge branch 'master' into linnworks-pod
alafanechere Dec 6, 2021
ea5fd2d
do not bump in source spec before publish
alafanechere Dec 6, 2021
c00bfc2
add doc url in spec.json
alafanechere Dec 6, 2021
762752e
try to explicitely define config file name
alafanechere Dec 6, 2021
9fa54ae
declare nullable fields
alafanechere Dec 7, 2021
81555ba
remove specific config file name for linnworks cred in ci_credentials.sh
alafanechere Dec 7, 2021
8596123
Merge branch 'master' into linnworks-pod
monai Dec 8, 2021
ff34f0a
Merge branch 'master' into augustin/publish-linnworks-pod
alafanechere Dec 16, 2021
ad9c849
Merge remote-tracking branch 'labonaras/linnworks-pod' into augustin/…
alafanechere Dec 16, 2021
3f40a86
update source_specs
alafanechere Dec 16, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@
- name: Linnworks
sourceDefinitionId: 7b86879e-26c5-4ef6-a5ce-2be5c7b46d1e
dockerRepository: airbyte/source-linnworks
dockerImageTag: 0.1.3
dockerImageTag: 0.1.4
documentationUrl: https://docs.airbyte.io/integrations/sources/linnworks
icon: linnworks.svg
sourceType: api
Expand Down
4 changes: 2 additions & 2 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3436,9 +3436,9 @@
- - "client_secret"
oauthFlowOutputParameters:
- - "refresh_token"
- dockerImage: "airbyte/source-linnworks:0.1.3"
- dockerImage: "airbyte/source-linnworks:0.1.4"
spec:
documentationUrl: "https://docsurl.com"
documentationUrl: "https://docs.airbyte.io/integrations/sources/linnworks"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Linnworks Spec"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_linnworks ./source_linnworks
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.name=airbyte/source-linnworks
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"processed_orders": {
"dReceivedDate": "2050-01-01T00:00:00+00:00"
"dProcessedOn": "2050-01-01T00:00:00+00:00"
},
"processed_order_details": {
"ProcessedDateTime": "2050-01-01T00:00:00+00:00"
}
}
Loading