files.com 1.2.287 → 1.2.289

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
@@ -624,7 +624,6 @@ Error
624
624
  | `NotFound_CodeNotFoundError`| `NotFoundError` |
625
625
  | `NotFound_FileNotFoundError`| `NotFoundError` |
626
626
  | `NotFound_FileUploadNotFoundError`| `NotFoundError` |
627
- | `NotFound_FolderNotFoundError`| `NotFoundError` |
628
627
  | `NotFound_GroupNotFoundError`| `NotFoundError` |
629
628
  | `NotFound_InboxNotFoundError`| `NotFoundError` |
630
629
  | `NotFound_NestedNotFoundError`| `NotFoundError` |
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.287
1
+ 1.2.289
package/docs/Errors.md CHANGED
@@ -152,7 +152,6 @@ These errors are derived from the error groups listed above.
152
152
  ### NotFound_CodeNotFoundError
153
153
  ### NotFound_FileNotFoundError
154
154
  ### NotFound_FileUploadNotFoundError
155
- ### NotFound_FolderNotFoundError
156
155
  ### NotFound_GroupNotFoundError
157
156
  ### NotFound_InboxNotFoundError
158
157
  ### NotFound_NestedNotFoundError
@@ -5,22 +5,24 @@
5
5
  ```
6
6
  {
7
7
  "id": 1,
8
+ "user_id": 1,
9
+ "username": "example",
8
10
  "protocol_cipher": "TLSv1.2; ECDHE-RSA-AES256-GCM-SHA384",
9
11
  "created_at": "2000-01-01T01:00:00Z",
10
12
  "insecure": true,
11
13
  "interface": "restapi",
12
- "updated_at": "2000-01-01T01:00:00Z",
13
- "user_id": 1
14
+ "updated_at": "2000-01-01T01:00:00Z"
14
15
  }
15
16
  ```
16
17
 
17
18
  * `id` (int64): UserCipherUse ID
19
+ * `user_id` (int64): ID of the user who performed this access
20
+ * `username` (string): Username of the user who performed this access
18
21
  * `protocol_cipher` (string): The protocol and cipher employed
19
22
  * `created_at` (date-time): The earliest recorded use of this combination of interface and protocol and cipher (for this user)
20
23
  * `insecure` (boolean): Is this cipher considered insecure?
21
24
  * `interface` (string): The interface accessed
22
25
  * `updated_at` (date-time): The most recent use of this combination of interface and protocol and cipher (for this user)
23
- * `user_id` (int64): ID of the user who performed this access
24
26
 
25
27
  ---
26
28