Skip to content

Commit

Permalink
fix(shopify): wrong type for tax_exemptions
Browse files Browse the repository at this point in the history
abandoned_checkouts customer tax_exemptions had the wrong field type
  • Loading branch information
philippeboyd committed Feb 17, 2022
1 parent a56c4fb commit 2668829
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@
- name: Shopify
sourceDefinitionId: 9da77001-af33-4bcd-be46-6252bf9342b9
dockerRepository: airbyte/source-shopify
dockerImageTag: 0.1.31
dockerImageTag: 0.1.32
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 @@ -7041,7 +7041,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-shopify:0.1.31"
- dockerImage: "airbyte/source-shopify:0.1.32"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/shopify"
connectionSpecification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,10 @@
"type": ["null", "string"]
},
"tax_exemptions": {
"type": ["null", "boolean"]
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
},
"id": {
"type": ["null", "integer"]
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/shopify.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ This connector support both: `OAuth 2.0` and `API PASSWORD` (for private applica

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.32 | 2022-02-17 | [10411](https://github.com/airbytehq/airbyte/issues/10411) | Fixed wrong field type for tax_exemptions |
| 0.1.31 | 2022-02-08 | [10175](https://github.com/airbytehq/airbyte/pull/10175) | Fixed compatibility issues for legacy user config |
| 0.1.30 | 2022-01-24 | [9648](https://github.com/airbytehq/airbyte/pull/9648) | Added permission validation before sync |
| 0.1.29 | 2022-01-20 | [9049](https://github.com/airbytehq/airbyte/pull/9248) | Added `shop_url` to the record for all streams |
Expand Down

0 comments on commit 2668829

Please sign in to comment.