files.com 1.1.711 → 1.1.712
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/action.md +3 -2
- data/docs/ai_assistant_personality.md +2 -2
- data/docs/api_request_log.md +1 -1
- data/docs/automation.md +28 -5
- data/docs/bundle.md +4 -4
- data/docs/desktop_configuration_profile.md +2 -2
- data/docs/expectation_evaluation.md +2 -1
- data/docs/expectation_incident.md +2 -1
- data/docs/history.md +3 -2
- data/docs/history_export_result.md +1 -1
- data/docs/holiday_calendar.md +44 -4
- data/docs/integration_centric_profile.md +1 -1
- data/docs/lock.md +2 -2
- data/docs/partner.md +6 -6
- data/docs/remote_mount_backend.md +1 -1
- data/docs/remote_server.md +1 -1
- data/docs/session.md +1 -1
- data/docs/settings_change.md +2 -2
- data/docs/site.md +10 -10
- data/docs/sso_strategy.md +4 -4
- data/docs/user.md +3 -3
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5556c442f45152118532afc239468d151f5584c2017477827eb0ed63e116b58
|
|
4
|
+
data.tar.gz: 52ba8f70b059bd8bfebf4ea45b4327302e3fe1e72dab9017bc14ddb50b0b864c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d1a16af3b93aae089e6d14cfe253d33069547658b742bbdd28df613ad5c0f2a6fe187d7e9eaef0aef20005aaa5d9687e5537cd9fc5bca9f0d692ef46885c7a7
|
|
7
|
+
data.tar.gz: d038d33703209dc64a48a38aff3552d5b1c16fe30f6d444d77e763cf262783445a30ca474f8bfab44ea38ad06e4eafd1936d4bdb97c3919aa892c2a93fa29a32
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.712
|
data/docs/action.md
CHANGED
|
@@ -11,10 +11,11 @@
|
|
|
11
11
|
"display": "Actual text of the action here.",
|
|
12
12
|
"ip": "192.283.128.182",
|
|
13
13
|
"source": "/from_path",
|
|
14
|
-
"targets":
|
|
14
|
+
"targets": {
|
|
15
|
+
},
|
|
15
16
|
"user_id": 1,
|
|
16
17
|
"username": "user",
|
|
17
|
-
"user_is_from_parent_site":
|
|
18
|
+
"user_is_from_parent_site": false,
|
|
18
19
|
"action": "create",
|
|
19
20
|
"failure_type": "none",
|
|
20
21
|
"interface": "web"
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"workspace_id": 1,
|
|
9
9
|
"name": "Concise Assistant",
|
|
10
10
|
"system_prompt": "Respond as a concise operations assistant.",
|
|
11
|
-
"use_by_default":
|
|
12
|
-
"apply_to_all_workspaces":
|
|
11
|
+
"use_by_default": false,
|
|
12
|
+
"apply_to_all_workspaces": false,
|
|
13
13
|
"created_at": "2000-01-01T01:00:00Z",
|
|
14
14
|
"updated_at": "2000-01-01T01:00:00Z"
|
|
15
15
|
}
|
data/docs/api_request_log.md
CHANGED
data/docs/automation.md
CHANGED
|
@@ -11,7 +11,30 @@
|
|
|
11
11
|
"automation": "create_folder",
|
|
12
12
|
"deleted": true,
|
|
13
13
|
"description": "example",
|
|
14
|
-
"definition":
|
|
14
|
+
"definition": {
|
|
15
|
+
"schema_version": 1,
|
|
16
|
+
"nodes": [
|
|
17
|
+
{
|
|
18
|
+
"id": "trigger",
|
|
19
|
+
"type": "trigger_manual"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": "create_reports",
|
|
23
|
+
"type": "create_folder",
|
|
24
|
+
"config": {
|
|
25
|
+
"destinations": [
|
|
26
|
+
"reports/"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"edges": [
|
|
32
|
+
{
|
|
33
|
+
"from": "trigger",
|
|
34
|
+
"to": "create_reports"
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
15
38
|
"destination_replace_from": "example",
|
|
16
39
|
"destination_replace_to": "example",
|
|
17
40
|
"destinations": [
|
|
@@ -41,7 +64,7 @@
|
|
|
41
64
|
"ignore_locked_folders": true,
|
|
42
65
|
"interval": "week",
|
|
43
66
|
"last_modified_at": "2000-01-01T01:00:00Z",
|
|
44
|
-
"legacy_folder_matching":
|
|
67
|
+
"legacy_folder_matching": false,
|
|
45
68
|
"name": "example",
|
|
46
69
|
"overwrite_files": true,
|
|
47
70
|
"path": "example",
|
|
@@ -218,7 +241,7 @@ Files::Automation.create(
|
|
|
218
241
|
always_overwrite_size_matching_files: true,
|
|
219
242
|
always_serialize_jobs: true,
|
|
220
243
|
description: "example",
|
|
221
|
-
definition: "
|
|
244
|
+
definition: {"schema_version":1,"nodes":[{"id":"trigger","type":"trigger_manual"},{"id":"create_reports","type":"create_folder","config":{"destinations":["reports/"]}}],"edges":[{"from":"trigger","to":"create_reports"}]},
|
|
222
245
|
disabled: true,
|
|
223
246
|
exclude_pattern: "path/to/exclude/*",
|
|
224
247
|
import_urls: [{"name":"users.json","url":"http://example.com/users","method":"POST","headers":{"Content-Type":"application/json"},"content":{"group":"support"}}],
|
|
@@ -334,7 +357,7 @@ Files::Automation.update(id,
|
|
|
334
357
|
always_overwrite_size_matching_files: true,
|
|
335
358
|
always_serialize_jobs: true,
|
|
336
359
|
description: "example",
|
|
337
|
-
definition: "
|
|
360
|
+
definition: {"schema_version":1,"nodes":[{"id":"trigger","type":"trigger_manual"},{"id":"create_reports","type":"create_folder","config":{"destinations":["reports/"]}}],"edges":[{"from":"trigger","to":"create_reports"}]},
|
|
338
361
|
disabled: true,
|
|
339
362
|
exclude_pattern: "path/to/exclude/*",
|
|
340
363
|
import_urls: [{"name":"users.json","url":"http://example.com/users","method":"POST","headers":{"Content-Type":"application/json"},"content":{"group":"support"}}],
|
|
@@ -468,7 +491,7 @@ automation.update(
|
|
|
468
491
|
always_overwrite_size_matching_files: true,
|
|
469
492
|
always_serialize_jobs: true,
|
|
470
493
|
description: "example",
|
|
471
|
-
definition: "
|
|
494
|
+
definition: {"schema_version":1,"nodes":[{"id":"trigger","type":"trigger_manual"},{"id":"create_reports","type":"create_folder","config":{"destinations":["reports/"]}}],"edges":[{"from":"trigger","to":"create_reports"}]},
|
|
472
495
|
disabled: true,
|
|
473
496
|
exclude_pattern: "path/to/exclude/*",
|
|
474
497
|
import_urls: [{"name":"users.json","url":"http://example.com/users","method":"POST","headers":{"Content-Type":"application/json"},"content":{"group":"support"}}],
|
data/docs/bundle.md
CHANGED
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"url": "https://subdomain.files.com/f/12345678",
|
|
14
14
|
"description": "The public description of the bundle.",
|
|
15
15
|
"expires_at": "2000-01-01T01:00:00Z",
|
|
16
|
-
"password_protected":
|
|
16
|
+
"password_protected": false,
|
|
17
17
|
"permissions": "read",
|
|
18
|
-
"preview_only":
|
|
19
|
-
"require_registration":
|
|
20
|
-
"require_share_recipient":
|
|
18
|
+
"preview_only": false,
|
|
19
|
+
"require_registration": false,
|
|
20
|
+
"require_share_recipient": false,
|
|
21
21
|
"require_logout": true,
|
|
22
22
|
"clickwrap_body": "[Legal text]",
|
|
23
23
|
"form_field_set": {
|
data/docs/history.md
CHANGED
|
@@ -11,10 +11,11 @@
|
|
|
11
11
|
"display": "Actual text of the action here.",
|
|
12
12
|
"ip": "192.283.128.182",
|
|
13
13
|
"source": "/from_path",
|
|
14
|
-
"targets":
|
|
14
|
+
"targets": {
|
|
15
|
+
},
|
|
15
16
|
"user_id": 1,
|
|
16
17
|
"username": "user",
|
|
17
|
-
"user_is_from_parent_site":
|
|
18
|
+
"user_is_from_parent_site": false,
|
|
18
19
|
"action": "create",
|
|
19
20
|
"failure_type": "none",
|
|
20
21
|
"interface": "web"
|
data/docs/holiday_calendar.md
CHANGED
|
@@ -6,7 +6,47 @@
|
|
|
6
6
|
{
|
|
7
7
|
"id": 1,
|
|
8
8
|
"name": "Company Holidays",
|
|
9
|
-
"definition":
|
|
9
|
+
"definition": {
|
|
10
|
+
"months": {
|
|
11
|
+
"0": [
|
|
12
|
+
{
|
|
13
|
+
"name": "Good Friday",
|
|
14
|
+
"function": "easter(year)",
|
|
15
|
+
"function_modifier": -2
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"1": [
|
|
19
|
+
{
|
|
20
|
+
"name": "New Year's Day",
|
|
21
|
+
"mday": 1,
|
|
22
|
+
"observed": "to_weekday_if_weekend(date)"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "Third Monday",
|
|
26
|
+
"week": 3,
|
|
27
|
+
"wday": 1
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"11": [
|
|
31
|
+
{
|
|
32
|
+
"name": "Thanksgiving",
|
|
33
|
+
"week": 4,
|
|
34
|
+
"wday": 4
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"12": [
|
|
38
|
+
{
|
|
39
|
+
"name": "Christmas Eve Early Close",
|
|
40
|
+
"mday": 24,
|
|
41
|
+
"start_time": "13:00",
|
|
42
|
+
"end_time": "17:00",
|
|
43
|
+
"year_ranges": {
|
|
44
|
+
"from": 2026
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
},
|
|
10
50
|
"created_at": "2000-01-01T01:00:00Z",
|
|
11
51
|
"updated_at": "2000-01-01T01:00:00Z"
|
|
12
52
|
}
|
|
@@ -53,7 +93,7 @@ Files::HolidayCalendar.find(id)
|
|
|
53
93
|
|
|
54
94
|
```
|
|
55
95
|
Files::HolidayCalendar.create(
|
|
56
|
-
definition: "
|
|
96
|
+
definition: {"months":{"0":[{"name":"Good Friday","function":"easter(year)","function_modifier":-2}],"1":[{"name":"New Year's Day","mday":1,"observed":"to_weekday_if_weekend(date)"},{"name":"Third Monday","week":3,"wday":1}],"11":[{"name":"Thanksgiving","week":4,"wday":4}],"12":[{"name":"Christmas Eve Early Close","mday":24,"start_time":"13:00","end_time":"17:00","year_ranges":{"from":2026}}]}},
|
|
57
97
|
name: "Company Holidays"
|
|
58
98
|
)
|
|
59
99
|
```
|
|
@@ -70,7 +110,7 @@ Files::HolidayCalendar.create(
|
|
|
70
110
|
|
|
71
111
|
```
|
|
72
112
|
Files::HolidayCalendar.update(id,
|
|
73
|
-
definition: "
|
|
113
|
+
definition: {"months":{"0":[{"name":"Good Friday","function":"easter(year)","function_modifier":-2}],"1":[{"name":"New Year's Day","mday":1,"observed":"to_weekday_if_weekend(date)"},{"name":"Third Monday","week":3,"wday":1}],"11":[{"name":"Thanksgiving","week":4,"wday":4}],"12":[{"name":"Christmas Eve Early Close","mday":24,"start_time":"13:00","end_time":"17:00","year_ranges":{"from":2026}}]}},
|
|
74
114
|
name: "Company Holidays"
|
|
75
115
|
)
|
|
76
116
|
```
|
|
@@ -103,7 +143,7 @@ Files::HolidayCalendar.delete(id)
|
|
|
103
143
|
holiday_calendar = Files::HolidayCalendar.find(id)
|
|
104
144
|
|
|
105
145
|
holiday_calendar.update(
|
|
106
|
-
definition: "
|
|
146
|
+
definition: {"months":{"0":[{"name":"Good Friday","function":"easter(year)","function_modifier":-2}],"1":[{"name":"New Year's Day","mday":1,"observed":"to_weekday_if_weekend(date)"},{"name":"Third Monday","week":3,"wday":1}],"11":[{"name":"Thanksgiving","week":4,"wday":4}],"12":[{"name":"Christmas Eve Early Close","mday":24,"start_time":"13:00","end_time":"17:00","year_ranges":{"from":2026}}]}},
|
|
107
147
|
name: "Company Holidays"
|
|
108
148
|
)
|
|
109
149
|
```
|
data/docs/lock.md
CHANGED
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"recursive": true,
|
|
11
11
|
"owner": "user",
|
|
12
12
|
"scope": "shared",
|
|
13
|
-
"exclusive":
|
|
13
|
+
"exclusive": false,
|
|
14
14
|
"token": "17c54824e9931a4688ca032d03f6663c",
|
|
15
15
|
"type": "write",
|
|
16
|
-
"allow_access_by_any_user":
|
|
16
|
+
"allow_access_by_any_user": false,
|
|
17
17
|
"user_id": 1,
|
|
18
18
|
"username": ""
|
|
19
19
|
}
|
data/docs/partner.md
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
```
|
|
6
6
|
{
|
|
7
|
-
"allow_bypassing_2fa_policies":
|
|
7
|
+
"allow_bypassing_2fa_policies": false,
|
|
8
8
|
"allowed_ips": "10.0.0.0/8\n127.0.0.1",
|
|
9
|
-
"allow_credential_changes":
|
|
10
|
-
"allow_providing_gpg_keys":
|
|
11
|
-
"allow_user_creation":
|
|
12
|
-
"cc_emails_to_responsible_party":
|
|
9
|
+
"allow_credential_changes": false,
|
|
10
|
+
"allow_providing_gpg_keys": false,
|
|
11
|
+
"allow_user_creation": false,
|
|
12
|
+
"cc_emails_to_responsible_party": false,
|
|
13
13
|
"id": 1,
|
|
14
14
|
"ai_assistant_personality_id": 1,
|
|
15
15
|
"workspace_id": 1,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"responsible_group_id": 1,
|
|
26
26
|
"responsible_user_id": 1,
|
|
27
27
|
"root_folder": "/AcmeCorp",
|
|
28
|
-
"show_partner_channel_home_page":
|
|
28
|
+
"show_partner_channel_home_page": false,
|
|
29
29
|
"tags": "example",
|
|
30
30
|
"user_ids": [
|
|
31
31
|
1,
|
data/docs/remote_server.md
CHANGED
data/docs/session.md
CHANGED
data/docs/settings_change.md
CHANGED
data/docs/site.md
CHANGED
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"allowed_2fa_method_static": true,
|
|
26
26
|
"allowed_2fa_method_bypass_for_ftp_sftp_dav": true,
|
|
27
27
|
"admin_user_id": 1,
|
|
28
|
-
"admins_bypass_locked_subfolders":
|
|
28
|
+
"admins_bypass_locked_subfolders": false,
|
|
29
29
|
"allow_bundle_names": true,
|
|
30
30
|
"allow_user_level_2fa_override": true,
|
|
31
31
|
"allow_user_level_allowed_ip_override": true,
|
|
32
32
|
"allow_user_level_ssl_override": true,
|
|
33
33
|
"allowed_countries": "US,DE",
|
|
34
34
|
"allowed_ips": "example",
|
|
35
|
-
"always_mkdir_parents":
|
|
35
|
+
"always_mkdir_parents": false,
|
|
36
36
|
"as2_message_retention_days": 1,
|
|
37
37
|
"ask_about_overwrites": true,
|
|
38
38
|
"bundle_activity_notifications": "never",
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"currency": "USD",
|
|
74
74
|
"custom_namespace": true,
|
|
75
75
|
"dav_enabled": true,
|
|
76
|
-
"dav_user_root_enabled":
|
|
76
|
+
"dav_user_root_enabled": false,
|
|
77
77
|
"days_to_retain_backups": 30,
|
|
78
|
-
"document_edits_in_bundle_allowed":
|
|
78
|
+
"document_edits_in_bundle_allowed": false,
|
|
79
79
|
"default_time_zone": "Pacific Time (US & Canada)",
|
|
80
80
|
"desktop_app": true,
|
|
81
81
|
"desktop_app_session_ip_pinning": true,
|
|
@@ -177,15 +177,15 @@
|
|
|
177
177
|
"phone": "555-555-5555",
|
|
178
178
|
"pin_all_remote_servers_to_site_region": true,
|
|
179
179
|
"prevent_root_permissions_for_non_site_admins": true,
|
|
180
|
-
"protocol_access_groups_only":
|
|
180
|
+
"protocol_access_groups_only": false,
|
|
181
181
|
"require_2fa": true,
|
|
182
182
|
"restrict_root_folder_behaviors_to_site_admins": true,
|
|
183
183
|
"root_folder_behaviors_apply_to_workspaces": true,
|
|
184
184
|
"require_2fa_exempt_all_sso_users": true,
|
|
185
185
|
"require_2fa_stop_time": "2000-01-01T01:00:00Z",
|
|
186
|
-
"revoke_bundle_access_on_disable_or_delete":
|
|
186
|
+
"revoke_bundle_access_on_disable_or_delete": false,
|
|
187
187
|
"require_2fa_user_type": "`site_admins`",
|
|
188
|
-
"require_logout_from_bundles_and_inboxes":
|
|
188
|
+
"require_logout_from_bundles_and_inboxes": false,
|
|
189
189
|
"session": {
|
|
190
190
|
"id": "60525f92e859c4c3d74cb02fd176b1525901b525",
|
|
191
191
|
"language": "en",
|
|
@@ -225,9 +225,9 @@
|
|
|
225
225
|
"sftp_finalize_partial_uploads": true,
|
|
226
226
|
"sftp_host_key_type": "default",
|
|
227
227
|
"active_sftp_host_key_id": 1,
|
|
228
|
-
"sftp_insecure_ciphers":
|
|
229
|
-
"sftp_insecure_diffie_hellman":
|
|
230
|
-
"sftp_user_root_enabled":
|
|
228
|
+
"sftp_insecure_ciphers": false,
|
|
229
|
+
"sftp_insecure_diffie_hellman": false,
|
|
230
|
+
"sftp_user_root_enabled": false,
|
|
231
231
|
"sharing_enabled": true,
|
|
232
232
|
"show_user_notifications_log_in_link": true,
|
|
233
233
|
"show_request_access_link": true,
|
data/docs/sso_strategy.md
CHANGED
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"scim_oauth_access_token": "example",
|
|
23
23
|
"scim_oauth_access_token_expires_at": "example",
|
|
24
24
|
"subdomain": "",
|
|
25
|
-
"provision_users":
|
|
26
|
-
"provision_groups":
|
|
27
|
-
"deprovision_users":
|
|
28
|
-
"deprovision_groups":
|
|
25
|
+
"provision_users": false,
|
|
26
|
+
"provision_groups": false,
|
|
27
|
+
"deprovision_users": false,
|
|
28
|
+
"deprovision_groups": false,
|
|
29
29
|
"deprovision_behavior": "disable",
|
|
30
30
|
"provision_group_default": "Employees",
|
|
31
31
|
"provision_group_exclusion": "Employees",
|
data/docs/user.md
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"authentication_method": "password",
|
|
17
17
|
"avatar_url": "example",
|
|
18
18
|
"billable": true,
|
|
19
|
-
"billing_permission":
|
|
20
|
-
"bypass_site_allowed_ips":
|
|
21
|
-
"bypass_user_lifecycle_rules":
|
|
19
|
+
"billing_permission": false,
|
|
20
|
+
"bypass_site_allowed_ips": false,
|
|
21
|
+
"bypass_user_lifecycle_rules": false,
|
|
22
22
|
"created_at": "2000-01-01T01:00:00Z",
|
|
23
23
|
"dav_permission": true,
|
|
24
24
|
"disabled": true,
|
data/lib/files.com/version.rb
CHANGED