files.com 1.1.260 → 1.1.261
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/api_request_log.md +3 -1
- data/docs/site.md +2 -1
- data/lib/files.com/models/api_request_log.rb +5 -0
- 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: a116a77979904918ff8906dc6344280711d4976d73957e2c1196bf4926dc0d80
|
4
|
+
data.tar.gz: 8e6212317f58ec7db605ac79e4b2961ba9cd6e6b629a0bebf55f92671ed4ba01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5db82369fe356cefd2b3846157a7367b3831a920ed548a2cc8576e43f5efc7d05447de06bb9b9b81e5561f8aa62804b6a451fe5642307acfd00dfdadf8ddbec2
|
7
|
+
data.tar.gz: bebd3aba10e8fafb29a60badd108ea575f7e91c91089cd5b204dde07161650cc37674308812c07d9aa9c607dd58756dc012cc8b21b3b6cfbb15d736cb6381684
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.261
|
data/docs/api_request_log.md
CHANGED
@@ -22,7 +22,8 @@
|
|
22
22
|
"error_message": "example",
|
23
23
|
"response_code": 1,
|
24
24
|
"success": true,
|
25
|
-
"duration_ms": 1
|
25
|
+
"duration_ms": 1,
|
26
|
+
"impersonator_user_id": 1
|
26
27
|
}
|
27
28
|
```
|
28
29
|
|
@@ -45,6 +46,7 @@
|
|
45
46
|
* `response_code` (int64): HTTP Response Code
|
46
47
|
* `success` (boolean): `false` if HTTP Response Code is 4xx or 5xx
|
47
48
|
* `duration_ms` (int64): Duration (in milliseconds)
|
49
|
+
* `impersonator_user_id` (int64): User ID of Site Admin user impersonating this user via a Read-Only session.
|
48
50
|
|
49
51
|
|
50
52
|
---
|
data/docs/site.md
CHANGED
@@ -184,7 +184,8 @@
|
|
184
184
|
"legacy_checksums_mode": true,
|
185
185
|
"use_provided_modified_at": true,
|
186
186
|
"windows_mode_ftp": false,
|
187
|
-
"user_belongs_to_parent_site": false
|
187
|
+
"user_belongs_to_parent_site": false,
|
188
|
+
"impersonator_user_id": 1
|
188
189
|
},
|
189
190
|
"sftp_enabled": true,
|
190
191
|
"sftp_host_key_type": "default",
|
@@ -104,6 +104,11 @@ module Files
|
|
104
104
|
@attributes[:duration_ms]
|
105
105
|
end
|
106
106
|
|
107
|
+
# int64 - User ID of Site Admin user impersonating this user via a Read-Only session.
|
108
|
+
def impersonator_user_id
|
109
|
+
@attributes[:impersonator_user_id]
|
110
|
+
end
|
111
|
+
|
107
112
|
# Parameters:
|
108
113
|
# 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.
|
109
114
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
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.261
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|