files.com 1.2.124 → 1.2.125

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.124
1
+ 1.2.125
@@ -4,7 +4,23 @@
4
4
 
5
5
  ```
6
6
  {
7
- "bundle_registration": "example",
7
+ "bundle_registration": {
8
+ "code": "abc123",
9
+ "name": "account",
10
+ "company": "Action Verb",
11
+ "email": "john.doe@files.com",
12
+ "ip": "10.1.1.1",
13
+ "inbox_code": "abc123",
14
+ "clickwrap_body": "example",
15
+ "form_field_set_id": 1,
16
+ "form_field_data": {
17
+ "key": "example value"
18
+ },
19
+ "bundle_code": "example",
20
+ "bundle_id": 1,
21
+ "bundle_recipient_id": 1,
22
+ "created_at": "2000-01-01T01:00:00Z"
23
+ },
8
24
  "download_method": "file",
9
25
  "path": "a/b/test.txt",
10
26
  "created_at": "2000-01-01T01:00:00Z"
package/lib/Files.js CHANGED
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
11
11
  var apiKey;
12
12
  var baseUrl = 'https://app.files.com';
13
13
  var sessionId = null;
14
- var version = '1.2.124';
14
+ var version = '1.2.125';
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.124",
3
+ "version": "1.2.125",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Files.js CHANGED
@@ -5,7 +5,7 @@ const endpointPrefix = '/api/rest/v1'
5
5
  let apiKey
6
6
  let baseUrl = 'https://app.files.com'
7
7
  let sessionId = null
8
- const version = '1.2.124'
8
+ const version = '1.2.125'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO