Skip to content

Commit

Permalink
Fix Greenhouse employee_id type (#11941)
Browse files Browse the repository at this point in the history
* Fix Greenhouse employee_id type

* correct schema for ci test

* bump connector version and doc

* update doc

Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
  • Loading branch information
remisalmon and marcosmarxm authored Apr 15, 2022
1 parent 0f8e11e commit 67dd934
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
- name: Greenhouse
sourceDefinitionId: 59f1e50a-331f-4f09-b3e8-2e8d4d355f44
dockerRepository: airbyte/source-greenhouse
dockerImageTag: 0.2.6
dockerImageTag: 0.2.7
documentationUrl: https://docs.airbyte.io/integrations/sources/greenhouse
icon: greenhouse.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3229,7 +3229,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-greenhouse:0.2.6"
- dockerImage: "airbyte/source-greenhouse:0.2.7"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/greenhouse"
connectionSpecification:
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.6
LABEL io.airbyte.version=0.2.7
LABEL io.airbyte.name=airbyte/source-greenhouse
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,19 @@
"type": "object",
"properties": {
"name": {
"type": "string"
"type": ["null", "string"]
},
"last_name": {
"type": "string"
"type": ["null", "string"]
},
"id": {
"type": "integer"
},
"first_name": {
"type": "string"
"type": ["null", "string"]
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,19 +178,19 @@
"type": "object",
"properties": {
"name": {
"type": "string"
"type": ["null", "string"]
},
"last_name": {
"type": "string"
"type": ["null", "string"]
},
"id": {
"type": "integer"
},
"first_name": {
"type": "string"
"type": ["null", "string"]
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"type": "string"
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand All @@ -70,7 +70,7 @@
"type": "string"
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}
},
"employee_id": {
"type": ["null", "integer"]
"type": ["null", "string"]
},
"linked_candidate_ids": {
"type": ["null", "array"]
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/greenhouse.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Please follow the [Greenhouse documentation for generating an API key](https://d

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.2.7 | 2022-04-15 | [11941](https://github.com/airbytehq/airbyte/pull/11941) | Correct Schema data type for Applications, Candidates, Scorecards and Users |
| 0.2.6 | 2021-11-08 | [7607](https://github.com/airbytehq/airbyte/pull/7607) | Implement demographics streams support. Update SAT for demographics streams |
| 0.2.5 | 2021-09-22 | [6377](https://github.com/airbytehq/airbyte/pull/6377) | Refactor the connector to use CDK. Implement additional stream support |
| 0.2.4 | 2021-09-15 | [6238](https://github.com/airbytehq/airbyte/pull/6238) | added identification of accessible streams for API keys with limited permissions |

0 comments on commit 67dd934

Please sign in to comment.