box-node-sdk 2.0.0 → 2.3.0

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/README.md CHANGED
@@ -4,6 +4,7 @@ Box Node.js SDK
4
4
  [![Greenkeeper badge](https://badges.greenkeeper.io/box/box-node-sdk.svg)](https://greenkeeper.io/)
5
5
 
6
6
  [![Project Status](http://opensource.box.com/badges/active.svg)](http://opensource.box.com/badges)
7
+ [![Coverage](https://coveralls.io/repos/github/box/box-node-sdk/badge.svg?branch=main)](https://coveralls.io/github/box/box-node-sdk?branch=main)
7
8
 
8
9
  A Node.js interface to the [Box Content API](https://developers.box.com/docs/).
9
10
 
@@ -12,7 +13,6 @@ Getting Started Docs: https://developer.box.com/guides/tooling/sdks/node/
12
13
  <!-- START doctoc generated TOC please keep comment here to allow auto update -->
13
14
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
14
15
 
15
-
16
16
  - [Installation](#installation)
17
17
  - [Getting Started](#getting-started)
18
18
  - [Creating API Clients](#creating-api-clients)
@@ -21,21 +21,25 @@ Getting Started Docs: https://developer.box.com/guides/tooling/sdks/node/
21
21
  - [App Auth Client](#app-auth-client)
22
22
  - [Using the Client to Make API Calls](#using-the-client-to-make-api-calls)
23
23
  - [Constructing API Calls Manually](#constructing-api-calls-manually)
24
+ - [Versions](#versions)
25
+ - [Supported Version](#supported-version)
26
+ - [Version schedule](#version-schedule)
24
27
  - [Questions, Bugs, and Feature Requests?](#questions-bugs-and-feature-requests)
25
28
  - [Contributing to the Box Node.js SDK](#contributing-to-the-box-nodejs-sdk)
29
+ - [Changelog](#changelog)
26
30
  - [Copyright and License](#copyright-and-license)
27
31
 
28
32
  <!-- END doctoc generated TOC please keep comment here to allow auto update -->
29
33
 
30
- Installation
31
- ------------
34
+ ## Installation
35
+
32
36
 
33
37
  ```
34
38
  npm install --save box-node-sdk
35
39
  ```
36
40
 
37
- Getting Started
38
- ---------------
41
+ ## Getting Started
42
+
39
43
 
40
44
  To get started with the SDK, get a Developer Token from the Configuration page
41
45
  of your app in the [Box Developer Console][dev-console].
@@ -63,8 +67,8 @@ client.users.get(client.CURRENT_USER_ID)
63
67
 
64
68
  [dev-console]: https://app.box.com/developers/console
65
69
 
66
- Creating API Clients
67
- --------------------
70
+ ## Creating API Clients
71
+
68
72
 
69
73
  Clients are used to communicate with the API on behalf of a user.
70
74
 
@@ -72,7 +76,7 @@ Box supports three different types of client:
72
76
 
73
77
  - **Basic Client:** Simple, makes calls via the given access token until the access token expires
74
78
  - **Persistent Client:** For use with traditional OAuth2 apps, can refresh its tokens automatically and persist them via a token store
75
- - **App Auth Client:** Uses the app auth JWT grant to act on behalf of app-managed users and create new tokens automatically
79
+ - **App Auth Client:** Uses the app auth JWT grant to act on behalf of app/managed users and create new tokens automatically
76
80
 
77
81
  ### Basic Client
78
82
 
@@ -130,7 +134,7 @@ var sdk = BoxSDK.getPreconfiguredInstance(sdkConfig);
130
134
  // so you don't need to specify it here
131
135
  var serviceAccountClient = sdk.getAppAuthClient('enterprise');
132
136
 
133
- // Get an app user client
137
+ // Get an app user or managed user client
134
138
  var appUserClient = sdk.getAppAuthClient('user', 'YOUR-APP-USER-ID');
135
139
  ```
136
140
 
@@ -150,13 +154,13 @@ var sdk = new BoxSDK({
150
154
  // Get the service account client, used to create and manage app user accounts
151
155
  var serviceAccountClient = sdk.getAppAuthClient('enterprise', 'APP_ENTERPRISE_ID');
152
156
 
153
- // Get an app user client
157
+ // Get an app user or managed user client
154
158
  var appUserClient = sdk.getAppAuthClient('user', 'YOUR-APP-USER-ID');
155
159
  ```
156
160
 
157
161
 
158
- Using the Client to Make API Calls
159
- ----------------------------------
162
+ ## Using the Client to Make API Calls
163
+
160
164
 
161
165
  The different API endpoints you can call are represented as methods, grouped into
162
166
  managers by the type of object they interact with.
@@ -218,15 +222,31 @@ client.del('/files/123');
218
222
  .catch(error => { /* handle any errors */ });
219
223
  ```
220
224
 
221
- Questions, Bugs, and Feature Requests?
222
- --------------------------------------
225
+ ## Versions
226
+ We use a modified version of [Semantic Versioning](https://semver.org/) for all changes. See [version strategy](VERSIONS.md) for details which is effective from 30 July 2022.
227
+
228
+ ### Supported Version
229
+
230
+ Only the current MAJOR version of SDK is supported. New features, functionality, bug fixes, and security updates will only be added to the current MAJOR version.
231
+
232
+ A current release is on the leading edge of our SDK development, and is intended for customers who are in active development and want the latest and greatest features. Instead of stating a release date for a new feature, we set a fixed minor or patch release cadence of maximum 2-3 months (while we may release more often). At the same time, there is no schedule for major or breaking release. Instead, we will communicate one quarter in advance the upcoming breaking change to allow customers to plan for the upgrade. We always recommend that all users run the latest available minor release for whatever major version is in use. We highly recommend upgrading to the latest SDK major release at the earliest convenient time and before the EOL date.
233
+
234
+ ### Version schedule
235
+
236
+ | Version | Supported Environments | State | First Release | EOL/Terminated |
237
+ |---------|------------------------|-----------|---------------|----------------|
238
+ | 2 | | Supported | 29 Sep 2021 | TBD |
239
+ | 1 | | EOL | 28 Mar 2019 | 29 Sep 2021 |
240
+
241
+ ## Questions, Bugs, and Feature Requests?
242
+
223
243
 
224
244
  [Browse the issues tickets](https://github.com/box/box-node-sdk/issues)! Or, if that doesn't work, [file a new one](https://github.com/box/box-node-sdk/issues/new) and someone will get back to you. If you have general questions about the
225
245
  Box API, you can post to the [Box Developer Forum](https://community.box.com/t5/Developer-Forum/bd-p/DeveloperForum).
226
246
 
227
247
 
228
- Contributing to the Box Node.js SDK
229
- -----------------------------------
248
+ ## Contributing to the Box Node.js SDK
249
+
230
250
 
231
251
  1. Clone this repo.
232
252
  1. Run `npm install`.
@@ -237,8 +257,18 @@ in the `tests/` directory!
237
257
 
238
258
  For more information, please see [the Contribution guidelines](./CONTRIBUTING.md).
239
259
 
240
- Copyright and License
241
- ---------------------
260
+ ## Changelog
261
+
262
+
263
+ See [CHANGELOG.md](./CHANGELOG.md).
264
+
265
+ ## Documentation
266
+
267
+ You can find guides and tutorials in the `docs` directory.
268
+
269
+ * [Configuration](docs/configuration.md)
270
+
271
+ ## Copyright and License
242
272
 
243
273
  Copyright 2018 Box, Inc. All rights reserved.
244
274
 
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * @fileoverview Box API Client
3
3
  */
4
+ import Files from './managers/files';
5
+ import Folders from './managers/folders';
4
6
  import SignRequests from './managers/sign-requests.generated';
5
7
  /**
6
8
  * A collaboration role constant
@@ -30,8 +32,8 @@ declare class BoxClient {
30
32
  _analyticsClient: any;
31
33
  _tokenOptions: any;
32
34
  users: any;
33
- files: any;
34
- folders: any;
35
+ files: Files;
36
+ folders: Folders;
35
37
  comments: any;
36
38
  collaborations: any;
37
39
  groups: any;
@@ -90,7 +92,7 @@ declare class BoxClient {
90
92
  * a permanent error, or if usable tokens are not available.
91
93
  *
92
94
  * @param {Object} params - Request lib params to configure the request
93
- * @param {APIRequest~Callback} [callback] - passed response data
95
+ * @param {Function} [callback] - passed response data
94
96
  * @returns {Promise} Promise resolving to the response
95
97
  * @private
96
98
  */
@@ -165,7 +167,7 @@ declare class BoxClient {
165
167
  *
166
168
  * @param {string} path - path to a certain API endpoint (ex: /file)
167
169
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
168
- * @param {APIRequest~Callback} [callback] - passed final API response or err if request failed
170
+ * @param {Function} [callback] - passed final API response or err if request failed
169
171
  * @returns {void}
170
172
  */
171
173
  get(path: string, params?: object | null, callback?: Function): any;
@@ -174,7 +176,7 @@ declare class BoxClient {
174
176
  *
175
177
  * @param {string} path - path to a certain API endpoint (ex: /file)
176
178
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
177
- * @param {APIRequest~Callback} [callback] - passed final API response or err if request failed
179
+ * @param {Function} [callback] - passed final API response or err if request failed
178
180
  * @returns {void}
179
181
  */
180
182
  post(path: string, params: object | null, callback?: Function): any;
@@ -183,7 +185,7 @@ declare class BoxClient {
183
185
  *
184
186
  * @param {string} path - path to a certain API endpoint (ex: /file)
185
187
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
186
- * @param {APIRequest~Callback} callback - passed final API response or err if request failed
188
+ * @param {Function} callback - passed final API response or err if request failed
187
189
  * @returns {void}
188
190
  */
189
191
  put(path: string, params?: object | null, callback?: Function): any;
@@ -192,7 +194,7 @@ declare class BoxClient {
192
194
  *
193
195
  * @param {string} path - path to a certain API endpoint (ex: /file)
194
196
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
195
- * @param {APIRequest~Callback} callback - passed final API response or err if request failed
197
+ * @param {Function} callback - passed final API response or err if request failed
196
198
  * @returns {void}
197
199
  */
198
200
  del(path: string, params: object | null, callback?: Function): any;
@@ -201,7 +203,7 @@ declare class BoxClient {
201
203
  *
202
204
  * @param {string} path - Path to an API endpoint (e.g. /files/content)
203
205
  * @param {?Object} params - An optional object containing request parameters
204
- * @param {APIRequest~Callback} callback - Called with API call results, or err if call failed
206
+ * @param {Function} callback - Called with API call results, or err if call failed
205
207
  * @returns {void}
206
208
  */
207
209
  options(path: string, params: object | null, callback?: Function): any;
@@ -210,7 +212,7 @@ declare class BoxClient {
210
212
  * @param {string} path - path to an upload API endpoint
211
213
  * @param {?Object} params - an optional object containing request parameters
212
214
  * @param {?Object} formData - multipart form data to include in the upload request {@see https://github.com/mikeal/request#multipartform-data-multipart-form-uploads}
213
- * @param {APIRequest~Callback} callback - called with API call results, or an error if the call failed
215
+ * @param {Function} callback - called with API call results, or an error if the call failed
214
216
  * @returns {void}
215
217
  */
216
218
  upload(path: string, params: object | null, formData: object | null, callback: Function): any;
@@ -245,7 +247,7 @@ declare class BoxClient {
245
247
  * back to the callback as errors. This is the standard behavior of most endpoints.
246
248
  *
247
249
  * @param {Function} callback The original callback given by the consumer
248
- * @returns {?APIRequest~Callback} A new callback that processes the response before passing it to the callback.
250
+ * @returns {?Function} A new callback that processes the response before passing it to the callback.
249
251
  */
250
252
  defaultResponseHandler(callback: Function): ((err: any, response: any) => void) | null;
251
253
  /**
package/lib/box-client.js CHANGED
@@ -279,7 +279,7 @@ var BoxClient = /** @class */ (function () {
279
279
  * a permanent error, or if usable tokens are not available.
280
280
  *
281
281
  * @param {Object} params - Request lib params to configure the request
282
- * @param {APIRequest~Callback} [callback] - passed response data
282
+ * @param {Function} [callback] - passed response data
283
283
  * @returns {Promise} Promise resolving to the response
284
284
  * @private
285
285
  */
@@ -440,7 +440,7 @@ var BoxClient = /** @class */ (function () {
440
440
  *
441
441
  * @param {string} path - path to a certain API endpoint (ex: /file)
442
442
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
443
- * @param {APIRequest~Callback} [callback] - passed final API response or err if request failed
443
+ * @param {Function} [callback] - passed final API response or err if request failed
444
444
  * @returns {void}
445
445
  */
446
446
  BoxClient.prototype.get = function (path, params, callback) {
@@ -454,7 +454,7 @@ var BoxClient = /** @class */ (function () {
454
454
  *
455
455
  * @param {string} path - path to a certain API endpoint (ex: /file)
456
456
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
457
- * @param {APIRequest~Callback} [callback] - passed final API response or err if request failed
457
+ * @param {Function} [callback] - passed final API response or err if request failed
458
458
  * @returns {void}
459
459
  */
460
460
  BoxClient.prototype.post = function (path, params, callback) {
@@ -468,7 +468,7 @@ var BoxClient = /** @class */ (function () {
468
468
  *
469
469
  * @param {string} path - path to a certain API endpoint (ex: /file)
470
470
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
471
- * @param {APIRequest~Callback} callback - passed final API response or err if request failed
471
+ * @param {Function} callback - passed final API response or err if request failed
472
472
  * @returns {void}
473
473
  */
474
474
  BoxClient.prototype.put = function (path, params, callback) {
@@ -482,7 +482,7 @@ var BoxClient = /** @class */ (function () {
482
482
  *
483
483
  * @param {string} path - path to a certain API endpoint (ex: /file)
484
484
  * @param {?Object} params - object containing parameters for the request, such as query strings and headers
485
- * @param {APIRequest~Callback} callback - passed final API response or err if request failed
485
+ * @param {Function} callback - passed final API response or err if request failed
486
486
  * @returns {void}
487
487
  */
488
488
  BoxClient.prototype.del = function (path, params, callback) {
@@ -496,7 +496,7 @@ var BoxClient = /** @class */ (function () {
496
496
  *
497
497
  * @param {string} path - Path to an API endpoint (e.g. /files/content)
498
498
  * @param {?Object} params - An optional object containing request parameters
499
- * @param {APIRequest~Callback} callback - Called with API call results, or err if call failed
499
+ * @param {Function} callback - Called with API call results, or err if call failed
500
500
  * @returns {void}
501
501
  */
502
502
  BoxClient.prototype.options = function (path, params, callback) {
@@ -510,7 +510,7 @@ var BoxClient = /** @class */ (function () {
510
510
  * @param {string} path - path to an upload API endpoint
511
511
  * @param {?Object} params - an optional object containing request parameters
512
512
  * @param {?Object} formData - multipart form data to include in the upload request {@see https://github.com/mikeal/request#multipartform-data-multipart-form-uploads}
513
- * @param {APIRequest~Callback} callback - called with API call results, or an error if the call failed
513
+ * @param {Function} callback - called with API call results, or an error if the call failed
514
514
  * @returns {void}
515
515
  */
516
516
  BoxClient.prototype.upload = function (path, params, formData, callback) {
@@ -543,7 +543,7 @@ var BoxClient = /** @class */ (function () {
543
543
  * back to the callback as errors. This is the standard behavior of most endpoints.
544
544
  *
545
545
  * @param {Function} callback The original callback given by the consumer
546
- * @returns {?APIRequest~Callback} A new callback that processes the response before passing it to the callback.
546
+ * @returns {?Function} A new callback that processes the response before passing it to the callback.
547
547
  */
548
548
  BoxClient.prototype.defaultResponseHandler = function (callback) {
549
549
  var self = this;
@@ -4,7 +4,7 @@
4
4
  /// <reference types="node" />
5
5
  /// <reference types="bluebird" />
6
6
  import { EventEmitter } from 'events';
7
- import AnonymousAPISession = require('./sessions/anonymous-session');
7
+ import CCGAPISession = require('./sessions/ccg-session');
8
8
  import APIRequestManager = require('./api-request-manager');
9
9
  import BoxClient = require('./box-client');
10
10
  import TokenManager = require('./token-manager');
@@ -36,6 +36,10 @@ import TokenManager = require('./token-manager');
36
36
  declare type TokenStore = object;
37
37
  declare type UserConfigurationOptions = object;
38
38
  declare type TokenRequestOptions = object;
39
+ declare type CCGConfig = {
40
+ boxSubjectType: "user" | "enterprise";
41
+ boxSubjectId: string;
42
+ };
39
43
  /**
40
44
  * A backend NodeJS SDK to interact with the Box V2 API.
41
45
  * This is the single entry point for all SDK consumer interactions. This is the only file that a 3rd party app
@@ -57,7 +61,7 @@ declare class BoxSDKNode extends EventEmitter {
57
61
  _eventBus: EventEmitter;
58
62
  requestManager: APIRequestManager;
59
63
  tokenManager: TokenManager;
60
- anonymousSession: AnonymousAPISession;
64
+ ccgSession: CCGAPISession;
61
65
  /**
62
66
  * Expose the BoxClient property enumerations to the SDK as a whole. This allows
63
67
  * the consumer to access and use these values from anywhere in their application
@@ -128,19 +132,28 @@ declare class BoxSDKNode extends EventEmitter {
128
132
  */
129
133
  getPersistentClient(tokenInfo: any, tokenStore?: TokenStore): BoxClient;
130
134
  /**
131
- * Returns A Box Client with an Anonymous API Session. An Anonymous API Session has access to an anonymous
132
- * client-credentials token, which isn't tied to any specific user. Because of this, the client will only
133
- * have access to endpoints that allow client-credential tokens. All Anonymous API Sessions share the
135
+ * Returns a Box Client configured to use Client Credentials Grant for a service account. Requires enterprise ID
136
+ * to be set when configuring SDK instance.
137
+ *
138
+ * @returns {BoxClient} Returns a new Box Client paired to a AnonymousAPISession. All Anonymous API Sessions share the
134
139
  * same tokens, which allows them to refresh them efficiently and reduce load on both the application and
135
140
  * the API.
136
- *
137
- * @returns {BoxClient} Returns a new Box Client paired to a AnonymousAPISession
138
141
  */
139
142
  getAnonymousClient(): BoxClient;
140
143
  /**
141
- * Create a new client using App Auth for the given entity. This allows either
144
+ * Returns a Box Client configured to use Client Credentials Grant for a specified user.
145
+ *
146
+ * @param userId the user ID to use when getting the access token
147
+ * @returns {BoxClient} Returns a new Box Client paired to a AnonymousAPISession. All Anonymous API Sessions share the
148
+ * same tokens, which allows them to refresh them efficiently and reduce load on both the application and
149
+ * the API.
150
+ */
151
+ getCCGClientForUser(userId: string): BoxClient;
152
+ _getCCGClient(config: CCGConfig): BoxClient;
153
+ /**
154
+ * Create a new client using App Auth for the given entity. This allows either
142
155
  * managing App Users (as the enterprise) or performing operations as the App
143
- * Users themselves (as a user).
156
+ * Users or Managed Users themselves (as a user).
144
157
  *
145
158
  * @param {string} type The type of entity to operate as, "enterprise" or "user"
146
159
  * @param {string} [id] (Optional) The Box ID of the entity to operate as
@@ -199,7 +212,7 @@ declare class BoxSDKNode extends EventEmitter {
199
212
  * @param {string} userID The ID of the App User to generate a token for
200
213
  * @param {TokenRequestOptions} [options] - Sets optional behavior for the token grant, null for default behavior
201
214
  * @param {Function} [callback] Passed the tokens if successful
202
- * @returns {Promise<TokentInfo>} Promise reolving to the token infp
215
+ * @returns {Promise<TokentInfo>} Promise resolving to the token info
203
216
  */
204
217
  getAppUserTokens(userID: string, options: TokenRequestOptions | Function | null, callback: Function): import("bluebird")<any>;
205
218
  /**
@@ -17,6 +17,17 @@ var __extends = (this && this.__extends) || (function () {
17
17
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18
18
  };
19
19
  })();
20
+ var __assign = (this && this.__assign) || function () {
21
+ __assign = Object.assign || function(t) {
22
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
23
+ s = arguments[i];
24
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
25
+ t[p] = s[p];
26
+ }
27
+ return t;
28
+ };
29
+ return __assign.apply(this, arguments);
30
+ };
20
31
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
21
32
  if (k2 === undefined) k2 = k;
22
33
  Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
@@ -41,7 +52,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
41
52
  // ------------------------------------------------------------------------------
42
53
  var events_1 = require("events");
43
54
  var qs = __importStar(require("querystring"));
44
- var AnonymousAPISession = require("./sessions/anonymous-session");
55
+ var CCGAPISession = require("./sessions/ccg-session");
45
56
  var APIRequestManager = require("./api-request-manager");
46
57
  var BoxClient = require("./box-client");
47
58
  var TokenManager = require("./token-manager");
@@ -94,7 +105,7 @@ var BoxSDKNode = /** @class */ (function (_super) {
94
105
  this.requestManager = new APIRequestManager(this.config, this._eventBus);
95
106
  // Initialize the rest of the SDK with the given configuration
96
107
  this.tokenManager = new TokenManager(this.config, this.requestManager);
97
- this.anonymousSession = new AnonymousAPISession(this.config, this.tokenManager);
108
+ this.ccgSession = new CCGAPISession(this.config, this.tokenManager);
98
109
  };
99
110
  /**
100
111
  * Gets the BoxSDKNode instance by passing boxAppSettings json downloaded from the developer console.
@@ -190,21 +201,39 @@ var BoxSDKNode = /** @class */ (function (_super) {
190
201
  return new BoxClient(apiSession, this.config, this.requestManager);
191
202
  };
192
203
  /**
193
- * Returns A Box Client with an Anonymous API Session. An Anonymous API Session has access to an anonymous
194
- * client-credentials token, which isn't tied to any specific user. Because of this, the client will only
195
- * have access to endpoints that allow client-credential tokens. All Anonymous API Sessions share the
204
+ * Returns a Box Client configured to use Client Credentials Grant for a service account. Requires enterprise ID
205
+ * to be set when configuring SDK instance.
206
+ *
207
+ * @returns {BoxClient} Returns a new Box Client paired to a AnonymousAPISession. All Anonymous API Sessions share the
196
208
  * same tokens, which allows them to refresh them efficiently and reduce load on both the application and
197
209
  * the API.
198
- *
199
- * @returns {BoxClient} Returns a new Box Client paired to a AnonymousAPISession
200
210
  */
201
211
  BoxSDKNode.prototype.getAnonymousClient = function () {
202
- return new BoxClient(this.anonymousSession, this.config, this.requestManager);
212
+ if (!this.config.enterpriseID) {
213
+ throw new Error('Enterprise ID must be passed');
214
+ }
215
+ return this._getCCGClient({ boxSubjectType: "enterprise", boxSubjectId: this.config.enterpriseID });
216
+ };
217
+ /**
218
+ * Returns a Box Client configured to use Client Credentials Grant for a specified user.
219
+ *
220
+ * @param userId the user ID to use when getting the access token
221
+ * @returns {BoxClient} Returns a new Box Client paired to a AnonymousAPISession. All Anonymous API Sessions share the
222
+ * same tokens, which allows them to refresh them efficiently and reduce load on both the application and
223
+ * the API.
224
+ */
225
+ BoxSDKNode.prototype.getCCGClientForUser = function (userId) {
226
+ return this._getCCGClient({ boxSubjectType: "user", boxSubjectId: userId });
227
+ };
228
+ BoxSDKNode.prototype._getCCGClient = function (config) {
229
+ var anonymousTokenManager = new TokenManager(__assign(__assign({}, this.config), config), this.requestManager);
230
+ var newAnonymousSession = new CCGAPISession(this.config, anonymousTokenManager);
231
+ return new BoxClient(newAnonymousSession, this.config, this.requestManager);
203
232
  };
204
233
  /**
205
- * Create a new client using App Auth for the given entity. This allows either
234
+ * Create a new client using App Auth for the given entity. This allows either
206
235
  * managing App Users (as the enterprise) or performing operations as the App
207
- * Users themselves (as a user).
236
+ * Users or Managed Users themselves (as a user).
208
237
  *
209
238
  * @param {string} type The type of entity to operate as, "enterprise" or "user"
210
239
  * @param {string} [id] (Optional) The Box ID of the entity to operate as
@@ -293,7 +322,7 @@ var BoxSDKNode = /** @class */ (function (_super) {
293
322
  * @param {string} userID The ID of the App User to generate a token for
294
323
  * @param {TokenRequestOptions} [options] - Sets optional behavior for the token grant, null for default behavior
295
324
  * @param {Function} [callback] Passed the tokens if successful
296
- * @returns {Promise<TokentInfo>} Promise reolving to the token infp
325
+ * @returns {Promise<TokentInfo>} Promise resolving to the token info
297
326
  */
298
327
  BoxSDKNode.prototype.getAppUserTokens = function (userID, options, callback) {
299
328
  if (typeof options === 'function') {
@@ -1 +1 @@
1
- {"version":3,"file":"box-node-sdk.js","sourceRoot":"","sources":["../src/box-node-sdk.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"box-node-sdk.js","sourceRoot":"","sources":["../src/box-node-sdk.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"chunked-uploader.js","sourceRoot":"","sources":["../src/chunked-uploader.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"chunked-uploader.js","sourceRoot":"","sources":["../src/chunked-uploader.ts"],"names":[],"mappings":"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"}
@@ -28,6 +28,55 @@ declare type UploadPart = {
28
28
  offset: number;
29
29
  size: number;
30
30
  };
31
+ declare type FileSharedLinkAccess = 'open' | 'company' | 'collaborators' | null;
32
+ declare type FileSharedLinkPermissions = {
33
+ /**
34
+ * If the shared link allows only to view files. This can only be set when access is set to open or company.
35
+ */
36
+ can_view?: true;
37
+ /**
38
+ * If the shared link allows only to download files. This can only be set when access is set to open or company.
39
+ */
40
+ can_download?: boolean;
41
+ /**
42
+ * If the shared link allows only to edit files. This can only be set when access is set to open or company.
43
+ */
44
+ can_edit?: boolean;
45
+ };
46
+ declare type FileSharedLink = {
47
+ /**
48
+ * The level of access for the shared link. This can be restricted to anyone with the link (open),
49
+ * only people within the company (company) and only those who have been invited to the file (collaborators).
50
+ *
51
+ * If not set, this field defaults to the access level specified by the enterprise admin.
52
+ * To create a shared link with this default setting pass the shared_link object with no access field.
53
+ * To remove access and change its value to default one pass the shared_link object with null value access field.
54
+ */
55
+ access?: FileSharedLinkAccess;
56
+ /**
57
+ * The password required to access the shared link. Set the password to null to remove it.
58
+ * A password can only be set when access is set to open.
59
+ */
60
+ password?: string | null;
61
+ /**
62
+ * The timestamp at which this shared link will expire. This field can only be set by users with paid accounts.
63
+ * The value must be greater than the current date and time.
64
+ * Example value: '2012-12-12T10:53:43-08:00'
65
+ */
66
+ unshared_at?: string | null;
67
+ /**
68
+ * Defines a custom vanity name to use in the shared link URL, for example vanity_name: "my-shared-link" will
69
+ * produce a shared link of "https://app.box.com/v/my-shared-link".
70
+ *
71
+ * Custom URLs should not be used when sharing sensitive content as vanity URLs are a lot easier to guess
72
+ * than regular shared links.
73
+ */
74
+ vanity_name?: string | null;
75
+ /**
76
+ * Defines what actions are allowed on a shared link.
77
+ */
78
+ permissions?: FileSharedLinkPermissions;
79
+ };
31
80
  /**
32
81
  * Simple manager for interacting with all 'File' endpoints and actions.
33
82
  *
@@ -129,6 +178,7 @@ declare class Files {
129
178
  update(fileID: string, updates: {
130
179
  [key: string]: any;
131
180
  etag?: string;
181
+ shared_link?: FileSharedLink;
132
182
  }, callback?: Function): any;
133
183
  /**
134
184
  * Add a file to a given collection
@@ -268,6 +318,7 @@ declare class Files {
268
318
  * @param {string} [options.content_created_at] - RFC 3339 timestamp when the file was created
269
319
  * @param {string} [options.content_modified_at] - RFC 3339 timestamp when the file was last modified
270
320
  * @param {int} [options.content_length] - Optional length of the content. Required if content is a read stream of any type other than fs stream.
321
+ * @param {string} [options.description] - Optional description of the uploaded file.
271
322
  * @param {Function} [callback] - called with data about the upload if successful, or an error if the
272
323
  * upload failed
273
324
  * @returns {Promise<Object>} A promise resolving to the uploaded file
@@ -276,6 +327,7 @@ declare class Files {
276
327
  content_created_at?: string;
277
328
  content_modified_at?: string;
278
329
  content_length?: number;
330
+ description?: string;
279
331
  } | Function, callback?: Function): any;
280
332
  /**
281
333
  * Uploads a new version of a file. Unlike non-upload methods, this method will not perform any retries.
@@ -291,6 +343,7 @@ declare class Files {
291
343
  * @param {string} [options.content_modified_at] - RFC 3339 timestamp when the file was last modified
292
344
  * @param {string} [options.name] - A new name for the file
293
345
  * @param {int} [options.content_length] - Optional length of the content. Required if content is a read stream of any type other than fs stream.
346
+ * @param {string} [options.description] - Optional description of the uploaded new file version.
294
347
  * @param {Function} [callback] - called with data about the upload if successful, or an error if the
295
348
  * upload failed
296
349
  * @returns {Promise<Object>} A promise resolving to the uploaded file
@@ -299,6 +352,7 @@ declare class Files {
299
352
  content_modified_at?: string;
300
353
  name?: string;
301
354
  content_length?: number;
355
+ description?: string;
302
356
  } | Function, callback?: Function): any;
303
357
  /**
304
358
  * Retrieves all metadata associated with a file.
@@ -597,11 +651,13 @@ declare class Files {
597
651
  * @param {string} fileHash - The base64-encoded SHA-1 hash of the file being uploaded
598
652
  * @param {Object} [options] - Optional parameters set on the created file, can be left null
599
653
  * @param {UploadPart[]} [options.parts] The list of uploaded parts to be committed, will be fetched from the API otherwise
654
+ * @param {string} [options.description] - Optional description of the uploaded file.
600
655
  * @param {Function} [callback] - Passed the new file information if successful
601
656
  * @returns {Promise<Object>} A promise resolving to the uploaded file object
602
657
  */
603
658
  commitUploadSession(sessionID: string, fileHash: string, options?: {
604
659
  parts?: UploadPart[];
660
+ description?: string;
605
661
  }, callback?: Function): any;
606
662
  /**
607
663
  * Abort an upload session, discarding any chunks that were uploaded to it