Skip to content

Commit

Permalink
🎉 Pipedrive: extend schema for "persons" stream (airbytehq#7875)
Browse files Browse the repository at this point in the history
* extend schema for "persons" stream

Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
  • Loading branch information
grubberr authored and schlattk committed Jan 4, 2022
1 parent 5343b85 commit a827eef
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sourceDefinitionId": "d8286229-c680-4063-8c59-23b9b391c700",
"name": "Pipedrive",
"dockerRepository": "airbyte/source-pipedrive",
"dockerImageTag": "0.1.6",
"dockerImageTag": "0.1.8",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/pipedrive"
}
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
- name: Pipedrive
sourceDefinitionId: d8286229-c680-4063-8c59-23b9b391c700
dockerRepository: airbyte/source-pipedrive
dockerImageTag: 0.1.7
dockerImageTag: 0.1.8
documentationUrl: https://docs.airbyte.io/integrations/sources/pipedrive
sourceType: api
- name: Plaid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4238,7 +4238,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-pipedrive:0.1.7"
- dockerImage: "airbyte/source-pipedrive:0.1.8"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/pipedrive"
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.1.7
LABEL io.airbyte.version=0.1.8
LABEL io.airbyte.name=airbyte/source-pipedrive
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,38 @@
"type": ["null", "boolean"]
},
"phone": {
"type": ["null", "array"]
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"label": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "string"]
},
"primary": {
"type": ["null", "boolean"]
}
}
}
},
"email": {
"type": ["null", "array"]
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"label": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "string"]
},
"primary": {
"type": ["null", "boolean"]
}
}
}
},
"first_char": {
"type": ["null", "string"]
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/pipedrive.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ See [How to find the API token](https://pipedrive.readme.io/docs/how-to-find-the

| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.1.8 | 2021-11-16 | [7875](https://github.com/airbytehq/airbyte/pull/7875) | Extend schema for "persons" stream |
| 0.1.7 | 2021-11-15 | [7968](https://github.com/airbytehq/airbyte/pull/7968) | Update oAuth flow config |
| 0.1.6 | 2021-10-05 | [6821](https://github.com/airbytehq/airbyte/pull/6821) | Add OAuth support |
| 0.1.5 | 2021-09-27 | [6441](https://github.com/airbytehq/airbyte/pull/6441) | Fix normalization error |
Expand Down

0 comments on commit a827eef

Please sign in to comment.