@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.
Files changed (109) hide show
  1. package/dist/sdk/models/operations/createtaskproject.d.ts +28 -0
  2. package/dist/sdk/models/operations/createtaskproject.js +95 -0
  3. package/dist/sdk/models/operations/createtasktask.d.ts +28 -0
  4. package/dist/sdk/models/operations/createtasktask.js +95 -0
  5. package/dist/sdk/models/operations/gettaskproject.d.ts +35 -0
  6. package/dist/sdk/models/operations/gettaskproject.js +99 -0
  7. package/dist/sdk/models/operations/gettasktask.d.ts +35 -0
  8. package/dist/sdk/models/operations/gettasktask.js +99 -0
  9. package/dist/sdk/models/operations/getunifiedintegrationauth.d.ts +5 -1
  10. package/dist/sdk/models/operations/getunifiedintegrationauth.js +4 -0
  11. package/dist/sdk/models/operations/index.d.ts +12 -0
  12. package/dist/sdk/models/operations/index.js +12 -0
  13. package/dist/sdk/models/operations/listtaskprojects.d.ts +44 -0
  14. package/dist/sdk/models/operations/listtaskprojects.js +123 -0
  15. package/dist/sdk/models/operations/listtasktasks.d.ts +45 -0
  16. package/dist/sdk/models/operations/listtasktasks.js +127 -0
  17. package/dist/sdk/models/operations/listunifiedconnections.d.ts +2 -1
  18. package/dist/sdk/models/operations/listunifiedconnections.js +1 -0
  19. package/dist/sdk/models/operations/listunifiedintegrations.d.ts +2 -1
  20. package/dist/sdk/models/operations/listunifiedintegrations.js +1 -0
  21. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.d.ts +2 -1
  22. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.js +1 -0
  23. package/dist/sdk/models/operations/patchtaskproject.d.ts +32 -0
  24. package/dist/sdk/models/operations/patchtaskproject.js +99 -0
  25. package/dist/sdk/models/operations/patchtasktask.d.ts +32 -0
  26. package/dist/sdk/models/operations/patchtasktask.js +99 -0
  27. package/dist/sdk/models/operations/removetaskproject.d.ts +30 -0
  28. package/dist/sdk/models/operations/removetaskproject.js +71 -0
  29. package/dist/sdk/models/operations/removetasktask.d.ts +30 -0
  30. package/dist/sdk/models/operations/removetasktask.js +71 -0
  31. package/dist/sdk/models/operations/updatetaskproject.d.ts +32 -0
  32. package/dist/sdk/models/operations/updatetaskproject.js +99 -0
  33. package/dist/sdk/models/operations/updatetasktask.d.ts +32 -0
  34. package/dist/sdk/models/operations/updatetasktask.js +99 -0
  35. package/dist/sdk/models/shared/crmdeal.d.ts +2 -0
  36. package/dist/sdk/models/shared/crmdeal.js +10 -0
  37. package/dist/sdk/models/shared/crmpipeline.d.ts +2 -0
  38. package/dist/sdk/models/shared/crmpipeline.js +7 -0
  39. package/dist/sdk/models/shared/crmstage.d.ts +10 -0
  40. package/dist/sdk/models/shared/crmstage.js +83 -0
  41. package/dist/sdk/models/shared/genaicontent.d.ts +2 -2
  42. package/dist/sdk/models/shared/genaicontent.js +2 -2
  43. package/dist/sdk/models/shared/genaimodel.d.ts +1 -0
  44. package/dist/sdk/models/shared/genaimodel.js +5 -0
  45. package/dist/sdk/models/shared/index.d.ts +3 -0
  46. package/dist/sdk/models/shared/index.js +3 -0
  47. package/dist/sdk/models/shared/integrationsupport.d.ts +6 -0
  48. package/dist/sdk/models/shared/integrationsupport.js +12 -1
  49. package/dist/sdk/models/shared/propertyconnectioncategories.d.ts +2 -1
  50. package/dist/sdk/models/shared/propertyconnectioncategories.js +1 -0
  51. package/dist/sdk/models/shared/propertyconnectionpermissions.d.ts +5 -1
  52. package/dist/sdk/models/shared/propertyconnectionpermissions.js +4 -0
  53. package/dist/sdk/models/shared/propertyintegrationcategories.d.ts +2 -1
  54. package/dist/sdk/models/shared/propertyintegrationcategories.js +1 -0
  55. package/dist/sdk/models/shared/taskproject.d.ts +11 -0
  56. package/dist/sdk/models/shared/taskproject.js +88 -0
  57. package/dist/sdk/models/shared/tasktask.d.ts +24 -0
  58. package/dist/sdk/models/shared/tasktask.js +142 -0
  59. package/dist/sdk/models/shared/webhook.d.ts +3 -1
  60. package/dist/sdk/models/shared/webhook.js +2 -0
  61. package/dist/sdk/project.d.ts +31 -0
  62. package/dist/sdk/project.js +505 -0
  63. package/dist/sdk/sdk.d.ts +4 -0
  64. package/dist/sdk/sdk.js +7 -3
  65. package/dist/sdk/task.d.ts +55 -0
  66. package/dist/sdk/task.js +907 -0
  67. package/docs/sdk/models/operations/categories.md +2 -1
  68. package/docs/sdk/models/operations/createtaskprojectrequest.md +9 -0
  69. package/docs/sdk/models/operations/createtaskprojectresponse.md +11 -0
  70. package/docs/sdk/models/operations/createtasktaskrequest.md +9 -0
  71. package/docs/sdk/models/operations/createtasktaskresponse.md +11 -0
  72. package/docs/sdk/models/operations/gettaskprojectrequest.md +10 -0
  73. package/docs/sdk/models/operations/gettaskprojectresponse.md +11 -0
  74. package/docs/sdk/models/operations/gettasktaskrequest.md +10 -0
  75. package/docs/sdk/models/operations/gettasktaskresponse.md +11 -0
  76. package/docs/sdk/models/operations/listtaskprojectsrequest.md +16 -0
  77. package/docs/sdk/models/operations/listtaskprojectsresponse.md +11 -0
  78. package/docs/sdk/models/operations/listtasktasksrequest.md +17 -0
  79. package/docs/sdk/models/operations/listtasktasksresponse.md +11 -0
  80. package/docs/sdk/models/operations/listunifiedintegrationsqueryparamcategories.md +2 -1
  81. package/docs/sdk/models/operations/patchtaskprojectrequest.md +10 -0
  82. package/docs/sdk/models/operations/patchtaskprojectresponse.md +11 -0
  83. package/docs/sdk/models/operations/patchtasktaskrequest.md +10 -0
  84. package/docs/sdk/models/operations/patchtasktaskresponse.md +11 -0
  85. package/docs/sdk/models/operations/queryparamcategories.md +2 -1
  86. package/docs/sdk/models/operations/removetaskprojectrequest.md +9 -0
  87. package/docs/sdk/models/operations/removetaskprojectresponse.md +11 -0
  88. package/docs/sdk/models/operations/removetasktaskrequest.md +9 -0
  89. package/docs/sdk/models/operations/removetasktaskresponse.md +11 -0
  90. package/docs/sdk/models/operations/scopes.md +5 -1
  91. package/docs/sdk/models/operations/updatetaskprojectrequest.md +10 -0
  92. package/docs/sdk/models/operations/updatetaskprojectresponse.md +11 -0
  93. package/docs/sdk/models/operations/updatetasktaskrequest.md +10 -0
  94. package/docs/sdk/models/operations/updatetasktaskresponse.md +11 -0
  95. package/docs/sdk/models/shared/crmdeal.md +2 -0
  96. package/docs/sdk/models/shared/crmpipeline.md +1 -0
  97. package/docs/sdk/models/shared/crmstage.md +14 -0
  98. package/docs/sdk/models/shared/genaimodel.md +9 -8
  99. package/docs/sdk/models/shared/integrationsupport.md +1 -0
  100. package/docs/sdk/models/shared/listprojectid.md +10 -0
  101. package/docs/sdk/models/shared/objecttype.md +3 -1
  102. package/docs/sdk/models/shared/propertyconnectioncategories.md +2 -1
  103. package/docs/sdk/models/shared/propertyconnectionpermissions.md +5 -1
  104. package/docs/sdk/models/shared/propertyintegrationcategories.md +2 -1
  105. package/docs/sdk/models/shared/role.md +2 -2
  106. package/docs/sdk/models/shared/taskproject.md +15 -0
  107. package/docs/sdk/models/shared/tasktask.md +23 -0
  108. package/docs/sdk/models/shared/tasktaskstatus.md +10 -0
  109. package/package.json +1 -1
@@ -20,4 +20,5 @@
20
20
  | `Payment` | payment |
21
21
  | `Genai` | genai |
22
22
  | `Messaging` | messaging |
23
- | `Kms` | kms |
23
+ | `Kms` | kms |
24
+ | `Task` | task |
@@ -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 |
@@ -20,4 +20,5 @@
20
20
  | `Payment` | payment |
21
21
  | `Genai` | genai |
22
22
  | `Messaging` | messaging |
23
- | `Kms` | kms |
23
+ | `Kms` | kms |
24
+ | `Task` | task |
@@ -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 |
@@ -20,4 +20,5 @@
20
20
  | `Payment` | payment |
21
21
  | `Genai` | genai |
22
22
  | `Messaging` | messaging |
23
- | `Kms` | kms |
23
+ | `Kms` | kms |
24
+ | `Task` | task |
@@ -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 | 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
- | `webUrl` | *string* | :heavy_minus_sign: | N/A |
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 |
@@ -0,0 +1,10 @@
1
+ # ListProjectId
2
+
3
+
4
+ ## Values
5
+
6
+ | Name | Value |
7
+ | ------------------- | ------------------- |
8
+ | `SupportedRequired` | supported-required |
9
+ | `Supported` | supported |
10
+ | `NotSupported` | not-supported |
@@ -54,4 +54,6 @@
54
54
  | `MessagingMessage` | messaging_message |
55
55
  | `MessagingChannel` | messaging_channel |
56
56
  | `KmsSpace` | kms_space |
57
- | `KmsPage` | kms_page |
57
+ | `KmsPage` | kms_page |
58
+ | `TaskProject` | task_project |
59
+ | `TaskTask` | task_task |
@@ -20,4 +20,5 @@
20
20
  | `Payment` | payment |
21
21
  | `Genai` | genai |
22
22
  | `Messaging` | messaging |
23
- | `Kms` | kms |
23
+ | `Kms` | kms |
24
+ | `Task` | task |
@@ -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 |
@@ -20,4 +20,5 @@
20
20
  | `Payment` | payment |
21
21
  | `Genai` | genai |
22
22
  | `Messaging` | messaging |
23
- | `Kms` | kms |
23
+ | `Kms` | kms |
24
+ | `Task` | task |
@@ -5,5 +5,5 @@
5
5
 
6
6
  | Name | Value |
7
7
  | -------- | -------- |
8
- | `System` | system |
9
- | `User` | user |
8
+ | `System` | SYSTEM |
9
+ | `User` | USER |
@@ -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 |