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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85de1b4206fbd902e910a815679fdcfe486441227f3978e76a2587640e973ac3
4
- data.tar.gz: b4f3ac6c0f3975e6d92f49606601adbffd67c92188428b17e7259825a2cb6d13
3
+ metadata.gz: ee1c7ff65812de4894b7e38f2576aca47d448f657acb783b3d1bc4fba9ce1da3
4
+ data.tar.gz: acc3648dd73d8ae25b088c933c5e4eb6e8ae321b1b97ab95c3a07d151d8f32e2
5
5
  SHA512:
6
- metadata.gz: 12559973018c1901298f240814e1e35a5f862932963e20837a19cc48b679a12a1135c7a682b679818684fa8f0698debb2df89ba434ab6c3d9574922ac7e08ee3
7
- data.tar.gz: a8e5ea73a95743c2a7d13f9e54093b5c20972e693052d7af87449835ee13fa303be53315f783414949a88e8485ae7fe135529223c74ec2f45657307c3f8cba77
6
+ metadata.gz: 961c1021846442cbffcc6be9363902f25f65e303fc04d42bd2b9fb4e7cd77bb520e322671b9c1085a664f5c5f5a12963f930ff7bb0d99d7c1098a26e4b389e38
7
+ data.tar.gz: de55928084ae88b13eaec75b1906280e03a398cb14e8980ef90e6f7cb97774ecd7ebe0f49b00eaa7f7345e3fb5d3c3e9896d84da9c28e974cbdb04211e1f2cbe
data/Gemfile.lock CHANGED
@@ -20,7 +20,7 @@ GEM
20
20
  concurrent-ruby (1.3.5)
21
21
  connection_pool (2.5.3)
22
22
  diff-lcs (1.5.0)
23
- faraday (2.13.1)
23
+ faraday (2.13.2)
24
24
  faraday-net_http (>= 2.0, < 3.5)
25
25
  json
26
26
  logger
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.292
1
+ 1.1.294
@@ -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`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.292"
4
+ VERSION = "1.1.294"
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.292
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-03 00:00:00.000000000 Z
11
+ date: 2025-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable