@unified-api/typescript-sdk 1.0.34 → 1.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk/models/operations/createtaskproject.d.ts +28 -0
- package/dist/sdk/models/operations/createtaskproject.js +95 -0
- package/dist/sdk/models/operations/createtasktask.d.ts +28 -0
- package/dist/sdk/models/operations/createtasktask.js +95 -0
- package/dist/sdk/models/operations/gettaskproject.d.ts +35 -0
- package/dist/sdk/models/operations/gettaskproject.js +99 -0
- package/dist/sdk/models/operations/gettasktask.d.ts +35 -0
- package/dist/sdk/models/operations/gettasktask.js +99 -0
- package/dist/sdk/models/operations/getunifiedintegrationauth.d.ts +5 -1
- package/dist/sdk/models/operations/getunifiedintegrationauth.js +4 -0
- package/dist/sdk/models/operations/index.d.ts +12 -0
- package/dist/sdk/models/operations/index.js +12 -0
- package/dist/sdk/models/operations/listtaskprojects.d.ts +44 -0
- package/dist/sdk/models/operations/listtaskprojects.js +123 -0
- package/dist/sdk/models/operations/listtasktasks.d.ts +45 -0
- package/dist/sdk/models/operations/listtasktasks.js +127 -0
- package/dist/sdk/models/operations/listunifiedconnections.d.ts +2 -1
- package/dist/sdk/models/operations/listunifiedconnections.js +1 -0
- package/dist/sdk/models/operations/listunifiedintegrations.d.ts +2 -1
- package/dist/sdk/models/operations/listunifiedintegrations.js +1 -0
- package/dist/sdk/models/operations/listunifiedintegrationworkspaces.d.ts +2 -1
- package/dist/sdk/models/operations/listunifiedintegrationworkspaces.js +1 -0
- package/dist/sdk/models/operations/patchtaskproject.d.ts +32 -0
- package/dist/sdk/models/operations/patchtaskproject.js +99 -0
- package/dist/sdk/models/operations/patchtasktask.d.ts +32 -0
- package/dist/sdk/models/operations/patchtasktask.js +99 -0
- package/dist/sdk/models/operations/removetaskproject.d.ts +30 -0
- package/dist/sdk/models/operations/removetaskproject.js +71 -0
- package/dist/sdk/models/operations/removetasktask.d.ts +30 -0
- package/dist/sdk/models/operations/removetasktask.js +71 -0
- package/dist/sdk/models/operations/updatetaskproject.d.ts +32 -0
- package/dist/sdk/models/operations/updatetaskproject.js +99 -0
- package/dist/sdk/models/operations/updatetasktask.d.ts +32 -0
- package/dist/sdk/models/operations/updatetasktask.js +99 -0
- package/dist/sdk/models/shared/crmdeal.d.ts +2 -0
- package/dist/sdk/models/shared/crmdeal.js +10 -0
- package/dist/sdk/models/shared/crmpipeline.d.ts +2 -0
- package/dist/sdk/models/shared/crmpipeline.js +7 -0
- package/dist/sdk/models/shared/crmstage.d.ts +10 -0
- package/dist/sdk/models/shared/crmstage.js +83 -0
- package/dist/sdk/models/shared/genaicontent.d.ts +2 -2
- package/dist/sdk/models/shared/genaicontent.js +2 -2
- package/dist/sdk/models/shared/genaimodel.d.ts +1 -0
- package/dist/sdk/models/shared/genaimodel.js +5 -0
- package/dist/sdk/models/shared/index.d.ts +3 -0
- package/dist/sdk/models/shared/index.js +3 -0
- package/dist/sdk/models/shared/integrationsupport.d.ts +6 -0
- package/dist/sdk/models/shared/integrationsupport.js +12 -1
- package/dist/sdk/models/shared/propertyconnectioncategories.d.ts +2 -1
- package/dist/sdk/models/shared/propertyconnectioncategories.js +1 -0
- package/dist/sdk/models/shared/propertyconnectionpermissions.d.ts +5 -1
- package/dist/sdk/models/shared/propertyconnectionpermissions.js +4 -0
- package/dist/sdk/models/shared/propertyintegrationcategories.d.ts +2 -1
- package/dist/sdk/models/shared/propertyintegrationcategories.js +1 -0
- package/dist/sdk/models/shared/taskproject.d.ts +11 -0
- package/dist/sdk/models/shared/taskproject.js +88 -0
- package/dist/sdk/models/shared/tasktask.d.ts +24 -0
- package/dist/sdk/models/shared/tasktask.js +142 -0
- package/dist/sdk/models/shared/webhook.d.ts +3 -1
- package/dist/sdk/models/shared/webhook.js +2 -0
- package/dist/sdk/project.d.ts +31 -0
- package/dist/sdk/project.js +505 -0
- package/dist/sdk/sdk.d.ts +4 -0
- package/dist/sdk/sdk.js +7 -3
- package/dist/sdk/task.d.ts +55 -0
- package/dist/sdk/task.js +907 -0
- package/docs/sdk/models/operations/categories.md +2 -1
- package/docs/sdk/models/operations/createtaskprojectrequest.md +9 -0
- package/docs/sdk/models/operations/createtaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/createtasktaskrequest.md +9 -0
- package/docs/sdk/models/operations/createtasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/gettaskprojectrequest.md +10 -0
- package/docs/sdk/models/operations/gettaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/gettasktaskrequest.md +10 -0
- package/docs/sdk/models/operations/gettasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/listtaskprojectsrequest.md +16 -0
- package/docs/sdk/models/operations/listtaskprojectsresponse.md +11 -0
- package/docs/sdk/models/operations/listtasktasksrequest.md +17 -0
- package/docs/sdk/models/operations/listtasktasksresponse.md +11 -0
- package/docs/sdk/models/operations/listunifiedintegrationsqueryparamcategories.md +2 -1
- package/docs/sdk/models/operations/patchtaskprojectrequest.md +10 -0
- package/docs/sdk/models/operations/patchtaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/patchtasktaskrequest.md +10 -0
- package/docs/sdk/models/operations/patchtasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/queryparamcategories.md +2 -1
- package/docs/sdk/models/operations/removetaskprojectrequest.md +9 -0
- package/docs/sdk/models/operations/removetaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/removetasktaskrequest.md +9 -0
- package/docs/sdk/models/operations/removetasktaskresponse.md +11 -0
- package/docs/sdk/models/operations/scopes.md +5 -1
- package/docs/sdk/models/operations/updatetaskprojectrequest.md +10 -0
- package/docs/sdk/models/operations/updatetaskprojectresponse.md +11 -0
- package/docs/sdk/models/operations/updatetasktaskrequest.md +10 -0
- package/docs/sdk/models/operations/updatetasktaskresponse.md +11 -0
- package/docs/sdk/models/shared/crmdeal.md +2 -0
- package/docs/sdk/models/shared/crmpipeline.md +1 -0
- package/docs/sdk/models/shared/crmstage.md +14 -0
- package/docs/sdk/models/shared/genaimodel.md +9 -8
- package/docs/sdk/models/shared/integrationsupport.md +1 -0
- package/docs/sdk/models/shared/listprojectid.md +10 -0
- package/docs/sdk/models/shared/objecttype.md +3 -1
- package/docs/sdk/models/shared/propertyconnectioncategories.md +2 -1
- package/docs/sdk/models/shared/propertyconnectionpermissions.md +5 -1
- package/docs/sdk/models/shared/propertyintegrationcategories.md +2 -1
- package/docs/sdk/models/shared/role.md +2 -2
- package/docs/sdk/models/shared/taskproject.md +15 -0
- package/docs/sdk/models/shared/tasktask.md +23 -0
- package/docs/sdk/models/shared/tasktaskstatus.md +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# CreateTaskProjectRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
|
|
8
|
+
| `taskProject` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md) | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# CreateTaskProjectResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskProject` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md) | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# CreateTaskTaskRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
|
|
8
|
+
| `taskTask` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md) | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# CreateTaskTaskResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskTask` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md) | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GetTaskProjectRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
|
|
8
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
9
|
+
| `fields` | *string*[] | :heavy_minus_sign: | Comma-delimited fields to return |
|
|
10
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Project |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GetTaskProjectResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskProject` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md) | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GetTaskTaskRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
|
|
8
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
9
|
+
| `fields` | *string*[] | :heavy_minus_sign: | Comma-delimited fields to return |
|
|
10
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Task |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GetTaskTaskResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskTask` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md) | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# ListTaskProjectsRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
|
|
8
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
9
|
+
| `fields` | *string*[] | :heavy_minus_sign: | Comma-delimited fields to return |
|
|
10
|
+
| `limit` | *number* | :heavy_minus_sign: | N/A |
|
|
11
|
+
| `offset` | *number* | :heavy_minus_sign: | N/A |
|
|
12
|
+
| `order` | *string* | :heavy_minus_sign: | N/A |
|
|
13
|
+
| `parentId` | *string* | :heavy_minus_sign: | N/A |
|
|
14
|
+
| `query` | *string* | :heavy_minus_sign: | Query string to search. eg. email address or name |
|
|
15
|
+
| `sort` | *string* | :heavy_minus_sign: | N/A |
|
|
16
|
+
| `updatedGte` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | Return only results whose updated date is equal or greater to this value |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# ListTaskProjectsResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskProjects` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md)[] | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# ListTaskTasksRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
|
|
8
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
9
|
+
| `fields` | *string*[] | :heavy_minus_sign: | Comma-delimited fields to return |
|
|
10
|
+
| `limit` | *number* | :heavy_minus_sign: | N/A |
|
|
11
|
+
| `offset` | *number* | :heavy_minus_sign: | N/A |
|
|
12
|
+
| `order` | *string* | :heavy_minus_sign: | N/A |
|
|
13
|
+
| `parentId` | *string* | :heavy_minus_sign: | N/A |
|
|
14
|
+
| `projectId` | *string* | :heavy_minus_sign: | N/A |
|
|
15
|
+
| `query` | *string* | :heavy_minus_sign: | Query string to search. eg. email address or name |
|
|
16
|
+
| `sort` | *string* | :heavy_minus_sign: | N/A |
|
|
17
|
+
| `updatedGte` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | Return only results whose updated date is equal or greater to this value |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# ListTaskTasksResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskTasks` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md)[] | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# PatchTaskProjectRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
|
|
8
|
+
| `taskProject` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md) | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
10
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Project |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# PatchTaskProjectResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskProject` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md) | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# PatchTaskTaskRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
|
|
8
|
+
| `taskTask` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md) | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
10
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Task |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# PatchTaskTaskResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskTask` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md) | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# RemoveTaskProjectRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| -------------------- | -------------------- | -------------------- | -------------------- |
|
|
8
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
9
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Project |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# RemoveTaskProjectResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `string` | *string* | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# RemoveTaskTaskRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| -------------------- | -------------------- | -------------------- | -------------------- |
|
|
8
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
9
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Task |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# RemoveTaskTaskResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `string` | *string* | :heavy_minus_sign: | Successful |
|
|
@@ -92,4 +92,8 @@
|
|
|
92
92
|
| `KmsPageRead` | kms_page_read |
|
|
93
93
|
| `KmsPageWrite` | kms_page_write |
|
|
94
94
|
| `KmsCommentRead` | kms_comment_read |
|
|
95
|
-
| `KmsCommentWrite` | kms_comment_write |
|
|
95
|
+
| `KmsCommentWrite` | kms_comment_write |
|
|
96
|
+
| `TaskProjectRead` | task_project_read |
|
|
97
|
+
| `TaskProjectWrite` | task_project_write |
|
|
98
|
+
| `TaskTaskRead` | task_task_read |
|
|
99
|
+
| `TaskTaskWrite` | task_task_write |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# UpdateTaskProjectRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
|
|
8
|
+
| `taskProject` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md) | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
10
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Project |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# UpdateTaskProjectResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskProject` | [shared.TaskProject](../../../sdk/models/shared/taskproject.md) | :heavy_minus_sign: | Successful |
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# UpdateTaskTaskRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
|
|
8
|
+
| `taskTask` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md) | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
|
|
10
|
+
| `id` | *string* | :heavy_check_mark: | ID of the Task |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# UpdateTaskTaskResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
|
|
8
|
+
| `contentType` | *string* | :heavy_check_mark: | HTTP response content type for this operation |
|
|
9
|
+
| `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
|
|
10
|
+
| `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
|
|
11
|
+
| `taskTask` | [shared.TaskTask](../../../sdk/models/shared/tasktask.md) | :heavy_minus_sign: | Successful |
|
|
@@ -15,10 +15,12 @@ A deal represents an opportunity with companies and/or contacts
|
|
|
15
15
|
| `lostReason` | *string* | :heavy_minus_sign: | N/A |
|
|
16
16
|
| `name` | *string* | :heavy_minus_sign: | N/A |
|
|
17
17
|
| `pipeline` | *string* | :heavy_minus_sign: | N/A |
|
|
18
|
+
| `pipelineId` | *string* | :heavy_minus_sign: | N/A |
|
|
18
19
|
| `probability` | *number* | :heavy_minus_sign: | N/A |
|
|
19
20
|
| `raw` | Record<string, *any*> | :heavy_minus_sign: | The raw data returned by the integration for this deal |
|
|
20
21
|
| `source` | *string* | :heavy_minus_sign: | N/A |
|
|
21
22
|
| `stage` | *string* | :heavy_minus_sign: | N/A |
|
|
23
|
+
| `stageId` | *string* | :heavy_minus_sign: | N/A |
|
|
22
24
|
| `tags` | *string*[] | :heavy_minus_sign: | N/A |
|
|
23
25
|
| `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
24
26
|
| `userId` | *string* | :heavy_minus_sign: | N/A |
|
|
@@ -12,4 +12,5 @@
|
|
|
12
12
|
| `isActive` | *boolean* | :heavy_minus_sign: | N/A |
|
|
13
13
|
| `name` | *string* | :heavy_minus_sign: | N/A |
|
|
14
14
|
| `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
|
|
15
|
+
| `stages` | [shared.CrmStage](../../../sdk/models/shared/crmstage.md)[] | :heavy_minus_sign: | N/A |
|
|
15
16
|
| `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# CrmStage
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
|
|
8
|
+
| `active` | *boolean* | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `createdAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
10
|
+
| `dealProbability` | *number* | :heavy_minus_sign: | N/A |
|
|
11
|
+
| `displayOrder` | *number* | :heavy_minus_sign: | N/A |
|
|
12
|
+
| `id` | *string* | :heavy_minus_sign: | N/A |
|
|
13
|
+
| `name` | *string* | :heavy_minus_sign: | N/A |
|
|
14
|
+
| `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
@@ -3,11 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
## Fields
|
|
5
5
|
|
|
6
|
-
| Field
|
|
7
|
-
|
|
|
8
|
-
| `description`
|
|
9
|
-
| `hasTemperature`
|
|
10
|
-
| `id`
|
|
11
|
-
| `maxTokens`
|
|
12
|
-
| `name`
|
|
13
|
-
| `
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------- | --------------------- | --------------------- | --------------------- |
|
|
8
|
+
| `description` | *string* | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `hasTemperature` | *boolean* | :heavy_minus_sign: | N/A |
|
|
10
|
+
| `id` | *string* | :heavy_minus_sign: | N/A |
|
|
11
|
+
| `maxTokens` | *number* | :heavy_minus_sign: | N/A |
|
|
12
|
+
| `name` | *string* | :heavy_minus_sign: | N/A |
|
|
13
|
+
| `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
|
|
14
|
+
| `webUrl` | *string* | :heavy_minus_sign: | N/A |
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
| `listOffset` | [shared.ListOffset](../../../sdk/models/shared/listoffset.md) | :heavy_minus_sign: | N/A |
|
|
28
28
|
| `listOrder` | [shared.ListOrder](../../../sdk/models/shared/listorder.md) | :heavy_minus_sign: | N/A |
|
|
29
29
|
| `listParentId` | [shared.ListParentId](../../../sdk/models/shared/listparentid.md) | :heavy_minus_sign: | N/A |
|
|
30
|
+
| `listProjectId` | [shared.ListProjectId](../../../sdk/models/shared/listprojectid.md) | :heavy_minus_sign: | N/A |
|
|
30
31
|
| `listQuery` | [shared.ListQuery](../../../sdk/models/shared/listquery.md) | :heavy_minus_sign: | N/A |
|
|
31
32
|
| `listSortByCreatedAt` | [shared.ListSortByCreatedAt](../../../sdk/models/shared/listsortbycreatedat.md) | :heavy_minus_sign: | N/A |
|
|
32
33
|
| `listSortByName` | [shared.ListSortByName](../../../sdk/models/shared/listsortbyname.md) | :heavy_minus_sign: | N/A |
|
|
@@ -92,4 +92,8 @@
|
|
|
92
92
|
| `KmsPageRead` | kms_page_read |
|
|
93
93
|
| `KmsPageWrite` | kms_page_write |
|
|
94
94
|
| `KmsCommentRead` | kms_comment_read |
|
|
95
|
-
| `KmsCommentWrite` | kms_comment_write |
|
|
95
|
+
| `KmsCommentWrite` | kms_comment_write |
|
|
96
|
+
| `TaskProjectRead` | task_project_read |
|
|
97
|
+
| `TaskProjectWrite` | task_project_write |
|
|
98
|
+
| `TaskTaskRead` | task_task_read |
|
|
99
|
+
| `TaskTaskWrite` | task_task_write |
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# TaskProject
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
|
|
8
|
+
| `createdAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `description` | *string* | :heavy_minus_sign: | N/A |
|
|
10
|
+
| `id` | *string* | :heavy_minus_sign: | N/A |
|
|
11
|
+
| `name` | *string* | :heavy_minus_sign: | N/A |
|
|
12
|
+
| `parentId` | *string* | :heavy_minus_sign: | N/A |
|
|
13
|
+
| `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
|
|
14
|
+
| `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
15
|
+
| `userIds` | *string*[] | :heavy_minus_sign: | N/A |
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# TaskTask
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Fields
|
|
5
|
+
|
|
6
|
+
| Field | Type | Required | Description |
|
|
7
|
+
| --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
|
|
8
|
+
| `assignedUserIds` | *string*[] | :heavy_minus_sign: | N/A |
|
|
9
|
+
| `completedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
10
|
+
| `createdAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
11
|
+
| `creatorUserId` | *string* | :heavy_minus_sign: | N/A |
|
|
12
|
+
| `dueAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|
|
13
|
+
| `followerUserIds` | *string*[] | :heavy_minus_sign: | N/A |
|
|
14
|
+
| `id` | *string* | :heavy_minus_sign: | N/A |
|
|
15
|
+
| `name` | *string* | :heavy_check_mark: | N/A |
|
|
16
|
+
| `notes` | *string* | :heavy_minus_sign: | N/A |
|
|
17
|
+
| `parentId` | *string* | :heavy_minus_sign: | N/A |
|
|
18
|
+
| `priority` | *string* | :heavy_minus_sign: | N/A |
|
|
19
|
+
| `projectId` | *string* | :heavy_minus_sign: | N/A |
|
|
20
|
+
| `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
|
|
21
|
+
| `status` | [shared.TaskTaskStatus](../../../sdk/models/shared/tasktaskstatus.md) | :heavy_minus_sign: | N/A |
|
|
22
|
+
| `tags` | *string*[] | :heavy_minus_sign: | N/A |
|
|
23
|
+
| `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
|