Extend Pipedrive node (#1868)

* Implementation of fetures to fetch data from Pipedrive API e user can select by dropdown

* Search operation to Deals

* Add custom fields for deal and person to select by dropdown

*  Improvements to #1845

Co-authored-by: Rodrigo Correia <rodrigoscdc@gmail.com>
This commit is contained in:
Ricardo Espinoza
2021-06-06 14:54:49 -04:00
committed by GitHub
parent a73a460d8a
commit 114fd3b3a6
2 changed files with 643 additions and 91 deletions

View File

@@ -98,7 +98,7 @@ export async function pipedriveApiRequest(this: IHookFunctions | IExecuteFunctio
additionalData: responseData.additional_data,
data: responseData.data,
};
} catch(error) {
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}
}