Skip to content

Commit

Permalink
Source Greenhouse: extend users stream schema (#18154)
Browse files Browse the repository at this point in the history
* #17506 source greenhouse: extend users stream schema

* #17506 source greenhouse: upd changelog

* auto-bump connector version

Co-authored-by: Octavia Squidington III <[email protected]>
  • Loading branch information
davydov-d and octavia-squidington-iii authored Oct 25, 2022
1 parent 0b460f5 commit 80f2ad8
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@
- name: Greenhouse
sourceDefinitionId: 59f1e50a-331f-4f09-b3e8-2e8d4d355f44
dockerRepository: airbyte/source-greenhouse
dockerImageTag: 0.2.11
dockerImageTag: 0.3.0
documentationUrl: https://docs.airbyte.com/integrations/sources/greenhouse
icon: greenhouse.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4554,7 +4554,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-greenhouse:0.2.11"
- dockerImage: "airbyte/source-greenhouse:0.3.0"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/greenhouse"
connectionSpecification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ COPY main.py ./
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.11
LABEL io.airbyte.version=0.3.0
LABEL io.airbyte.name=airbyte/source-greenhouse

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,75 @@
},
"linked_candidate_ids": {
"type": ["null", "array"]
},
"departments": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"parent_id": {
"type": ["null", "integer"]
},
"parent_department_external_id": {
"type": ["null", "string"]
},
"child_ids": {
"type": "array"
},
"child_department_external_ids": {
"type": "array"
},
"external_id": {
"type": ["null", "string"]
}
}
}
},
"offices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"name": {
"type": ["null", "string"]
}
}
},
"primary_contact_user_id": {
"type": "integer"
},
"parent_id": {
"type": ["null", "integer"]
},
"parent_office_external_id": {
"type": ["null", "string"]
},
"child_ids": {
"type": "array"
},
"child_office_external_ids": {
"type": "array"
},
"external_id": {
"type": ["null", "string"]
}
}
}
}
}
}
1 change: 1 addition & 0 deletions docs/integrations/sources/greenhouse.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------|
| 0.3.0 | 2022-10-19 | [18154](https://github.com/airbytehq/airbyte/pull/18154) | Extend `Users` stream schema |
| 0.2.11 | 2022-09-27 | [17239](https://github.com/airbytehq/airbyte/pull/17239) | Always install the latest version of Airbyte CDK |
| 0.2.10 | 2022-09-05 | [16338](https://github.com/airbytehq/airbyte/pull/16338) | Implement incremental syncs & fix SATs |
| 0.2.9 | 2022-08-22 | [15800](https://github.com/airbytehq/airbyte/pull/15800) | Bugfix to allow reading sentry.yaml and schemas at runtime |
Expand Down

0 comments on commit 80f2ad8

Please sign in to comment.