Skip to content

Commit

Permalink
šŸ› Source Shopify: fix for mismatched number of tables during normalizā€¦
Browse files Browse the repository at this point in the history
ā€¦ation (airbytehq#8597)
  • Loading branch information
bazarnov authored Dec 16, 2021
1 parent bc1ff91 commit fb834c9
Show file tree
Hide file tree
Showing 18 changed files with 634 additions and 1,182 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "9da77001-af33-4bcd-be46-6252bf9342b9",
"name": "Shopify",
"dockerRepository": "airbyte/source-shopify",
"dockerImageTag": "0.1.25",
"dockerImageTag": "0.1.26",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/shopify",
"icon": "shopify.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@
- name: Shopify
sourceDefinitionId: 9da77001-af33-4bcd-be46-6252bf9342b9
dockerRepository: airbyte/source-shopify
dockerImageTag: 0.1.25
dockerImageTag: 0.1.26
documentationUrl: https://docs.airbyte.io/integrations/sources/shopify
icon: shopify.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5957,7 +5957,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-shopify:0.1.25"
- dockerImage: "airbyte/source-shopify:0.1.26"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/shopify"
connectionSpecification:
Expand Down Expand Up @@ -5990,6 +5990,7 @@
- "client_id"
- "client_secret"
- "access_token"
- "auth_method"
properties:
auth_method:
type: "string"
Expand All @@ -6014,6 +6015,7 @@
type: "object"
required:
- "api_password"
- "auth_method"
properties:
auth_method:
type: "string"
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-shopify/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ COPY source_shopify ./source_shopify
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.25
LABEL io.airbyte.version=0.1.26
LABEL io.airbyte.name=airbyte/source-shopify
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"custom_collections": {
"updated_at": "2024-07-19T07:01:37-07:00"
},
"orders_refunds": {
"order_refunds": {
"created_at": "2024-07-19T06:41:47-07:00"
},
"orders_risks": {
"order_risks": {
"id": 9991307599038
},
"transactions": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
},
{
"stream": {
"name": "orders_refunds",
"name": "order_refunds",
"json_schema": {},
"supported_sync_modes": ["incremental", "full_refresh"],
"source_defined_cursor": true,
Expand All @@ -110,7 +110,7 @@
},
{
"stream": {
"name": "orders_risks",
"name": "order_risks",
"json_schema": {},
"supported_sync_modes": ["incremental", "full_refresh"],
"source_defined_cursor": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"custom_collections": {
"updated_at": "2021-08-18T02:39:34-07:00"
},
"orders_refunds": {
"order_refunds": {
"created_at": "2021-09-09T02:57:43-07:00"
},
"orders_risks": {
Expand Down
Loading

0 comments on commit fb834c9

Please sign in to comment.