Skip to content

Commit

Permalink
🐛 Source Zuora: fixed minimum value of window_in_days (#6960)
Browse files Browse the repository at this point in the history
  • Loading branch information
bazarnov authored Oct 12, 2021
1 parent 9466a6d commit 81fd664
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sourceDefinitionId": "3dc3037c-5ce8-4661-adc2-f7a9e3c5ece5",
"name": "Zuora",
"dockerRepository": "airbyte/source-zuora",
"dockerImageTag": "0.1.1",
"dockerImageTag": "0.1.2",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/zuora"
}
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@
- sourceDefinitionId: 3dc3037c-5ce8-4661-adc2-f7a9e3c5ece5
name: Zuora
dockerRepository: airbyte/source-zuora
dockerImageTag: 0.1.1
dockerImageTag: 0.1.2
documentationUrl: https://docs.airbyte.io/integrations/sources/zuora
sourceType: api
- sourceDefinitionId: 47f25999-dd5e-4636-8c39-e7cea2453331
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-zuora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ COPY source_zuora ./source_zuora
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-zuora
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"description": "The amount of days for each data-chunk begining from start_date. Bigger the value - faster the fetch. (Min=1, as for a Day; Max=364, as for a Year).",
"examples": [30, 60, 90, 120, 200, 364],
"default": 90,
"minimum": 30,
"minimum": 1,
"maximum": 364
},
"client_id": {
Expand Down Expand Up @@ -51,7 +51,7 @@
"oauth2Specification": {
"rootObject": [],
"oauthFlowInitParameters": [["client_id"], ["client_secret"]],
"oauthFlowOutputParameters": [["access_token"]]
"oauthFlowOutputParameters": [["client_id"], ["client_secret"]]
}
}
}
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/zuora.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ Usually, the very first sync operation for all of the objects inside Zuora accou

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.2 | 2021-10-11 | [6960](https://github.com/airbytehq/airbyte/pull/6960) | Change minimum value for `Window_in_days` to 1, instead of 30 |
| 0.1.1 | 2021-10-01 | [6575](https://github.com/airbytehq/airbyte/pull/6575) | Added OAuth support for Airbyte Cloud |
| 0.1.0 | 2021-08-01 | [4661](https://github.com/airbytehq/airbyte/pull/4661) | Initial release of Native Zuora connector for Airbyte |

0 comments on commit 81fd664

Please sign in to comment.