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 zoho-crm: remove nullable field #11841

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -9441,9 +9441,7 @@
- "Sandbox"
start_datetime:
title: "Start Date"
type:
- "null"
- "string"
type: "string"
examples:
- "2000-01-01"
- "2000-01-01 13:00"
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-zoho-crm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_zoho_crm ./source_zoho_crm
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/source-zoho-crm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
"title": "Zoho Crm Configuration",
"type": "object",
"required": [
"client_id", "client_secret", "refresh_token", "environment", "dc_region", "edition"
"client_id",
"client_secret",
"refresh_token",
"environment",
"dc_region",
"edition"
],
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -41,8 +46,14 @@
},
"start_datetime": {
"title": "Start Date",
"type": ["null", "string"],
"examples": ["2000-01-01", "2000-01-01 13:00", "2000-01-01 13:00:00", "2000-01-01T13:00+00:00", "2000-01-01T13:00:00-07:00"],
"type": "string",
"examples": [
"2000-01-01",
"2000-01-01 13:00",
"2000-01-01 13:00:00",
"2000-01-01T13:00+00:00",
"2000-01-01T13:00:00-07:00"
],
"description": "ISO 8601, for instance: `YYYY-MM-DD`, `YYYY-MM-DD HH:MM:SS+HH:MM`",
"format": "date-time"
},
Expand Down
7 changes: 4 additions & 3 deletions docs/integrations/sources/zoho-crm.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ Make sure to complete the auth flow quickly, as the initial token granted by Zoh

## Changelog

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:----------------|
| 0.1.0 | 2022-03-30 | [11193](https://github.com/airbytehq/airbyte/pull/11193) | Initial release |
| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:--------------------------------------|
| 0.1.1 | 2022-04-08 | [11841](https://github.com/airbytehq/airbyte/pull/11841) | Change the type of the start_datetime |
| 0.1.0 | 2022-03-30 | [11193](https://github.com/airbytehq/airbyte/pull/11193) | Initial release |