Skip to content
Open
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
@@ -1,11 +1,11 @@
---
title: "Pipedrive (v1): Update bookmarking for ordered streams"
title: "Pipedrive (v2): Update bookmarking for ordered streams"
content-type: "changelog-entry"
date: 2026-05-04
entry-type: improvement
entry-category: integration
connection-id: pipedrive
connection-version: 1
connection-version: 2
pull-request: "https://github.com/singer-io/tap-pipedrive/pull/157"
---
{{ site.data.changelog.metadata.single-integration | flatify }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: "Pipedrive (v1): Add support for additional_fields"
title: "Pipedrive (v2): Add support for additional_fields"
content-type: "changelog-entry"
date: 2026-05-05
entry-type: improvement
entry-category: integration
connection-id: pipedrive
connection-version: 1
connection-version: 2
pull-request: "https://github.com/singer-io/tap-pipedrive/pull/158"
---
{{ site.data.changelog.metadata.single-integration | flatify }}
Expand Down
305 changes: 305 additions & 0 deletions _data/taps/schemas/pipedrive/v2/json/activities.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,305 @@
{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"company_id": {
"type": [
"null",
"integer"
]
},
"user_id": {
"type": [
"null",
"integer"
]
},
"done": {
"type": [
"null",
"boolean"
]
},
"type": {
"type": [
"null",
"string"
]
},
"reference_type": {
"type": [
"null",
"string"
]
},
"reference_id": {
"type": [
"null",
"integer"
]
},
"due_date": {
"type": [
"null",
"string"
]
},
"due_time": {
"type": [
"null",
"string"
]
},
"duration": {
"type": [
"null",
"string"
]
},
"add_time": {
"type": [
"null",
"string"
],
"format": "date-time"
},
"marked_as_done_time": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"subject": {
"type": [
"null",
"string"
]
},
"deal_id": {
"type": [
"null",
"integer"
]
},
"org_id": {
"type": [
"null",
"integer"
]
},
"person_id": {
"type": [
"null",
"integer"
]
},
"is_deleted": {
"type": [
"null",
"boolean"
]
},
"update_time": {
"type": [
"null",
"string"
],
"format": "date-time"
},
"note": {
"type": [
"null",
"string"
]
},
"participants": {
"type": [
"null",
"array"
],
"items": {
"type": "object",
"properties": {
"person_id": {
"type": "integer"
},
"primary_flag": {
"type": "boolean"
}
}
}
},
"owner_id": {
"type": [
"null",
"integer"
]
},
"creator_user_id": {
"type": [
"null",
"integer"
]
},
"location": {
"type": [
"null",
"object"
],
"properties": {
"value": {
"type": [
"null",
"string"
]
},
"country": {
"type": [
"null",
"string"
]
},
"admin_area_level_1": {
"type": [
"null",
"string"
]
},
"admin_area_level_2": {
"type": [
"null",
"string"
]
},
"locality": {
"type": [
"null",
"string"
]
},
"sublocality": {
"type": [
"null",
"string"
]
},
"route": {
"type": [
"null",
"string"
]
},
"street_number": {
"type": [
"null",
"string"
]
},
"postal_code": {
"type": [
"null",
"string"
]
}
}
},
"attendees": {
"type": [
"null",
"array"
],
"items": {
"type": "object",
"properties": {
"email": {
"type": [
"null",
"string"
]
},
"name": {
"type": [
"null",
"string"
]
},
"status": {
"type": [
"null",
"string"
]
},
"is_organizer": {
"type": [
"null",
"boolean"
]
},
"person_id": {
"type": [
"null",
"integer"
]
},
"org_id": {
"type": [
"null",
"integer"
]
}
}
}
},
"busy": {
"type": [
"null",
"boolean"
]
},
"public_description": {
"type": [
"null",
"string"
]
},
"lead_id": {
"type": [
"null",
"string"
]
},
"project_id": {
"type": [
"null",
"string"
]
},
"priority": {
"type": [
"null",
"string"
]
},
"conference_meeting_client": {
"type": [
"null",
"string"
]
},
"conference_meeting_url": {
"type": [
"null",
"string"
]
},
"conference_meeting_id": {
"type": [
"null",
"string"
]
}
}
}
62 changes: 62 additions & 0 deletions _data/taps/schemas/pipedrive/v2/json/activity_types.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"properties": {
"active_flag": {
"type": [
"null",
"boolean"
]
},
"add_time": {
"type": [
"null",
"date-time"
]
},
"color": {
"type": [
"null",
"string"
]
},
"icon_key": {
"type": [
"null",
"string"
]
},
"id": {
"type": "integer"
},
"is_custom_flag": {
"type": [
"null",
"boolean"
]
},
"key_string": {
"type": [
"null",
"string"
]
},
"name": {
"type": [
"null",
"string"
]
},
"order_nr": {
"type": [
"null",
"integer"
]
},
"update_time": {
"type": [
"null",
"date-time"
]
}
},
"type": "object"
}
Loading