files.com 1.1.173 → 1.1.175

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: 4c4a2e877be12c7f43fb6330174363be7e753cea739d8ea4939176ed620d9248
4
- data.tar.gz: 9336e3cde8025506b74a34c2ca4df1aea3131f2ed77362c6d066d1f1b356a494
3
+ metadata.gz: b15caee725d0dbe5f41284365ec6f095baa945b55de7db2d55b720b2e8e7290e
4
+ data.tar.gz: 31f846773b912e90996cad389321c4c34c05a8bc4b5f8a2ce4667e6c71453180
5
5
  SHA512:
6
- metadata.gz: 26e6ab7e1e869626b11199e672bccb526d0e9f6b245ac3b152149d0e266d4beb71c2914a1dda360cca6b8f97e08549b5aa64247ed90f0ae6452d16ed07543fdd
7
- data.tar.gz: fa0a3374c0971d9c9920395c75f7703eed027df66450d39ec1b510e3f97ea7d5d25a8c5f04ed759a476e4f55fd1893e39136a730cc534dbbbccaf227e09f0460
6
+ metadata.gz: 2c2d9a53dec32616fcbd20d4c35e37baf76292e603c68333687d48ed7b82512dc419a0a28f1f84b41f2cd483e71c0c3ae3d7482f590aad76900a1819de18e2b8
7
+ data.tar.gz: e784bad2bfd0866e9fb3511336a8f0a0c7c8e0c3a3a9dd54071356bdd71b89f8859b775c034e4579cb74d7c0009bc92fdc6d766fd4c900c6589c5cbec0b8b317
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.173
1
+ 1.1.175
data/docs/folder.md CHANGED
@@ -113,7 +113,7 @@ Files::Folder.list_for(path,
113
113
  * `path` (string): Required - Path to operate on.
114
114
  * `preview_size` (string): Request a preview size. Can be `small` (default), `large`, `xlarge`, or `pdf`.
115
115
  * `sort_by` (object): Search by field and direction. Valid fields are `path`, `size`, `modified_at_datetime`, `provided_modified_at`. Valid directions are `asc` and `desc`. Defaults to `{"path":"asc"}`.
116
- * `search` (string): If specified, will filter folders/files list by name. Ignores text before last `/`. This is the same API used by the search bar in the web UI when running 'Search This Folder'. Search results are a best effort, not real time, and not guaranteed to perfectly match the latest folder listing. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
116
+ * `search` (string): If specified, will search the folders/files list by name. Ignores text before last `/`. This is the same API used by the search bar in the web UI when running 'Search This Folder'. Search results are a best effort, not real time, and not guaranteed to perfectly match the latest folder listing. Results may be trunacted if more than 1,000 possible matches exist. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
117
117
  * `search_all` (boolean): Search entire site? If set, we will ignore the folder path provided and search the entire site. This is the same API used by the search bar in the web UI when running 'Search All Files'. Search results are a best effort, not real time, and not guaranteed to match every file. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
118
118
  * `with_previews` (boolean): Include file previews?
119
119
  * `with_priority_color` (boolean): Include file priority color information?
@@ -7,6 +7,7 @@
7
7
  "id": 1,
8
8
  "protocol_cipher": "TLSv1.2; ECDHE-RSA-AES256-GCM-SHA384",
9
9
  "created_at": "2000-01-01T01:00:00Z",
10
+ "insecure": true,
10
11
  "interface": "restapi",
11
12
  "updated_at": "2000-01-01T01:00:00Z",
12
13
  "user_id": 1
@@ -16,6 +17,7 @@
16
17
  * `id` (int64): UserCipherUse ID
17
18
  * `protocol_cipher` (string): The protocol and cipher employed
18
19
  * `created_at` (date-time): The earliest recorded use of this combination of interface and protocol and cipher (for this user)
20
+ * `insecure` (boolean): Is this cipher considered insecure?
19
21
  * `interface` (string): The interface accessed
20
22
  * `updated_at` (date-time): The most recent use of this combination of interface and protocol and cipher (for this user)
21
23
  * `user_id` (int64): ID of the user who performed this access
@@ -482,7 +482,7 @@ module Files
482
482
  # path (required) - string - Path to operate on.
483
483
  # preview_size - string - Request a preview size. Can be `small` (default), `large`, `xlarge`, or `pdf`.
484
484
  # sort_by - object - Search by field and direction. Valid fields are `path`, `size`, `modified_at_datetime`, `provided_modified_at`. Valid directions are `asc` and `desc`. Defaults to `{"path":"asc"}`.
485
- # search - string - If specified, will filter folders/files list by name. Ignores text before last `/`. This is the same API used by the search bar in the web UI when running 'Search This Folder'. Search results are a best effort, not real time, and not guaranteed to perfectly match the latest folder listing. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
485
+ # search - string - If specified, will search the folders/files list by name. Ignores text before last `/`. This is the same API used by the search bar in the web UI when running 'Search This Folder'. Search results are a best effort, not real time, and not guaranteed to perfectly match the latest folder listing. Results may be trunacted if more than 1,000 possible matches exist. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
486
486
  # search_all - boolean - Search entire site? If set, we will ignore the folder path provided and search the entire site. This is the same API used by the search bar in the web UI when running 'Search All Files'. Search results are a best effort, not real time, and not guaranteed to match every file. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
487
487
  # with_previews - boolean - Include file previews?
488
488
  # with_priority_color - boolean - Include file priority color information?
@@ -24,6 +24,11 @@ module Files
24
24
  @attributes[:created_at]
25
25
  end
26
26
 
27
+ # boolean - Is this cipher considered insecure?
28
+ def insecure
29
+ @attributes[:insecure]
30
+ end
31
+
27
32
  # string - The interface accessed
28
33
  def interface
29
34
  @attributes[:interface]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.173"
4
+ VERSION = "1.1.175"
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.173
4
+ version: 1.1.175
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-11-06 00:00:00.000000000 Z
11
+ date: 2024-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable