Source: managers/recent-items.ts

  1. /**
  2. * @fileoverview Manager for the Box RecentItem Resource
  3. */
  4. // ------------------------------------------------------------------------------
  5. // Requirements
  6. // ------------------------------------------------------------------------------
  7. import BoxClient from '../box-client';
  8. import urlPath from '../util/url-path';
  9. // ------------------------------------------------------------------------------
  10. // Private
  11. // ------------------------------------------------------------------------------
  12. const BASE_PATH = '/recent_items';
  13. // ------------------------------------------------------------------------------
  14. // Public
  15. // ------------------------------------------------------------------------------
  16. /**
  17. * Simple manager for interacting with all 'RecentItem' endpoints and actions.
  18. *
  19. * @constructor
  20. * @param {BoxClient} client - The Box API Client that is responsible for making calls to the API
  21. * @returns {void}
  22. */
  23. class RecentItems {
  24. client: BoxClient;
  25. constructor(client: BoxClient) {
  26. this.client = client;
  27. }
  28. /**
  29. * Requests all items that have been accessed by a user in the last 90 days or the last 1000 items accessed.
  30. *
  31. * API Endpoint: '/recent_items'
  32. * Method: GET
  33. *
  34. * @param {Object} [options] - Additional options for the request. Can be left null in most cases.
  35. * @param {int} [options.limit] Maximum number of items to return
  36. * @param {string} [options.marker] The position marker for marker-based paging
  37. * @param {string} [options.fields] Comma-separated list of fields to include in the response
  38. * @param {Function} [callback] - Passed the items information if they were acquired successfully
  39. * @returns {Promise<Object>} A promise resolving to the collection of items in the collection
  40. */
  41. get(
  42. options?: {
  43. limit?: number;
  44. marker?: string;
  45. fields?: string;
  46. },
  47. callback?: Function
  48. ) {
  49. var params = {
  50. qs: options,
  51. };
  52. var apiPath = urlPath(BASE_PATH);
  53. return this.client.wrapWithDefaultHandler(this.client.get)(
  54. apiPath,
  55. params,
  56. callback
  57. );
  58. }
  59. }
  60. /**
  61. * @module box-node-sdk/lib/managers/recent-items
  62. * @see {@Link RecentItems}
  63. */
  64. export = RecentItems;