files.com 1.1.13 → 1.1.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ddfbf63696b85ce8662ae8ad29a4696feab35e54015c7f611678ccfd0930731
4
- data.tar.gz: 568f34737be454a282544b05d8d0cf9ea692a3a73b8a0fe62adb621ce7ad59bb
3
+ metadata.gz: e5d0220ecab07d01d17a3c5b0a5f1d9ca163e648d415104532f13a02bcc41195
4
+ data.tar.gz: 783a4b1ea396fd4ccfbfa4dd9817849b83675519d17176260363b2c2a2ebb5d9
5
5
  SHA512:
6
- metadata.gz: 7af0061e10b3076ce71bd101c52c95ee852115a587b4730fae45bafad863a225233e38cc90b3ca5345653f9b8fa5f758806d0e966abf9ef60516d3c242c675c6
7
- data.tar.gz: 027732430dcfc0b927ca78fcad726eea680b2a3c0774caa85049a71cec46ee9985dbf11007b08e4122eaff6c972968b3ca89b9c28944c291bb4cd6352afd23dc
6
+ metadata.gz: 742f82ca52857c65d88152f274b8b40fc2ee609389e39a7f557a103d542134d1b527b5a7d2db0dbafb1950e65e2060613a3fabaa7246a6390a08fe6b004f8a99
7
+ data.tar.gz: 45b306a111de2852df9c045e316deea8114b941a3617a4689a8f4819e67c3aa6e077f3b64e892b16c281798533c31b897c59aff213c6606f7cd4faa4205c0742
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.13
1
+ 1.1.15
data/docs/file.md CHANGED
@@ -45,7 +45,7 @@ may places where a Ruby File object can be used.
45
45
  * `md5` (string): File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
46
46
  * `mime_type` (string): MIME Type. This is determined by the filename extension and is not stored separately internally.
47
47
  * `region` (string): Region location
48
- * `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
48
+ * `permissions` (string): A short string representing the current user's permissions. Can be `r` (Read),`w` (Write),`d` (Delete), `l` (List) or any combination
49
49
  * `subfolders_locked?` (boolean): Are subfolders locked and unable to be modified?
50
50
  * `is_locked` (boolean): Is this folder locked and unable to be modified?
51
51
  * `download_uri` (string): Link to download file. Provided only in response to a download request.
data/docs/folder.md CHANGED
@@ -47,7 +47,7 @@ Files::Dir is an alias of Files::Folder
47
47
  * `md5` (string): File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
48
48
  * `mime_type` (string): MIME Type. This is determined by the filename extension and is not stored separately internally.
49
49
  * `region` (string): Region location
50
- * `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
50
+ * `permissions` (string): A short string representing the current user's permissions. Can be `r` (Read),`w` (Write),`d` (Delete), `l` (List) or any combination
51
51
  * `subfolders_locked?` (boolean): Are subfolders locked and unable to be modified?
52
52
  * `is_locked` (boolean): Is this folder locked and unable to be modified?
53
53
  * `download_uri` (string): Link to download file. Provided only in response to a download request.
@@ -191,6 +191,7 @@ module Files
191
191
  class TwoFactorAuthenticationCodeAlreadySentError < ProcessingFailureError; end
192
192
  class TwoFactorAuthenticationCountryBlacklistedError < ProcessingFailureError; end
193
193
  class TwoFactorAuthenticationGeneralErrorError < ProcessingFailureError; end
194
+ class TwoFactorAuthenticationUnsubscribedRecipientError < ProcessingFailureError; end
194
195
  class UpdatesNotAllowedForRemotesError < ProcessingFailureError; end
195
196
 
196
197
  class RateLimitedError < APIError; end
@@ -660,7 +660,7 @@ module Files
660
660
  @attributes[:region] = value
661
661
  end
662
662
 
663
- # string - A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
663
+ # string - A short string representing the current user's permissions. Can be `r` (Read),`w` (Write),`d` (Delete), `l` (List) or any combination
664
664
  def permissions
665
665
  @attributes[:permissions]
666
666
  end
@@ -245,7 +245,7 @@ module Files
245
245
  @attributes[:region] = value
246
246
  end
247
247
 
248
- # string - A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
248
+ # string - A short string representing the current user's permissions. Can be `r` (Read),`w` (Write),`d` (Delete), `l` (List) or any combination
249
249
  def permissions
250
250
  @attributes[:permissions]
251
251
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.13"
4
+ VERSION = "1.1.15"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.13
4
+ version: 1.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-03 00:00:00.000000000 Z
11
+ date: 2024-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable