files.com 1.0.164 → 1.0.165

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/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.164
1
+ 1.0.165
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.164",
3
+ "version": "1.0.165",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -40,13 +40,13 @@ class AccountLineItem {
40
40
  // string # Line item download uri
41
41
  getDownloadUri = () => this.attributes.download_uri
42
42
 
43
- // Associated invoice line items
43
+ // InvoiceLineItem # Associated invoice line items
44
44
  getInvoiceLineItems = () => this.attributes.invoice_line_items
45
45
 
46
46
  // string # Line item payment method
47
47
  getMethod = () => this.attributes.method
48
48
 
49
- // Associated payment line items
49
+ // PaymentLineItem # Associated payment line items
50
50
  getPaymentLineItems = () => this.attributes.payment_line_items
51
51
 
52
52
  // date-time # Date/time payment was reversed if applicable
@@ -78,7 +78,7 @@ class Bundle {
78
78
  this.attributes.clickwrap_body = value
79
79
  }
80
80
 
81
- // Custom Form to use
81
+ // FormFieldSet # Custom Form to use
82
82
  getFormFieldSet = () => this.attributes.form_field_set
83
83
 
84
84
  setFormFieldSet = value => {
@@ -144,7 +144,7 @@ class Bundle {
144
144
  this.attributes.inbox_id = value
145
145
  }
146
146
 
147
- // Preview watermark image applied to all bundle items.
147
+ // Image # Preview watermark image applied to all bundle items.
148
148
  getWatermarkAttachment = () => this.attributes.watermark_attachment
149
149
 
150
150
  setWatermarkAttachment = value => {
@@ -22,6 +22,7 @@ class BundleDownload {
22
22
  }
23
23
 
24
24
  isLoaded = () => !!this.attributes.id
25
+ // BundleRegistration
25
26
  getBundleRegistration = () => this.attributes.bundle_registration
26
27
 
27
28
  // string # Download method (file or full_zip)
@@ -302,7 +302,7 @@ class File {
302
302
  this.attributes.preview_id = value
303
303
  }
304
304
 
305
- // File preview
305
+ // Preview # File preview
306
306
  getPreview = () => this.attributes.preview
307
307
 
308
308
  setPreview = value => {
@@ -36,7 +36,7 @@ class FileComment {
36
36
  this.attributes.body = value
37
37
  }
38
38
 
39
- // Reactions to this comment.
39
+ // FileCommentReaction # Reactions to this comment.
40
40
  getReactions = () => this.attributes.reactions
41
41
 
42
42
  setReactions = value => {
@@ -128,7 +128,7 @@ class Folder {
128
128
  this.attributes.preview_id = value
129
129
  }
130
130
 
131
- // File preview
131
+ // Preview # File preview
132
132
  getPreview = () => this.attributes.preview
133
133
 
134
134
  setPreview = value => {
@@ -43,7 +43,7 @@ class FormFieldSet {
43
43
  this.attributes.form_layout = value
44
44
  }
45
45
 
46
- // Associated form fields
46
+ // FormField # Associated form fields
47
47
  getFormFields = () => this.attributes.form_fields
48
48
 
49
49
  setFormFields = value => {
@@ -22,6 +22,7 @@ class InboxUpload {
22
22
  }
23
23
 
24
24
  isLoaded = () => !!this.attributes.id
25
+ // InboxRegistration
25
26
  getInboxRegistration = () => this.attributes.inbox_registration
26
27
 
27
28
  // string # Upload path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
@@ -40,13 +40,13 @@ class Invoice {
40
40
  // string # Line item download uri
41
41
  getDownloadUri = () => this.attributes.download_uri
42
42
 
43
- // Associated invoice line items
43
+ // InvoiceLineItem # Associated invoice line items
44
44
  getInvoiceLineItems = () => this.attributes.invoice_line_items
45
45
 
46
46
  // string # Line item payment method
47
47
  getMethod = () => this.attributes.method
48
48
 
49
- // Associated payment line items
49
+ // PaymentLineItem # Associated payment line items
50
50
  getPaymentLineItems = () => this.attributes.payment_line_items
51
51
 
52
52
  // date-time # Date/time payment was reversed if applicable
@@ -43,7 +43,7 @@ class Message {
43
43
  this.attributes.body = value
44
44
  }
45
45
 
46
- // Comments.
46
+ // MessageComment # Comments.
47
47
  getComments = () => this.attributes.comments
48
48
 
49
49
  setComments = value => {
@@ -36,7 +36,7 @@ class MessageComment {
36
36
  this.attributes.body = value
37
37
  }
38
38
 
39
- // Reactions to this comment.
39
+ // MessageCommentReaction # Reactions to this comment.
40
40
  getReactions = () => this.attributes.reactions
41
41
 
42
42
  setReactions = value => {
@@ -40,13 +40,13 @@ class Payment {
40
40
  // string # Line item download uri
41
41
  getDownloadUri = () => this.attributes.download_uri
42
42
 
43
- // Associated invoice line items
43
+ // InvoiceLineItem # Associated invoice line items
44
44
  getInvoiceLineItems = () => this.attributes.invoice_line_items
45
45
 
46
46
  // string # Line item payment method
47
47
  getMethod = () => this.attributes.method
48
48
 
49
- // Associated payment line items
49
+ // PaymentLineItem # Associated payment line items
50
50
  getPaymentLineItems = () => this.attributes.payment_line_items
51
51
 
52
52
  // date-time # Date/time payment was reversed if applicable
@@ -64,7 +64,7 @@ class Site {
64
64
  // boolean # Do Bundles require recipients for sharing?
65
65
  getBundleRequireShareRecipient = () => this.attributes.bundle_require_share_recipient
66
66
 
67
- // Preview watermark image applied to all bundle items.
67
+ // Image # Preview watermark image applied to all bundle items.
68
68
  getBundleWatermarkAttachment = () => this.attributes.bundle_watermark_attachment
69
69
 
70
70
  // object # Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
@@ -160,16 +160,16 @@ class Site {
160
160
  // boolean # Is there a signed HIPAA BAA between Files.com and this site?
161
161
  getHipaa = () => this.attributes.hipaa
162
162
 
163
- // Branded icon 128x128
163
+ // Image # Branded icon 128x128
164
164
  getIcon128 = () => this.attributes.icon128
165
165
 
166
- // Branded icon 16x16
166
+ // Image # Branded icon 16x16
167
167
  getIcon16 = () => this.attributes.icon16
168
168
 
169
- // Branded icon 32x32
169
+ // Image # Branded icon 32x32
170
170
  getIcon32 = () => this.attributes.icon32
171
171
 
172
- // Branded icon 48x48
172
+ // Image # Branded icon 48x48
173
173
  getIcon48 = () => this.attributes.icon48
174
174
 
175
175
  // date-time # Can files be modified?
@@ -232,7 +232,7 @@ class Site {
232
232
  // string # Login help text
233
233
  getLoginHelpText = () => this.attributes.login_help_text
234
234
 
235
- // Branded logo
235
+ // Image # Branded logo
236
236
  getLogo = () => this.attributes.logo
237
237
 
238
238
  // int64 # Number of prior passwords to disallow
@@ -298,7 +298,7 @@ class Site {
298
298
  // string # What type of user is required to use two-factor authentication (when require_2fa is set to `true` for this site)?
299
299
  getRequire2faUserType = () => this.attributes.require_2fa_user_type
300
300
 
301
- // Current session
301
+ // Session # Current session
302
302
  getSession = () => this.attributes.session
303
303
 
304
304
  // boolean # Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
@@ -367,7 +367,7 @@ class Site {
367
367
  // boolean # Allow uploaders to set `provided_modified_at` for uploaded files?
368
368
  getUseProvidedModifiedAt = () => this.attributes.use_provided_modified_at
369
369
 
370
- // User of current session
370
+ // User # User of current session
371
371
  getUser = () => this.attributes.user
372
372
 
373
373
  // boolean # Will users be locked out after incorrect login attempts?
@@ -31,10 +31,10 @@ class Status {
31
31
  // string # Status message
32
32
  getStatus = () => this.attributes.status
33
33
 
34
- // Additional data
34
+ // Auto # Additional data
35
35
  getData = () => this.attributes.data
36
36
 
37
- // A list of api errors
37
+ // Errors # A list of api errors
38
38
  getErrors = () => this.attributes.errors
39
39
 
40
40
  // int64 # Required Clickwrap id
@@ -36,14 +36,14 @@ class Style {
36
36
  this.attributes.path = value
37
37
  }
38
38
 
39
- // Logo
39
+ // Image # Logo
40
40
  getLogo = () => this.attributes.logo
41
41
 
42
42
  setLogo = value => {
43
43
  this.attributes.logo = value
44
44
  }
45
45
 
46
- // Logo thumbnail
46
+ // Image # Logo thumbnail
47
47
  getThumbnail = () => this.attributes.thumbnail
48
48
 
49
49
  setThumbnail = value => {
@@ -43,7 +43,7 @@ class WebhookTest {
43
43
  this.attributes.status = value
44
44
  }
45
45
 
46
- // Additional data
46
+ // Auto # Additional data
47
47
  getData = () => this.attributes.data
48
48
 
49
49
  setData = value => {