Source: managers/integration-mappings.ts

  1. import BoxClient from '../box-client';
  2. import urlPath from '../util/url-path';
  3. import * as schemas from '../schemas';
  4. /**
  5. */
  6. class IntegrationMappingsManager {
  7. client: BoxClient;
  8. /**
  9. * @param {BoxClient} client The Box API Client that is responsible for making calls to the API
  10. */
  11. constructor(client: BoxClient) {
  12. this.client = client;
  13. }
  14. /**
  15. * List Slack integration mappings
  16. *
  17. * Lists [Slack integration mappings](https://support.box.com/hc/en-us/articles/4415585987859-Box-as-the-Content-Layer-for-Slack) in a users' enterprise.
  18. *
  19. * You need Admin or Co-Admin role to
  20. * use this endpoint.
  21. * @param {object} [options] Options for the request
  22. * @param {string} [options.marker] Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination. This requires `usemarker` to be set to `true`.
  23. * @param {number} [options.limit] The maximum number of items to return per page.
  24. * @param {"channel"} [options.partner_item_type] Mapped item type, for which the mapping should be returned
  25. * @param {string} [options.partner_item_id] ID of the mapped item, for which the mapping should be returned
  26. * @param {string} [options.box_item_id] Box item ID, for which the mappings should be returned
  27. * @param {"folder"} [options.box_item_type] Box item type, for which the mappings should be returned
  28. * @param {boolean} [options.is_manually_created] Whether the mapping has been manually created
  29. * @param {Function} [callback] Passed the result if successful, error otherwise
  30. * @returns {Promise<schemas.IntegrationMappings>} A promise resolving to the result or rejecting with an error
  31. */
  32. getSlackIntegrationMappings(
  33. options?: {
  34. /**
  35. * Defines the position marker at which to begin returning results. This is
  36. * used when paginating using marker-based pagination.
  37. *
  38. * This requires `usemarker` to be set to `true`.
  39. */
  40. readonly marker?: string;
  41. /**
  42. * The maximum number of items to return per page.
  43. */
  44. readonly limit?: number;
  45. /**
  46. * Mapped item type, for which the mapping should be returned
  47. */
  48. readonly partner_item_type?: 'channel';
  49. /**
  50. * ID of the mapped item, for which the mapping should be returned
  51. */
  52. readonly partner_item_id?: string;
  53. /**
  54. * Box item ID, for which the mappings should be returned
  55. */
  56. readonly box_item_id?: string;
  57. /**
  58. * Box item type, for which the mappings should be returned
  59. */
  60. readonly box_item_type?: 'folder';
  61. /**
  62. * Whether the mapping has been manually created
  63. */
  64. readonly is_manually_created?: boolean;
  65. },
  66. callback?: Function
  67. ): Promise<schemas.IntegrationMappings> {
  68. const { ...queryParams } = options,
  69. apiPath = urlPath('integration_mappings', 'slack'),
  70. params = {
  71. qs: queryParams,
  72. };
  73. return this.client.wrapWithDefaultHandler(this.client.get)(
  74. apiPath,
  75. params,
  76. callback
  77. );
  78. }
  79. /**
  80. * Create Slack integration mapping
  81. *
  82. * Creates a [Slack integration mapping](https://support.box.com/hc/en-us/articles/4415585987859-Box-as-the-Content-Layer-for-Slack)
  83. * by mapping a Slack channel to a Box item.
  84. *
  85. * You need Admin or Co-Admin role to
  86. * use this endpoint.
  87. * @param {schemas.IntegrationMappingSlackCreateRequest} body
  88. * @param {object} [options] Options for the request
  89. * @param {Function} [callback] Passed the result if successful, error otherwise
  90. * @returns {Promise<schemas.IntegrationMapping>} A promise resolving to the result or rejecting with an error
  91. */
  92. createSlackIntegrationMapping(
  93. body: schemas.IntegrationMappingSlackCreateRequest,
  94. options?: {},
  95. callback?: Function
  96. ): Promise<schemas.IntegrationMapping> {
  97. const { ...queryParams } = options,
  98. apiPath = urlPath('integration_mappings', 'slack'),
  99. params = {
  100. qs: queryParams,
  101. body: body,
  102. };
  103. return this.client.wrapWithDefaultHandler(this.client.post)(
  104. apiPath,
  105. params,
  106. callback
  107. );
  108. }
  109. /**
  110. * Update Slack integration mapping
  111. *
  112. * Updates a [Slack integration mapping](https://support.box.com/hc/en-us/articles/4415585987859-Box-as-the-Content-Layer-for-Slack).
  113. * Supports updating the Box folder ID and options.
  114. *
  115. * You need Admin or Co-Admin role to
  116. * use this endpoint.
  117. * @param {object} body
  118. * @param {object} options Options for the request
  119. * @param {string} options.integration_mapping_id An ID of an integration mapping
  120. * @param {Function} [callback] Passed the result if successful, error otherwise
  121. * @returns {Promise<schemas.IntegrationMapping>} A promise resolving to the result or rejecting with an error
  122. */
  123. updateSlackIntegrationMapping(
  124. body: object,
  125. options: {
  126. /**
  127. * An ID of an integration mapping
  128. */
  129. readonly integration_mapping_id: string;
  130. },
  131. callback?: Function
  132. ): Promise<schemas.IntegrationMapping> {
  133. const { integration_mapping_id: integrationMappingId, ...queryParams } =
  134. options,
  135. apiPath = urlPath('integration_mappings', 'slack', integrationMappingId),
  136. params = {
  137. qs: queryParams,
  138. body: body,
  139. };
  140. return this.client.wrapWithDefaultHandler(this.client.put)(
  141. apiPath,
  142. params,
  143. callback
  144. );
  145. }
  146. /**
  147. * Delete Slack integration mapping
  148. *
  149. * Deletes a [Slack integration mapping](https://support.box.com/hc/en-us/articles/4415585987859-Box-as-the-Content-Layer-for-Slack).
  150. *
  151. *
  152. * You need Admin or Co-Admin role to
  153. * use this endpoint.
  154. * @param {object} options Options for the request
  155. * @param {string} options.integration_mapping_id An ID of an integration mapping
  156. * @param {Function} [callback] Passed the result if successful, error otherwise
  157. * @returns {Promise<void>} A promise resolving to the result or rejecting with an error
  158. */
  159. deleteSlackIntegrationMappingById(
  160. options: {
  161. /**
  162. * An ID of an integration mapping
  163. */
  164. readonly integration_mapping_id: string;
  165. },
  166. callback?: Function
  167. ): Promise<void> {
  168. const { integration_mapping_id: integrationMappingId, ...queryParams } =
  169. options,
  170. apiPath = urlPath('integration_mappings', 'slack', integrationMappingId),
  171. params = {
  172. qs: queryParams,
  173. };
  174. return this.client.wrapWithDefaultHandler(this.client.del)(
  175. apiPath,
  176. params,
  177. callback
  178. );
  179. }
  180. }
  181. export = IntegrationMappingsManager;