files.com 1.1.13 → 1.1.15
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.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/file.md +1 -1
- data/docs/folder.md +1 -1
- data/lib/files.com/errors.rb +1 -0
- data/lib/files.com/models/file.rb +1 -1
- data/lib/files.com/models/folder.rb +1 -1
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5d0220ecab07d01d17a3c5b0a5f1d9ca163e648d415104532f13a02bcc41195
|
|
4
|
+
data.tar.gz: 783a4b1ea396fd4ccfbfa4dd9817849b83675519d17176260363b2c2a2ebb5d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 742f82ca52857c65d88152f274b8b40fc2ee609389e39a7f557a103d542134d1b527b5a7d2db0dbafb1950e65e2060613a3fabaa7246a6390a08fe6b004f8a99
|
|
7
|
+
data.tar.gz: 45b306a111de2852df9c045e316deea8114b941a3617a4689a8f4819e67c3aa6e077f3b64e892b16c281798533c31b897c59aff213c6606f7cd4faa4205c0742
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
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
|
|
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
|
|
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.
|
data/lib/files.com/errors.rb
CHANGED
|
@@ -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
|
|
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
|
|
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
|
data/lib/files.com/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|