files.com 1.1.292 → 1.1.294
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/Gemfile.lock +1 -1
- data/_VERSION +1 -1
- data/docs/bundle_action.md +10 -2
- data/lib/files.com/models/bundle_action.rb +21 -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: ee1c7ff65812de4894b7e38f2576aca47d448f657acb783b3d1bc4fba9ce1da3
|
4
|
+
data.tar.gz: acc3648dd73d8ae25b088c933c5e4eb6e8ae321b1b97ab95c3a07d151d8f32e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 961c1021846442cbffcc6be9363902f25f65e303fc04d42bd2b9fb4e7cd77bb520e322671b9c1085a664f5c5f5a12963f930ff7bb0d99d7c1098a26e4b389e38
|
7
|
+
data.tar.gz: de55928084ae88b13eaec75b1906280e03a398cb14e8980ef90e6f7cb97774ecd7ebe0f49b00eaa7f7345e3fb5d3c3e9896d84da9c28e974cbdb04211e1f2cbe
|
data/Gemfile.lock
CHANGED
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.294
|
data/docs/bundle_action.md
CHANGED
@@ -25,7 +25,11 @@
|
|
25
25
|
"created_at": "2000-01-01T01:00:00Z",
|
26
26
|
"destination": "/to_path",
|
27
27
|
"path": "",
|
28
|
-
"source": "/from_path"
|
28
|
+
"source": "/from_path",
|
29
|
+
"bundle_registration_id": 1,
|
30
|
+
"bundle_registration_name": "John Doe",
|
31
|
+
"bundle_registration_email": "john@example.com",
|
32
|
+
"bundle_registration_ip": "127.0.0.1"
|
29
33
|
}
|
30
34
|
```
|
31
35
|
|
@@ -35,6 +39,10 @@
|
|
35
39
|
* `destination` (string): The destination path for this bundle action, if applicable
|
36
40
|
* `path` (string): Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
37
41
|
* `source` (string): The source path for this bundle action, if applicable
|
42
|
+
* `bundle_registration_id` (int64): Identifier of the associated bundle registration
|
43
|
+
* `bundle_registration_name` (string): Name of the registrant who performed the action
|
44
|
+
* `bundle_registration_email` (string): Email of the registrant
|
45
|
+
* `bundle_registration_ip` (string): IP address of the registrant
|
38
46
|
|
39
47
|
|
40
48
|
---
|
@@ -52,7 +60,7 @@ Files::BundleAction.list(
|
|
52
60
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
53
61
|
* `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.
|
54
62
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
55
|
-
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `created_at`.
|
63
|
+
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `created_at` and `bundle_registration_id`.
|
56
64
|
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `bundle_id` or `bundle_registration_id`. Valid field combinations are `[ bundle_id, created_at ]`, `[ bundle_registration_id, created_at ]`, `[ bundle_id, bundle_registration_id ]` or `[ bundle_id, bundle_registration_id, created_at ]`.
|
57
65
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
|
58
66
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
|
@@ -39,11 +39,31 @@ module Files
|
|
39
39
|
@attributes[:source]
|
40
40
|
end
|
41
41
|
|
42
|
+
# int64 - Identifier of the associated bundle registration
|
43
|
+
def bundle_registration_id
|
44
|
+
@attributes[:bundle_registration_id]
|
45
|
+
end
|
46
|
+
|
47
|
+
# string - Name of the registrant who performed the action
|
48
|
+
def bundle_registration_name
|
49
|
+
@attributes[:bundle_registration_name]
|
50
|
+
end
|
51
|
+
|
52
|
+
# string - Email of the registrant
|
53
|
+
def bundle_registration_email
|
54
|
+
@attributes[:bundle_registration_email]
|
55
|
+
end
|
56
|
+
|
57
|
+
# string - IP address of the registrant
|
58
|
+
def bundle_registration_ip
|
59
|
+
@attributes[:bundle_registration_ip]
|
60
|
+
end
|
61
|
+
|
42
62
|
# Parameters:
|
43
63
|
# user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
|
44
64
|
# 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.
|
45
65
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
46
|
-
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `created_at`.
|
66
|
+
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `created_at` and `bundle_registration_id`.
|
47
67
|
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `bundle_id` or `bundle_registration_id`. Valid field combinations are `[ bundle_id, created_at ]`, `[ bundle_registration_id, created_at ]`, `[ bundle_id, bundle_registration_id ]` or `[ bundle_id, bundle_registration_id, created_at ]`.
|
48
68
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
|
49
69
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
|
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.294
|
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-07-
|
11
|
+
date: 2025-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|