files.com 1.2.167 → 1.2.169

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
@@ -468,7 +468,6 @@ Error
468
468
  | `NotAuthorized_UserIdWithoutSiteAdminError`| `NotAuthorizedError` |
469
469
  | `NotAuthorized_WriteAndBundlePermissionRequiredError`| `NotAuthorizedError` |
470
470
  | `NotAuthorized_WritePermissionRequiredError`| `NotAuthorizedError` |
471
- | `NotAuthorized_ZipDownloadIpMismatchError`| `NotAuthorizedError` |
472
471
  | `NotFound_ApiKeyNotFoundError`| `NotFoundError` |
473
472
  | `NotFound_BundlePathNotFoundError`| `NotFoundError` |
474
473
  | `NotFound_BundleRegistrationNotFoundError`| `NotFoundError` |
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.167
1
+ 1.2.169
package/docs/Errors.md CHANGED
@@ -139,7 +139,6 @@ These errors are derived from the error groups listed above.
139
139
  ### NotAuthorized_UserIdWithoutSiteAdminError
140
140
  ### NotAuthorized_WriteAndBundlePermissionRequiredError
141
141
  ### NotAuthorized_WritePermissionRequiredError
142
- ### NotAuthorized_ZipDownloadIpMismatchError
143
142
  ### NotFound_ApiKeyNotFoundError
144
143
  ### NotFound_BundlePathNotFoundError
145
144
  ### NotFound_BundleRegistrationNotFoundError
@@ -19,10 +19,7 @@
19
19
  ## List Inbox Uploads
20
20
 
21
21
  ```
22
- await InboxUpload.list({
23
- 'inbox_registration_id': 1,
24
- 'inbox_id': 1,
25
- })
22
+ await InboxUpload.list
26
23
  ```
27
24
 
28
25
 
@@ -31,10 +28,8 @@ await InboxUpload.list({
31
28
  * `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
32
29
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
33
30
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `created_at`.
34
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`.
31
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `folder_behavior_id` or `inbox_registration_id`. Valid field combinations are `[ created_at, folder_behavior_id ]` and `[ created_at, inbox_registration_id ]`.
35
32
  * `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
36
33
  * `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
37
34
  * `filter_lt` (object): If set, return records where the specified field is less than the supplied value. Valid fields are `created_at`.
38
35
  * `filter_lteq` (object): If set, return records where the specified field is less than or equal the supplied value. Valid fields are `created_at`.
39
- * `inbox_registration_id` (int64): InboxRegistration ID
40
- * `inbox_id` (int64): Inbox ID
@@ -184,7 +184,6 @@
184
184
  "windows_mode_ftp": false,
185
185
  "user_belongs_to_parent_site": false
186
186
  },
187
- "session_pinned_by_ip": true,
188
187
  "sftp_enabled": true,
189
188
  "sftp_host_key_type": "default",
190
189
  "active_sftp_host_key_id": 1,
@@ -425,7 +424,6 @@
425
424
  * `require_2fa_user_type` (string): What type of user is required to use two-factor authentication (when require_2fa is set to `true` for this site)?
426
425
  * `require_logout_from_bundles_and_inboxes` (boolean): If true, we will hide the 'Remember Me' box on Inbox and Bundle registration pages, requiring that the user logout and log back in every time they visit the page.
427
426
  * `session` (Session): Current session
428
- * `session_pinned_by_ip` (boolean): Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
429
427
  * `sftp_enabled` (boolean): Is SFTP enabled?
430
428
  * `sftp_host_key_type` (string): Sftp Host Key Type
431
429
  * `active_sftp_host_key_id` (int64): Id of the currently selected custom SFTP Host Key
@@ -563,7 +561,6 @@ await Site.update({
563
561
  'sftp_user_root_enabled': true,
564
562
  'disable_password_reset': true,
565
563
  'immutable_files': true,
566
- 'session_pinned_by_ip': true,
567
564
  'bundle_not_found_message': "example",
568
565
  'bundle_password_required': true,
569
566
  'bundle_require_registration': true,
@@ -722,7 +719,6 @@ await Site.update({
722
719
  * `sftp_user_root_enabled` (boolean): Use user FTP roots also for SFTP?
723
720
  * `disable_password_reset` (boolean): Is password reset disabled?
724
721
  * `immutable_files` (boolean): Are files protected from modification?
725
- * `session_pinned_by_ip` (boolean): Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
726
722
  * `bundle_not_found_message` (string): Custom error message to show when bundle is not found.
727
723
  * `bundle_password_required` (boolean): Do Bundles require password protection?
728
724
  * `bundle_require_registration` (boolean): Do Bundles require registration?