files.com 1.1.293 → 1.1.295
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/bundle_action.md +10 -2
- data/docs/site.md +2 -2
- data/lib/files.com/models/bundle_action.rb +21 -1
- data/lib/files.com/models/site.rb +2 -2
- 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: e177417f1f6c9c091611122f4e0943f43251147f799356dee486f8833ef264ab
|
4
|
+
data.tar.gz: f22e934e4ad51082dab09f8a5b38253f46645cadbad389d186f729bc02484569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc178ef7ea91a411e09c76ebdbcc3c1f803f2b24a074673e95aca0cffee2866f6ad805b113d96f4af85f7650ad356eaae216a458c29847d2dd3324c5afb6c05c
|
7
|
+
data.tar.gz: 5a07c218e06d26eb01e3c3c51429282027518d28dfbf35c7731911fc42931a4d8522e4159597210eee648db9d6f0720f6c3263840bcbddc65d16931077002b63
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.295
|
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`.
|
data/docs/site.md
CHANGED
@@ -453,7 +453,7 @@
|
|
453
453
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
454
454
|
* `subdomain` (string): Site subdomain
|
455
455
|
* `switch_to_plan_date` (date-time): If switching plans, when does the new plan take effect?
|
456
|
-
* `tls_disabled` (boolean):
|
456
|
+
* `tls_disabled` (boolean): This setting enables Legacy Support for Insecure Ciphers across SFTP and FTP. See our documentation for more information. Contrary to its name, this setting does not disable TLS (it used to do that a long time ago), but rather enables certain ciphers which are known to be insecure but required for broad MFT compatibility.
|
457
457
|
* `trial_days_left` (int64): Number of days left in trial
|
458
458
|
* `trial_until` (date-time): When does this Site trial expire?
|
459
459
|
* `use_dedicated_ips_for_smtp` (boolean): If using custom SMTP, should we use dedicated IPs to deliver emails?
|
@@ -703,7 +703,7 @@ Files::Site.update(
|
|
703
703
|
* `migrate_remote_server_sync_to_sync` (boolean): If true, we will migrate all remote server syncs to the new Sync model.
|
704
704
|
* `session_expiry` (double): Session expiry in hours
|
705
705
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
706
|
-
* `tls_disabled` (boolean):
|
706
|
+
* `tls_disabled` (boolean): This setting enables Legacy Support for Insecure Ciphers across SFTP and FTP. See our documentation for more information. Contrary to its name, this setting does not disable TLS (it used to do that a long time ago), but rather enables certain ciphers which are known to be insecure but required for broad MFT compatibility.
|
707
707
|
* `sftp_insecure_ciphers` (boolean): If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severely weakens the security of your site and it is not recommend, except as a last resort for compatibility.
|
708
708
|
* `sftp_insecure_diffie_hellman` (boolean): If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
|
709
709
|
* `disable_files_certificate_generation` (boolean): If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
@@ -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`.
|
@@ -754,7 +754,7 @@ module Files
|
|
754
754
|
@attributes[:switch_to_plan_date]
|
755
755
|
end
|
756
756
|
|
757
|
-
# boolean -
|
757
|
+
# boolean - This setting enables Legacy Support for Insecure Ciphers across SFTP and FTP. See our documentation for more information. Contrary to its name, this setting does not disable TLS (it used to do that a long time ago), but rather enables certain ciphers which are known to be insecure but required for broad MFT compatibility.
|
758
758
|
def tls_disabled
|
759
759
|
@attributes[:tls_disabled]
|
760
760
|
end
|
@@ -915,7 +915,7 @@ module Files
|
|
915
915
|
# migrate_remote_server_sync_to_sync - boolean - If true, we will migrate all remote server syncs to the new Sync model.
|
916
916
|
# session_expiry - double - Session expiry in hours
|
917
917
|
# ssl_required - boolean - Is SSL required? Disabling this is insecure.
|
918
|
-
# tls_disabled - boolean -
|
918
|
+
# tls_disabled - boolean - This setting enables Legacy Support for Insecure Ciphers across SFTP and FTP. See our documentation for more information. Contrary to its name, this setting does not disable TLS (it used to do that a long time ago), but rather enables certain ciphers which are known to be insecure but required for broad MFT compatibility.
|
919
919
|
# sftp_insecure_ciphers - boolean - If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severely weakens the security of your site and it is not recommend, except as a last resort for compatibility.
|
920
920
|
# sftp_insecure_diffie_hellman - boolean - If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
|
921
921
|
# disable_files_certificate_generation - boolean - If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
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.295
|
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-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|