Skip to content

Commit

Permalink
Release v22.3.0 from PR #497
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins User committed Oct 17, 2023
2 parents 7ee858b + 021cd01 commit 28b03b3
Show file tree
Hide file tree
Showing 113 changed files with 10,632 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an

## [Unreleased]

## [22.3.0] - 2023-10-17
- Add `Projects`, `ProjectTemplates` and `Tasks` public routes.

## [22.2.0] - 2023-10-11
### Changed
- Changed node version in .nvmrc and fixed vulnerable dependencies
Expand Down Expand Up @@ -582,7 +585,8 @@ structure
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
* Fixed typo in lead example response (`crrency` to `currency`)

[Unreleased]: https://github.com/pipedrive/api-docs/compare/v22.2.0...HEAD
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v22.3.0...HEAD
[22.3.0]: https://github.com/pipedrive/api-docs/compare/v22.2.0...v22.3.0
[22.2.0]: https://github.com/pipedrive/api-docs/compare/v22.1.0...v22.2.0
[22.1.0]: https://github.com/pipedrive/api-docs/compare/v22.0.2...v22.1.0
[22.0.2]: https://github.com/pipedrive/api-docs/compare/v22.0.1...v22.0.2
Expand Down
75 changes: 75 additions & 0 deletions README.md

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions docs/AddProjectResponse201.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.AddProjectResponse201

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**ProjectResponseObject**](ProjectResponseObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/AddTaskResponse201.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.AddTaskResponse201

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**TaskResponseObject**](TaskResponseObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


10 changes: 10 additions & 0 deletions docs/DeleteProject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Pipedrive.DeleteProject

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | If the request was successful or not | [optional]
**data** | [**DeleteProjectData**](DeleteProjectData.md) | | [optional]


9 changes: 9 additions & 0 deletions docs/DeleteProjectData.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Pipedrive.DeleteProjectData

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Number** | The ID of the project that was deleted | [optional]


11 changes: 11 additions & 0 deletions docs/DeleteProjectResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.DeleteProjectResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**DeleteProject**](DeleteProject.md) | | [optional]
**additionalData** | **Object** | | [optional]


10 changes: 10 additions & 0 deletions docs/DeleteTask.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Pipedrive.DeleteTask

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | If the request was successful or not | [optional]
**data** | [**DeleteTaskData**](DeleteTaskData.md) | | [optional]


9 changes: 9 additions & 0 deletions docs/DeleteTaskData.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Pipedrive.DeleteTaskData

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Number** | The ID of the task that was deleted | [optional]


11 changes: 11 additions & 0 deletions docs/DeleteTaskResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.DeleteTaskResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**DeleteTask**](DeleteTask.md) | | [optional]
**additionalData** | **Object** | | [optional]


2 changes: 2 additions & 0 deletions docs/FilterType.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@

* `activity` (value: `"activity"`)

* `projects` (value: `"projects"`)


24 changes: 24 additions & 0 deletions docs/FullProjectObject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Pipedrive.FullProjectObject

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **String** | The title of the project | [optional]
**boardId** | **Number** | The ID of the board this project is associated with | [optional]
**phaseId** | **Number** | The ID of the phase this project is associated with | [optional]
**description** | **String** | The description of the project | [optional]
**status** | **String** | The status of the project | [optional]
**ownerId** | **Number** | The ID of a project owner | [optional]
**startDate** | **Date** | The start date of the project. Format: YYYY-MM-DD. | [optional]
**endDate** | **Date** | The end date of the project. Format: YYYY-MM-DD. | [optional]
**dealIds** | **[Number]** | An array of IDs of the deals this project is associated with | [optional]
**orgId** | **Number** | The ID of the organization this project is associated with | [optional]
**personId** | **Number** | The ID of the person this project is associated with | [optional]
**labels** | **[Number]** | An array of IDs of the labels this project has | [optional]
**addTime** | **String** | The creation date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**updateTime** | **String** | The update date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**statusChangeTime** | **String** | The status changed date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**archiveTime** | **String** | The archived date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. If not archived then 'null'. | [optional]


19 changes: 19 additions & 0 deletions docs/FullTaskObject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Pipedrive.FullTaskObject

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **String** | The title of the task | [optional]
**projectId** | **Number** | The ID of the project this task is associated with | [optional]
**description** | **String** | The description of the task | [optional]
**parentTaskId** | **Number** | The ID of a parent task. Can not be ID of a task which is already a subtask. | [optional]
**assigneeId** | **Number** | The ID of the user who will be the assignee of the task | [optional]
**done** | [**NumberBoolean**](NumberBoolean.md) | Whether the task is done or not. 0 = Not done, 1 = Done. | [optional]
**dueDate** | **Date** | The due date of the task. Format: YYYY-MM-DD. | [optional]
**creatorId** | **Number** | The creator of a task | [optional]
**addTime** | **String** | The creation date and time of the task in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**updateTime** | **String** | The update date and time of the task in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**markedAsDoneTime** | **String** | The marked as done date and time of the task in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectBoardResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectBoardResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**ProjectBoardObject**](ProjectBoardObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectBoardsResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectBoardsResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**[ProjectBoardObject]**](ProjectBoardObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectGroupsResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectGroupsResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**[ProjectGroupsObject]**](ProjectGroupsObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectPhaseResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectPhaseResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**ProjectPhaseObject**](ProjectPhaseObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectPhasesResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectPhasesResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**[ProjectPhaseObject]**](ProjectPhaseObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectPlanResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectPlanResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**[ProjectPlanItemObject]**](ProjectPlanItemObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**ProjectResponseObject**](ProjectResponseObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectTemplateResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectTemplateResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**TemplateResponseObject**](TemplateResponseObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectTemplatesResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectTemplatesResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**[TemplateResponseObject]**](TemplateResponseObject.md) | | [optional]
**additionalData** | [**AdditionalDataWithCursorPagination**](AdditionalDataWithCursorPagination.md) | | [optional]


11 changes: 11 additions & 0 deletions docs/GetProjectsResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetProjectsResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**[ProjectResponseObject]**](ProjectResponseObject.md) | | [optional]
**additionalData** | [**AdditionalDataWithCursorPagination**](AdditionalDataWithCursorPagination.md) | | [optional]


11 changes: 11 additions & 0 deletions docs/GetTaskResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetTaskResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**TaskResponseObject**](TaskResponseObject.md) | | [optional]
**additionalData** | **Object** | | [optional]


11 changes: 11 additions & 0 deletions docs/GetTasksResponse200.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.GetTasksResponse200

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **Boolean** | | [optional]
**data** | [**[TaskResponseObject]**](TaskResponseObject.md) | | [optional]
**additionalData** | [**AdditionalDataWithCursorPagination**](AdditionalDataWithCursorPagination.md) | | [optional]


13 changes: 13 additions & 0 deletions docs/ProjectBoardObject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Pipedrive.ProjectBoardObject

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Number** | The ID of the project board | [optional]
**name** | **String** | Name of a project board | [optional]
**orderNr** | **Number** | The order of a board | [optional]
**addTime** | **String** | The creation date and time of the board in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**updateTime** | **String** | The update date and time of the board in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]


11 changes: 11 additions & 0 deletions docs/ProjectGroupsObject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.ProjectGroupsObject

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Number** | ID of the group | [optional]
**name** | **String** | Name of the group | [optional]
**orderNr** | **Number** | Order number of the group | [optional]


9 changes: 9 additions & 0 deletions docs/ProjectId.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Pipedrive.ProjectId

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Number** | The ID of the project, generated when the task was created | [optional]


11 changes: 11 additions & 0 deletions docs/ProjectMandatoryObjectFragment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pipedrive.ProjectMandatoryObjectFragment

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **String** | The title of the project | [optional]
**boardId** | **Number** | The ID of the board this project is associated with | [optional]
**phaseId** | **Number** | The ID of the phase this project is associated with | [optional]


12 changes: 12 additions & 0 deletions docs/ProjectNotChangeableObjectFragment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Pipedrive.ProjectNotChangeableObjectFragment

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**addTime** | **String** | The creation date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**updateTime** | **String** | The update date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**statusChangeTime** | **String** | The status changed date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**archiveTime** | **String** | The archived date and time of the project in UTC. Format: YYYY-MM-DD HH:MM:SS. If not archived then 'null'. | [optional]


17 changes: 17 additions & 0 deletions docs/ProjectObjectFragment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Pipedrive.ProjectObjectFragment

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**description** | **String** | The description of the project | [optional]
**status** | **String** | The status of the project | [optional]
**ownerId** | **Number** | The ID of a project owner | [optional]
**startDate** | **Date** | The start date of the project. Format: YYYY-MM-DD. | [optional]
**endDate** | **Date** | The end date of the project. Format: YYYY-MM-DD. | [optional]
**dealIds** | **[Number]** | An array of IDs of the deals this project is associated with | [optional]
**orgId** | **Number** | The ID of the organization this project is associated with | [optional]
**personId** | **Number** | The ID of the person this project is associated with | [optional]
**labels** | **[Number]** | An array of IDs of the labels this project has | [optional]


14 changes: 14 additions & 0 deletions docs/ProjectPhaseObject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Pipedrive.ProjectPhaseObject

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Number** | The ID of the project phase | [optional]
**name** | **String** | Name of a project phase | [optional]
**boardId** | **Number** | The ID of the project board this phase is linked to | [optional]
**orderNr** | **Number** | The order of a phase | [optional]
**addTime** | **String** | The creation date and time of the board in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]
**updateTime** | **String** | The update date and time of the board in UTC. Format: YYYY-MM-DD HH:MM:SS. | [optional]


Loading

0 comments on commit 28b03b3

Please sign in to comment.