@unified-api/typescript-sdk 1.0.26 → 1.0.28

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 (147) hide show
  1. package/dist/sdk/channel.d.ts +15 -0
  2. package/dist/sdk/channel.js +213 -0
  3. package/dist/sdk/kms.d.ts +55 -0
  4. package/dist/sdk/kms.js +907 -0
  5. package/dist/sdk/message.d.ts +31 -0
  6. package/dist/sdk/message.js +505 -0
  7. package/dist/sdk/messaging.d.ts +39 -0
  8. package/dist/sdk/messaging.js +631 -0
  9. package/dist/sdk/models/operations/createkmspage.d.ts +28 -0
  10. package/dist/sdk/models/operations/createkmspage.js +95 -0
  11. package/dist/sdk/models/operations/createkmsspace.d.ts +28 -0
  12. package/dist/sdk/models/operations/createkmsspace.js +95 -0
  13. package/dist/sdk/models/operations/createmessagingmessage.d.ts +28 -0
  14. package/dist/sdk/models/operations/createmessagingmessage.js +95 -0
  15. package/dist/sdk/models/operations/getkmspage.d.ts +35 -0
  16. package/dist/sdk/models/operations/getkmspage.js +99 -0
  17. package/dist/sdk/models/operations/getkmsspace.d.ts +35 -0
  18. package/dist/sdk/models/operations/getkmsspace.js +99 -0
  19. package/dist/sdk/models/operations/getmessagingchannel.d.ts +35 -0
  20. package/dist/sdk/models/operations/getmessagingchannel.js +99 -0
  21. package/dist/sdk/models/operations/getmessagingmessage.d.ts +35 -0
  22. package/dist/sdk/models/operations/getmessagingmessage.js +99 -0
  23. package/dist/sdk/models/operations/getunifiedintegrationauth.d.ts +10 -1
  24. package/dist/sdk/models/operations/getunifiedintegrationauth.js +9 -0
  25. package/dist/sdk/models/operations/index.d.ts +20 -0
  26. package/dist/sdk/models/operations/index.js +20 -0
  27. package/dist/sdk/models/operations/listkmspages.d.ts +45 -0
  28. package/dist/sdk/models/operations/listkmspages.js +127 -0
  29. package/dist/sdk/models/operations/listkmsspaces.d.ts +44 -0
  30. package/dist/sdk/models/operations/listkmsspaces.js +123 -0
  31. package/dist/sdk/models/operations/listmessagingchannels.d.ts +43 -0
  32. package/dist/sdk/models/operations/listmessagingchannels.js +119 -0
  33. package/dist/sdk/models/operations/listmessagingmessages.d.ts +45 -0
  34. package/dist/sdk/models/operations/listmessagingmessages.js +127 -0
  35. package/dist/sdk/models/operations/listunifiedconnections.d.ts +3 -1
  36. package/dist/sdk/models/operations/listunifiedconnections.js +2 -0
  37. package/dist/sdk/models/operations/listunifiedintegrations.d.ts +3 -1
  38. package/dist/sdk/models/operations/listunifiedintegrations.js +2 -0
  39. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.d.ts +3 -1
  40. package/dist/sdk/models/operations/listunifiedintegrationworkspaces.js +2 -0
  41. package/dist/sdk/models/operations/patchkmspage.d.ts +32 -0
  42. package/dist/sdk/models/operations/patchkmspage.js +99 -0
  43. package/dist/sdk/models/operations/patchkmsspace.d.ts +32 -0
  44. package/dist/sdk/models/operations/patchkmsspace.js +99 -0
  45. package/dist/sdk/models/operations/patchmessagingmessage.d.ts +32 -0
  46. package/dist/sdk/models/operations/patchmessagingmessage.js +99 -0
  47. package/dist/sdk/models/operations/removekmspage.d.ts +30 -0
  48. package/dist/sdk/models/operations/removekmspage.js +71 -0
  49. package/dist/sdk/models/operations/removekmsspace.d.ts +30 -0
  50. package/dist/sdk/models/operations/removekmsspace.js +71 -0
  51. package/dist/sdk/models/operations/removemessagingmessage.d.ts +30 -0
  52. package/dist/sdk/models/operations/removemessagingmessage.js +71 -0
  53. package/dist/sdk/models/operations/updatekmspage.d.ts +32 -0
  54. package/dist/sdk/models/operations/updatekmspage.js +99 -0
  55. package/dist/sdk/models/operations/updatekmsspace.d.ts +32 -0
  56. package/dist/sdk/models/operations/updatekmsspace.js +99 -0
  57. package/dist/sdk/models/operations/updatemessagingmessage.d.ts +32 -0
  58. package/dist/sdk/models/operations/updatemessagingmessage.js +99 -0
  59. package/dist/sdk/models/shared/atsactivity.d.ts +3 -0
  60. package/dist/sdk/models/shared/index.d.ts +6 -0
  61. package/dist/sdk/models/shared/index.js +6 -0
  62. package/dist/sdk/models/shared/integrationsupport.d.ts +3 -0
  63. package/dist/sdk/models/shared/integrationsupport.js +15 -0
  64. package/dist/sdk/models/shared/kmspage.d.ts +19 -0
  65. package/dist/sdk/models/shared/kmspage.js +109 -0
  66. package/dist/sdk/models/shared/kmsspace.d.ts +12 -0
  67. package/dist/sdk/models/shared/kmsspace.js +93 -0
  68. package/dist/sdk/models/shared/messagingchannel.d.ts +16 -0
  69. package/dist/sdk/models/shared/messagingchannel.js +106 -0
  70. package/dist/sdk/models/shared/messagingmember.d.ts +6 -0
  71. package/dist/sdk/models/shared/messagingmember.js +55 -0
  72. package/dist/sdk/models/shared/messagingmessage.d.ts +18 -0
  73. package/dist/sdk/models/shared/messagingmessage.js +111 -0
  74. package/dist/sdk/models/shared/propertyconnectioncategories.d.ts +3 -1
  75. package/dist/sdk/models/shared/propertyconnectioncategories.js +2 -0
  76. package/dist/sdk/models/shared/propertyconnectionpermissions.d.ts +10 -1
  77. package/dist/sdk/models/shared/propertyconnectionpermissions.js +9 -0
  78. package/dist/sdk/models/shared/propertyintegrationcategories.d.ts +3 -1
  79. package/dist/sdk/models/shared/propertyintegrationcategories.js +2 -0
  80. package/dist/sdk/models/shared/propertymessagingmessageauthormember.d.ts +6 -0
  81. package/dist/sdk/models/shared/propertymessagingmessageauthormember.js +55 -0
  82. package/dist/sdk/models/shared/webhook.d.ts +5 -1
  83. package/dist/sdk/models/shared/webhook.js +4 -0
  84. package/dist/sdk/page.d.ts +31 -0
  85. package/dist/sdk/page.js +505 -0
  86. package/dist/sdk/sdk.d.ts +12 -0
  87. package/dist/sdk/sdk.js +14 -2
  88. package/dist/sdk/space.d.ts +31 -0
  89. package/dist/sdk/space.js +505 -0
  90. package/docs/sdk/models/operations/categories.md +3 -1
  91. package/docs/sdk/models/operations/createkmspagerequest.md +9 -0
  92. package/docs/sdk/models/operations/createkmspageresponse.md +11 -0
  93. package/docs/sdk/models/operations/createkmsspacerequest.md +9 -0
  94. package/docs/sdk/models/operations/createkmsspaceresponse.md +11 -0
  95. package/docs/sdk/models/operations/createmessagingmessagerequest.md +9 -0
  96. package/docs/sdk/models/operations/createmessagingmessageresponse.md +11 -0
  97. package/docs/sdk/models/operations/getkmspagerequest.md +10 -0
  98. package/docs/sdk/models/operations/getkmspageresponse.md +11 -0
  99. package/docs/sdk/models/operations/getkmsspacerequest.md +10 -0
  100. package/docs/sdk/models/operations/getkmsspaceresponse.md +11 -0
  101. package/docs/sdk/models/operations/getmessagingchannelrequest.md +10 -0
  102. package/docs/sdk/models/operations/getmessagingchannelresponse.md +11 -0
  103. package/docs/sdk/models/operations/getmessagingmessagerequest.md +10 -0
  104. package/docs/sdk/models/operations/getmessagingmessageresponse.md +11 -0
  105. package/docs/sdk/models/operations/listkmspagesrequest.md +17 -0
  106. package/docs/sdk/models/operations/listkmspagesresponse.md +11 -0
  107. package/docs/sdk/models/operations/listkmsspacesrequest.md +16 -0
  108. package/docs/sdk/models/operations/listkmsspacesresponse.md +11 -0
  109. package/docs/sdk/models/operations/listmessagingchannelsrequest.md +15 -0
  110. package/docs/sdk/models/operations/listmessagingchannelsresponse.md +11 -0
  111. package/docs/sdk/models/operations/listmessagingmessagesrequest.md +17 -0
  112. package/docs/sdk/models/operations/listmessagingmessagesresponse.md +11 -0
  113. package/docs/sdk/models/operations/listunifiedintegrationsqueryparamcategories.md +3 -1
  114. package/docs/sdk/models/operations/patchkmspagerequest.md +10 -0
  115. package/docs/sdk/models/operations/patchkmspageresponse.md +11 -0
  116. package/docs/sdk/models/operations/patchkmsspacerequest.md +10 -0
  117. package/docs/sdk/models/operations/patchkmsspaceresponse.md +11 -0
  118. package/docs/sdk/models/operations/patchmessagingmessagerequest.md +10 -0
  119. package/docs/sdk/models/operations/patchmessagingmessageresponse.md +11 -0
  120. package/docs/sdk/models/operations/queryparamcategories.md +3 -1
  121. package/docs/sdk/models/operations/removekmspagerequest.md +9 -0
  122. package/docs/sdk/models/operations/removekmspageresponse.md +11 -0
  123. package/docs/sdk/models/operations/removekmsspacerequest.md +9 -0
  124. package/docs/sdk/models/operations/removekmsspaceresponse.md +11 -0
  125. package/docs/sdk/models/operations/removemessagingmessagerequest.md +9 -0
  126. package/docs/sdk/models/operations/removemessagingmessageresponse.md +11 -0
  127. package/docs/sdk/models/operations/scopes.md +10 -1
  128. package/docs/sdk/models/operations/updatekmspagerequest.md +10 -0
  129. package/docs/sdk/models/operations/updatekmspageresponse.md +11 -0
  130. package/docs/sdk/models/operations/updatekmsspacerequest.md +10 -0
  131. package/docs/sdk/models/operations/updatekmsspaceresponse.md +11 -0
  132. package/docs/sdk/models/operations/updatemessagingmessagerequest.md +10 -0
  133. package/docs/sdk/models/operations/updatemessagingmessageresponse.md +11 -0
  134. package/docs/sdk/models/shared/atsactivity.md +1 -1
  135. package/docs/sdk/models/shared/integrationsupport.md +3 -0
  136. package/docs/sdk/models/shared/kmspage.md +18 -0
  137. package/docs/sdk/models/shared/kmspagetype.md +10 -0
  138. package/docs/sdk/models/shared/kmsspace.md +16 -0
  139. package/docs/sdk/models/shared/messagingchannel.md +19 -0
  140. package/docs/sdk/models/shared/messagingmember.md +10 -0
  141. package/docs/sdk/models/shared/messagingmessage.md +20 -0
  142. package/docs/sdk/models/shared/objecttype.md +5 -1
  143. package/docs/sdk/models/shared/propertyconnectioncategories.md +3 -1
  144. package/docs/sdk/models/shared/propertyconnectionpermissions.md +10 -1
  145. package/docs/sdk/models/shared/propertyintegrationcategories.md +3 -1
  146. package/docs/sdk/models/shared/propertymessagingmessageauthormember.md +10 -0
  147. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ # GetKmsSpaceResponse
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
+ | `kmsSpace` | [shared.KmsSpace](../../../sdk/models/shared/kmsspace.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,10 @@
1
+ # GetMessagingChannelRequest
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 Channel |
@@ -0,0 +1,11 @@
1
+ # GetMessagingChannelResponse
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
+ | `messagingChannel` | [shared.MessagingChannel](../../../sdk/models/shared/messagingchannel.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,10 @@
1
+ # GetMessagingMessageRequest
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 Message |
@@ -0,0 +1,11 @@
1
+ # GetMessagingMessageResponse
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
+ | `messagingMessage` | [shared.MessagingMessage](../../../sdk/models/shared/messagingmessage.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,17 @@
1
+ # ListKmsPagesRequest
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
+ | `spaceId` | *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
+ # ListKmsPagesResponse
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
+ | `kmsPages` | [shared.KmsPage](../../../sdk/models/shared/kmspage.md)[] | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,16 @@
1
+ # ListKmsSpacesRequest
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
+ # ListKmsSpacesResponse
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
+ | `kmsSpaces` | [shared.KmsSpace](../../../sdk/models/shared/kmsspace.md)[] | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,15 @@
1
+ # ListMessagingChannelsRequest
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
+ | `query` | *string* | :heavy_minus_sign: | Query string to search. eg. email address or name |
14
+ | `sort` | *string* | :heavy_minus_sign: | N/A |
15
+ | `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
+ # ListMessagingChannelsResponse
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
+ | `messagingChannels` | [shared.MessagingChannel](../../../sdk/models/shared/messagingchannel.md)[] | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,17 @@
1
+ # ListMessagingMessagesRequest
2
+
3
+
4
+ ## Fields
5
+
6
+ | Field | Type | Required | Description |
7
+ | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
8
+ | `channelId` | *string* | :heavy_minus_sign: | N/A |
9
+ | `connectionId` | *string* | :heavy_check_mark: | ID of the connection |
10
+ | `fields` | *string*[] | :heavy_minus_sign: | Comma-delimited fields to return |
11
+ | `limit` | *number* | :heavy_minus_sign: | N/A |
12
+ | `offset` | *number* | :heavy_minus_sign: | N/A |
13
+ | `order` | *string* | :heavy_minus_sign: | N/A |
14
+ | `parentId` | *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
+ # ListMessagingMessagesResponse
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
+ | `messagingMessages` | [shared.MessagingMessage](../../../sdk/models/shared/messagingmessage.md)[] | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -18,4 +18,6 @@
18
18
  | `Storage` | storage |
19
19
  | `Commerce` | commerce |
20
20
  | `Payment` | payment |
21
- | `Genai` | genai |
21
+ | `Genai` | genai |
22
+ | `Messaging` | messaging |
23
+ | `Kms` | kms |
@@ -0,0 +1,10 @@
1
+ # PatchKmsPageRequest
2
+
3
+
4
+ ## Fields
5
+
6
+ | Field | Type | Required | Description |
7
+ | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8
+ | `kmsPage` | [shared.KmsPage](../../../sdk/models/shared/kmspage.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 Page |
@@ -0,0 +1,11 @@
1
+ # PatchKmsPageResponse
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
+ | `kmsPage` | [shared.KmsPage](../../../sdk/models/shared/kmspage.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,10 @@
1
+ # PatchKmsSpaceRequest
2
+
3
+
4
+ ## Fields
5
+
6
+ | Field | Type | Required | Description |
7
+ | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
8
+ | `kmsSpace` | [shared.KmsSpace](../../../sdk/models/shared/kmsspace.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 Space |
@@ -0,0 +1,11 @@
1
+ # PatchKmsSpaceResponse
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
+ | `kmsSpace` | [shared.KmsSpace](../../../sdk/models/shared/kmsspace.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,10 @@
1
+ # PatchMessagingMessageRequest
2
+
3
+
4
+ ## Fields
5
+
6
+ | Field | Type | Required | Description |
7
+ | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
8
+ | `messagingMessage` | [shared.MessagingMessage](../../../sdk/models/shared/messagingmessage.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 Message |
@@ -0,0 +1,11 @@
1
+ # PatchMessagingMessageResponse
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
+ | `messagingMessage` | [shared.MessagingMessage](../../../sdk/models/shared/messagingmessage.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -18,4 +18,6 @@
18
18
  | `Storage` | storage |
19
19
  | `Commerce` | commerce |
20
20
  | `Payment` | payment |
21
- | `Genai` | genai |
21
+ | `Genai` | genai |
22
+ | `Messaging` | messaging |
23
+ | `Kms` | kms |
@@ -0,0 +1,9 @@
1
+ # RemoveKmsPageRequest
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 Page |
@@ -0,0 +1,11 @@
1
+ # RemoveKmsPageResponse
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
+ # RemoveKmsSpaceRequest
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 Space |
@@ -0,0 +1,11 @@
1
+ # RemoveKmsSpaceResponse
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
+ # RemoveMessagingMessageRequest
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 Message |
@@ -0,0 +1,11 @@
1
+ # RemoveMessagingMessageResponse
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 |
@@ -83,4 +83,13 @@
83
83
  | `Webhook` | webhook |
84
84
  | `GenaiModelRead` | genai_model_read |
85
85
  | `GenaiPromptRead` | genai_prompt_read |
86
- | `GenaiPromptWrite` | genai_prompt_write |
86
+ | `GenaiPromptWrite` | genai_prompt_write |
87
+ | `MessagingMessageRead` | messaging_message_read |
88
+ | `MessagingMessageWrite` | messaging_message_write |
89
+ | `MessagingChannelRead` | messaging_channel_read |
90
+ | `KmsSpaceRead` | kms_space_read |
91
+ | `KmsSpaceWrite` | kms_space_write |
92
+ | `KmsPageRead` | kms_page_read |
93
+ | `KmsPageWrite` | kms_page_write |
94
+ | `KmsCommentRead` | kms_comment_read |
95
+ | `KmsCommentWrite` | kms_comment_write |
@@ -0,0 +1,10 @@
1
+ # UpdateKmsPageRequest
2
+
3
+
4
+ ## Fields
5
+
6
+ | Field | Type | Required | Description |
7
+ | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
8
+ | `kmsPage` | [shared.KmsPage](../../../sdk/models/shared/kmspage.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 Page |
@@ -0,0 +1,11 @@
1
+ # UpdateKmsPageResponse
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
+ | `kmsPage` | [shared.KmsPage](../../../sdk/models/shared/kmspage.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,10 @@
1
+ # UpdateKmsSpaceRequest
2
+
3
+
4
+ ## Fields
5
+
6
+ | Field | Type | Required | Description |
7
+ | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------------------- |
8
+ | `kmsSpace` | [shared.KmsSpace](../../../sdk/models/shared/kmsspace.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 Space |
@@ -0,0 +1,11 @@
1
+ # UpdateKmsSpaceResponse
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
+ | `kmsSpace` | [shared.KmsSpace](../../../sdk/models/shared/kmsspace.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -0,0 +1,10 @@
1
+ # UpdateMessagingMessageRequest
2
+
3
+
4
+ ## Fields
5
+
6
+ | Field | Type | Required | Description |
7
+ | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
8
+ | `messagingMessage` | [shared.MessagingMessage](../../../sdk/models/shared/messagingmessage.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 Message |
@@ -0,0 +1,11 @@
1
+ # UpdateMessagingMessageResponse
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
+ | `messagingMessage` | [shared.MessagingMessage](../../../sdk/models/shared/messagingmessage.md) | :heavy_minus_sign: | Successful |
10
+ | `statusCode` | *number* | :heavy_check_mark: | HTTP response status code for this operation |
11
+ | `rawResponse` | [AxiosResponse](https://axios-http.com/docs/res_schema) | :heavy_check_mark: | Raw HTTP response; suitable for custom response parsing |
@@ -18,4 +18,4 @@
18
18
  | `title` | *string* | :heavy_check_mark: | N/A |
19
19
  | `type` | [shared.AtsActivityType](../../../sdk/models/shared/atsactivitytype.md) | :heavy_minus_sign: | N/A |
20
20
  | `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
21
- | `userIds` | *string*[] | :heavy_minus_sign: | N/A |
21
+ | `userIds` | *string*[] | :heavy_minus_sign: | id values of the recruiters associated with the activity. |
@@ -9,6 +9,7 @@
9
9
  | `listAccountId` | *boolean* | :heavy_minus_sign: | N/A |
10
10
  | `listApplicationId` | *boolean* | :heavy_minus_sign: | N/A |
11
11
  | `listCandidateId` | *boolean* | :heavy_minus_sign: | N/A |
12
+ | `listChannelId` | *boolean* | :heavy_minus_sign: | N/A |
12
13
  | `listCollectionId` | *boolean* | :heavy_minus_sign: | N/A |
13
14
  | `listCompanyId` | *boolean* | :heavy_minus_sign: | N/A |
14
15
  | `listContactId` | *boolean* | :heavy_minus_sign: | N/A |
@@ -19,6 +20,7 @@
19
20
  | `listItemId` | *boolean* | :heavy_minus_sign: | N/A |
20
21
  | `listJobId` | *boolean* | :heavy_minus_sign: | N/A |
21
22
  | `listLimit` | *boolean* | :heavy_minus_sign: | N/A |
23
+ | `listLinkId` | *boolean* | :heavy_minus_sign: | N/A |
22
24
  | `listListId` | *boolean* | :heavy_minus_sign: | N/A |
23
25
  | `listLocationId` | *boolean* | :heavy_minus_sign: | N/A |
24
26
  | `listOffset` | *boolean* | :heavy_minus_sign: | N/A |
@@ -28,6 +30,7 @@
28
30
  | `listSortByCreatedAt` | *boolean* | :heavy_minus_sign: | N/A |
29
31
  | `listSortByName` | *boolean* | :heavy_minus_sign: | N/A |
30
32
  | `listSortByUpdatedAt` | *boolean* | :heavy_minus_sign: | N/A |
33
+ | `listSpaceId` | *boolean* | :heavy_minus_sign: | N/A |
31
34
  | `listTicketId` | *boolean* | :heavy_minus_sign: | N/A |
32
35
  | `listType` | *boolean* | :heavy_minus_sign: | N/A |
33
36
  | `listUpdatedGte` | *boolean* | :heavy_minus_sign: | N/A |
@@ -0,0 +1,18 @@
1
+ # KmsPage
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
+ | `downloadUrl` | *string* | :heavy_check_mark: | N/A |
10
+ | `id` | *string* | :heavy_check_mark: | N/A |
11
+ | `isActive` | *boolean* | :heavy_minus_sign: | N/A |
12
+ | `parentPageId` | *string* | :heavy_minus_sign: | N/A |
13
+ | `raw` | Record<string, *any*> | :heavy_minus_sign: | N/A |
14
+ | `spaceId` | *string* | :heavy_check_mark: | N/A |
15
+ | `title` | *string* | :heavy_check_mark: | N/A |
16
+ | `type` | [shared.KmsPageType](../../../sdk/models/shared/kmspagetype.md) | :heavy_check_mark: | N/A |
17
+ | `updatedAt` | [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) | :heavy_minus_sign: | N/A |
18
+ | `userId` | *string* | :heavy_minus_sign: | N/A |
@@ -0,0 +1,10 @@
1
+ # KmsPageType
2
+
3
+
4
+ ## Values
5
+
6
+ | Name | Value |
7
+ | ---------- | ---------- |
8
+ | `Html` | HTML |
9
+ | `Markdown` | MARKDOWN |
10
+ | `Text` | TEXT |