Skip to content

TRAN-1251 nodejs wrapper #124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 22, 2022
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
91 changes: 71 additions & 20 deletions README.md

Large diffs are not rendered by default.

13 changes: 2 additions & 11 deletions docs/Body.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of task |
**duration** | **Number** | Duration of task | [optional]
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
**_date** | **Date** | Task date/time |
**notes** | **String** | Notes added to a task | [optional]
**done** | **Boolean** | Task marked as done | [optional]
**assignToId** | **String** | User id to whom task is assigned | [optional]
**contactsIds** | **[Number]** | Contact ids for contacts linked to this task | [optional]
**dealsIds** | **[String]** | Deal ids for deals a task is linked to | [optional]
**companiesIds** | **[String]** | Companies ids for companies a task is linked to | [optional]
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
**name** | **String** | Name of deal |
**attributes** | **Object** | Attributes fo\\r deal creation | [optional]


11 changes: 5 additions & 6 deletions docs/Body1.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of task |
**duration** | **Number** | Duration of task | [optional]
**name** | **String** | Name of deal | [optional]
**attributes** | **Object** | Attributes for deal update | [optional]
**duration** | **Number** | Duration of task in milliseconds [1 minute = 60000 ms] | [optional]
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
**_date** | **Date** | Task date/time |
**_date** | **Date** | Task due date and time |
**notes** | **String** | Notes added to a task | [optional]
**done** | **Boolean** | Task marked as done | [optional]
**assignToId** | **String** | User id to whom task is assigned | [optional]
**contactsIds** | **[Number]** | Contact ids for contacts linked to this task | [optional]
**dealsIds** | **[String]** | Deal ids for deals a task is linked to | [optional]
**companiesIds** | **[String]** | Companies ids for companies a task is linked to | [optional]
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]


**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
9 changes: 9 additions & 0 deletions docs/Body2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# SibApiV3Sdk.Body2

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of company |
**attributes** | **Object** | Attributes for company creation | [optional]


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

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of company | [optional]
**attributes** | **Object** | Attributes for company update | [optional]


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

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**linkContactIds** | **[Number]** | Contact ids for contacts to be linked with company | [optional]
**unlinkContactIds** | **[Number]** | Contact ids for contacts to be unlinked from company | [optional]
**linkDealsIds** | **[String]** | Deals ids for deals to be linked with company | [optional]
**unlinkDealsIds** | **[String]** | Deals ids for deals to be unlinked from company | [optional]


18 changes: 18 additions & 0 deletions docs/Body5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SibApiV3Sdk.Body5

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of task |
**duration** | **Number** | Duration of task in milliseconds [1 minute = 60000 ms] | [optional]
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
**_date** | **Date** | Task due date and time |
**notes** | **String** | Notes added to a task | [optional]
**done** | **Boolean** | Task marked as done | [optional]
**assignToId** | **String** | User id to whom task is assigned | [optional]
**contactsIds** | **[Number]** | Contact ids for contacts linked to this task | [optional]
**dealsIds** | **[String]** | Deal ids for deals a task is linked to | [optional]
**companiesIds** | **[String]** | Companies ids for companies a task is linked to | [optional]
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]


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

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of task | [optional]
**duration** | **Number** | Duration of task in milliseconds [1 minute = 60000 ms] | [optional]
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. | [optional]
**_date** | **Date** | Task date/time | [optional]
**notes** | **String** | Notes added to a task | [optional]
**done** | **Boolean** | Task marked as done | [optional]
**assignToId** | **String** | User id to whom task is assigned | [optional]
**contactsIds** | **[Number]** | Contact ids for contacts linked to this task | [optional]
**dealsIds** | **[String]** | Deal ids for deals a task is linked to | [optional]
**companiesIds** | **[String]** | Companies ids for companies a task is linked to | [optional]


Loading