Skip to content

Commit

Permalink
šŸ› Source Amazon Seller Partner: updates type to allow double point prā€¦
Browse files Browse the repository at this point in the history
ā€¦ecision. (#17167)

* Changes currencyAmount type to number to allow double point precision.

* Disables backward compatibility test for curent version because data types need to be changed to fix the bug.

* Corrects syntax of disabling backward compatibility tests.

* Skips backward compatibility tests in the other required place.

* Bumps up connector version.

* auto-bump connector version [ci skip]

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
  • Loading branch information
1 parent 034b922 commit c95d8cf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
- name: Amazon Seller Partner
sourceDefinitionId: e55879a8-0ef8-4557-abcf-ab34c53ec460
dockerRepository: airbyte/source-amazon-seller-partner
dockerImageTag: 0.2.25
dockerImageTag: 0.2.27
sourceType: api
documentationUrl: https://docs.airbyte.io/integrations/sources/amazon-seller-partner
icon: amazonsellerpartner.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@
type: "string"
path_in_connector_config:
- "client_secret"
- dockerImage: "airbyte/source-amazon-seller-partner:0.2.25"
- dockerImage: "airbyte/source-amazon-seller-partner:0.2.27"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/amazon-seller-partner"
changelogUrl: "https://docs.airbyte.io/integrations/sources/amazon-seller-partner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.26
LABEL io.airbyte.version=0.2.27
LABEL io.airbyte.name=airbyte/source-amazon-seller-partner
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ connector_image: airbyte/source-amazon-seller-partner:dev
tests:
spec:
- spec_path: "integration_tests/spec.json"
backward_compatibility_tests_config:
disable_for_version: "0.2.26"
connection:
# - config_path: "secrets/config.json"
# status: "succeed"
Expand All @@ -11,6 +13,8 @@ tests:
timeout_seconds: 60
discovery:
- config_path: "secrets/config.json"
backward_compatibility_tests_config:
disable_for_version: "0.2.26"
# TODO: uncomment when at least one record exist
# basic_read:
# - config_path: "secrets/config.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"type": ["null", "string"]
},
"CurrencyAmount": {
"type": ["null", "integer"]
"type": ["null", "number"]
}
}
},
Expand All @@ -31,7 +31,7 @@
"type": ["null", "string"]
},
"CurrencyAmount": {
"type": ["null", "integer"]
"type": ["null", "number"]
}
}
},
Expand All @@ -51,7 +51,7 @@
"type": ["null", "string"]
},
"CurrencyAmount": {
"type": ["null", "integer"]
"type": ["null", "number"]
}
}
},
Expand Down

0 comments on commit c95d8cf

Please sign in to comment.