files.com 1.1.98 → 1.1.100
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/api_key.md +9 -9
- data/docs/api_request_log.md +1 -1
- data/docs/as2_incoming_message.md +1 -1
- data/docs/as2_outgoing_message.md +1 -1
- data/docs/as2_partner.md +7 -7
- data/docs/as2_station.md +7 -7
- data/docs/exavault_api_request_log.md +1 -1
- data/docs/ftp_action_log.md +1 -1
- data/docs/gpg_key.md +7 -7
- data/docs/settings_change.md +1 -1
- data/docs/sftp_action_log.md +1 -1
- data/docs/sftp_host_key.md +7 -7
- data/docs/site.md +4 -0
- data/docs/sso_strategy.md +2 -2
- data/docs/user.md +1 -1
- data/docs/web_dav_action_log.md +1 -1
- data/lib/files.com/models/api_key.rb +2 -2
- data/lib/files.com/models/settings_change.rb +1 -1
- data/lib/files.com/models/site.rb +6 -0
- data/lib/files.com/models/user.rb +1 -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: 65cd49d3f2cd4ffc3ced8ae8d0b433a7637f241c7d828a045b105bb4acbdf8f5
|
4
|
+
data.tar.gz: 8166b6cbcded16d687309cc4c2b6231f77c8880a748cef44c286543a497e94a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c97780e899aff6d83ac371fcac4984c9918dcca159c3ea415f131e6b9c2505855be9d3c85d49672ff34d8749b715fd3334c7de036d23305d23da3637828dcd59
|
7
|
+
data.tar.gz: 55ae843492ee69badbdae587db58e554920a97771e67fbd1a7ccf3134de0f6f3070d6e30eeef253b11a74f58ca0e45d8d4dafa6729a1de1214052cd41d1c37f9
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.100
|
data/docs/api_key.md
CHANGED
@@ -31,12 +31,12 @@
|
|
31
31
|
* `platform` (string): If this API key represents a Desktop app, what platform was it created on?
|
32
32
|
* `url` (string): URL for API host.
|
33
33
|
* `user_id` (int64): User ID for the owner of this API Key. May be blank for Site-wide API Keys.
|
34
|
-
* `path` (string): Folder path restriction for this
|
34
|
+
* `path` (string): Folder path restriction for this API key.
|
35
35
|
|
36
36
|
|
37
37
|
---
|
38
38
|
|
39
|
-
## List
|
39
|
+
## List API Keys
|
40
40
|
|
41
41
|
```
|
42
42
|
Files::ApiKey.list(
|
@@ -72,7 +72,7 @@ Files::ApiKey.find_current
|
|
72
72
|
|
73
73
|
---
|
74
74
|
|
75
|
-
## Show
|
75
|
+
## Show API Key
|
76
76
|
|
77
77
|
```
|
78
78
|
Files::ApiKey.find(id)
|
@@ -85,7 +85,7 @@ Files::ApiKey.find(id)
|
|
85
85
|
|
86
86
|
---
|
87
87
|
|
88
|
-
## Create
|
88
|
+
## Create API Key
|
89
89
|
|
90
90
|
```
|
91
91
|
Files::ApiKey.create(
|
@@ -105,7 +105,7 @@ Files::ApiKey.create(
|
|
105
105
|
* `expires_at` (string): API Key expiration date
|
106
106
|
* `permission_set` (string): Permissions for this API Key. It must be full for site-wide API Keys. Keys with the `desktop_app` permission set only have the ability to do the functions provided in our Desktop App (File and Share Link operations). Additional permission sets may become available in the future, such as for a Site Admin to give a key with no administrator privileges. If you have ideas for permission sets, please let us know.
|
107
107
|
* `name` (string): Required - Internal name for the API Key. For your use.
|
108
|
-
* `path` (string): Folder path restriction for this
|
108
|
+
* `path` (string): Folder path restriction for this API key.
|
109
109
|
|
110
110
|
|
111
111
|
---
|
@@ -129,7 +129,7 @@ Files::ApiKey.update_current(
|
|
129
129
|
|
130
130
|
---
|
131
131
|
|
132
|
-
## Update
|
132
|
+
## Update API Key
|
133
133
|
|
134
134
|
```
|
135
135
|
Files::ApiKey.update(id,
|
@@ -160,7 +160,7 @@ Files::ApiKey.delete_current
|
|
160
160
|
|
161
161
|
---
|
162
162
|
|
163
|
-
## Delete
|
163
|
+
## Delete API Key
|
164
164
|
|
165
165
|
```
|
166
166
|
Files::ApiKey.delete(id)
|
@@ -173,7 +173,7 @@ Files::ApiKey.delete(id)
|
|
173
173
|
|
174
174
|
---
|
175
175
|
|
176
|
-
## Update
|
176
|
+
## Update API Key
|
177
177
|
|
178
178
|
```
|
179
179
|
api_key = Files::ApiKey.find(id)
|
@@ -197,7 +197,7 @@ api_key.update(
|
|
197
197
|
|
198
198
|
---
|
199
199
|
|
200
|
-
## Delete
|
200
|
+
## Delete API Key
|
201
201
|
|
202
202
|
```
|
203
203
|
api_key = Files::ApiKey.find(id)
|
data/docs/api_request_log.md
CHANGED
data/docs/as2_partner.md
CHANGED
@@ -43,7 +43,7 @@
|
|
43
43
|
|
44
44
|
---
|
45
45
|
|
46
|
-
## List
|
46
|
+
## List AS2 Partners
|
47
47
|
|
48
48
|
```
|
49
49
|
Files::As2Partner.list(
|
@@ -62,7 +62,7 @@ Files::As2Partner.list(
|
|
62
62
|
|
63
63
|
---
|
64
64
|
|
65
|
-
## Show
|
65
|
+
## Show AS2 Partner
|
66
66
|
|
67
67
|
```
|
68
68
|
Files::As2Partner.find(id)
|
@@ -75,7 +75,7 @@ Files::As2Partner.find(id)
|
|
75
75
|
|
76
76
|
---
|
77
77
|
|
78
|
-
## Create
|
78
|
+
## Create AS2 Partner
|
79
79
|
|
80
80
|
```
|
81
81
|
Files::As2Partner.create(
|
@@ -105,7 +105,7 @@ Files::As2Partner.create(
|
|
105
105
|
|
106
106
|
---
|
107
107
|
|
108
|
-
## Update
|
108
|
+
## Update AS2 Partner
|
109
109
|
|
110
110
|
```
|
111
111
|
Files::As2Partner.update(id,
|
@@ -133,7 +133,7 @@ Files::As2Partner.update(id,
|
|
133
133
|
|
134
134
|
---
|
135
135
|
|
136
|
-
## Delete
|
136
|
+
## Delete AS2 Partner
|
137
137
|
|
138
138
|
```
|
139
139
|
Files::As2Partner.delete(id)
|
@@ -146,7 +146,7 @@ Files::As2Partner.delete(id)
|
|
146
146
|
|
147
147
|
---
|
148
148
|
|
149
|
-
## Update
|
149
|
+
## Update AS2 Partner
|
150
150
|
|
151
151
|
```
|
152
152
|
as2_partner = Files::As2Partner.find(id)
|
@@ -176,7 +176,7 @@ as2_partner.update(
|
|
176
176
|
|
177
177
|
---
|
178
178
|
|
179
|
-
## Delete
|
179
|
+
## Delete AS2 Partner
|
180
180
|
|
181
181
|
```
|
182
182
|
as2_partner = Files::As2Partner.find(id)
|
data/docs/as2_station.md
CHANGED
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
---
|
42
42
|
|
43
|
-
## List
|
43
|
+
## List AS2 Stations
|
44
44
|
|
45
45
|
```
|
46
46
|
Files::As2Station.list(
|
@@ -59,7 +59,7 @@ Files::As2Station.list(
|
|
59
59
|
|
60
60
|
---
|
61
61
|
|
62
|
-
## Show
|
62
|
+
## Show AS2 Station
|
63
63
|
|
64
64
|
```
|
65
65
|
Files::As2Station.find(id)
|
@@ -72,7 +72,7 @@ Files::As2Station.find(id)
|
|
72
72
|
|
73
73
|
---
|
74
74
|
|
75
|
-
## Create
|
75
|
+
## Create AS2 Station
|
76
76
|
|
77
77
|
```
|
78
78
|
Files::As2Station.create(
|
@@ -92,7 +92,7 @@ Files::As2Station.create(
|
|
92
92
|
|
93
93
|
---
|
94
94
|
|
95
|
-
## Update
|
95
|
+
## Update AS2 Station
|
96
96
|
|
97
97
|
```
|
98
98
|
Files::As2Station.update(id,
|
@@ -111,7 +111,7 @@ Files::As2Station.update(id,
|
|
111
111
|
|
112
112
|
---
|
113
113
|
|
114
|
-
## Delete
|
114
|
+
## Delete AS2 Station
|
115
115
|
|
116
116
|
```
|
117
117
|
Files::As2Station.delete(id)
|
@@ -124,7 +124,7 @@ Files::As2Station.delete(id)
|
|
124
124
|
|
125
125
|
---
|
126
126
|
|
127
|
-
## Update
|
127
|
+
## Update AS2 Station
|
128
128
|
|
129
129
|
```
|
130
130
|
as2_station = Files::As2Station.find(id)
|
@@ -145,7 +145,7 @@ as2_station.update(
|
|
145
145
|
|
146
146
|
---
|
147
147
|
|
148
|
-
## Delete
|
148
|
+
## Delete AS2 Station
|
149
149
|
|
150
150
|
```
|
151
151
|
as2_station = Files::As2Station.find(id)
|
data/docs/ftp_action_log.md
CHANGED
data/docs/gpg_key.md
CHANGED
@@ -25,7 +25,7 @@
|
|
25
25
|
|
26
26
|
---
|
27
27
|
|
28
|
-
## List
|
28
|
+
## List GPG Keys
|
29
29
|
|
30
30
|
```
|
31
31
|
Files::GpgKey.list(
|
@@ -47,7 +47,7 @@ Files::GpgKey.list(
|
|
47
47
|
|
48
48
|
---
|
49
49
|
|
50
|
-
## Show
|
50
|
+
## Show GPG Key
|
51
51
|
|
52
52
|
```
|
53
53
|
Files::GpgKey.find(id)
|
@@ -60,7 +60,7 @@ Files::GpgKey.find(id)
|
|
60
60
|
|
61
61
|
---
|
62
62
|
|
63
|
-
## Create
|
63
|
+
## Create GPG Key
|
64
64
|
|
65
65
|
```
|
66
66
|
Files::GpgKey.create(
|
@@ -83,7 +83,7 @@ Files::GpgKey.create(
|
|
83
83
|
|
84
84
|
---
|
85
85
|
|
86
|
-
## Update
|
86
|
+
## Update GPG Key
|
87
87
|
|
88
88
|
```
|
89
89
|
Files::GpgKey.update(id,
|
@@ -105,7 +105,7 @@ Files::GpgKey.update(id,
|
|
105
105
|
|
106
106
|
---
|
107
107
|
|
108
|
-
## Delete
|
108
|
+
## Delete GPG Key
|
109
109
|
|
110
110
|
```
|
111
111
|
Files::GpgKey.delete(id)
|
@@ -118,7 +118,7 @@ Files::GpgKey.delete(id)
|
|
118
118
|
|
119
119
|
---
|
120
120
|
|
121
|
-
## Update
|
121
|
+
## Update GPG Key
|
122
122
|
|
123
123
|
```
|
124
124
|
gpg_key = Files::GpgKey.find(id)
|
@@ -142,7 +142,7 @@ gpg_key.update(
|
|
142
142
|
|
143
143
|
---
|
144
144
|
|
145
|
-
## Delete
|
145
|
+
## Delete GPG Key
|
146
146
|
|
147
147
|
```
|
148
148
|
gpg_key = Files::GpgKey.find(id)
|
data/docs/settings_change.md
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
* `changes` (array(string)): Markdown-formatted change messages.
|
19
19
|
* `created_at` (date-time): The time this change was made
|
20
20
|
* `user_id` (int64): The user id responsible for this change
|
21
|
-
* `api_key_id` (int64): The
|
21
|
+
* `api_key_id` (int64): The API key id responsible for this change
|
22
22
|
* `user_is_files_support` (boolean): true if this change was performed by Files.com support.
|
23
23
|
* `username` (string): The username of the user responsible for this change
|
24
24
|
|
data/docs/sftp_action_log.md
CHANGED
data/docs/sftp_host_key.md
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
---
|
22
22
|
|
23
|
-
## List
|
23
|
+
## List SFTP Host Keys
|
24
24
|
|
25
25
|
```
|
26
26
|
Files::SftpHostKey.list(
|
@@ -39,7 +39,7 @@ Files::SftpHostKey.list(
|
|
39
39
|
|
40
40
|
---
|
41
41
|
|
42
|
-
## Show
|
42
|
+
## Show SFTP Host Key
|
43
43
|
|
44
44
|
```
|
45
45
|
Files::SftpHostKey.find(id)
|
@@ -52,7 +52,7 @@ Files::SftpHostKey.find(id)
|
|
52
52
|
|
53
53
|
---
|
54
54
|
|
55
|
-
## Create
|
55
|
+
## Create SFTP Host Key
|
56
56
|
|
57
57
|
```
|
58
58
|
Files::SftpHostKey.create(
|
@@ -68,7 +68,7 @@ Files::SftpHostKey.create(
|
|
68
68
|
|
69
69
|
---
|
70
70
|
|
71
|
-
## Update
|
71
|
+
## Update SFTP Host Key
|
72
72
|
|
73
73
|
```
|
74
74
|
Files::SftpHostKey.update(id,
|
@@ -85,7 +85,7 @@ Files::SftpHostKey.update(id,
|
|
85
85
|
|
86
86
|
---
|
87
87
|
|
88
|
-
## Delete
|
88
|
+
## Delete SFTP Host Key
|
89
89
|
|
90
90
|
```
|
91
91
|
Files::SftpHostKey.delete(id)
|
@@ -98,7 +98,7 @@ Files::SftpHostKey.delete(id)
|
|
98
98
|
|
99
99
|
---
|
100
100
|
|
101
|
-
## Update
|
101
|
+
## Update SFTP Host Key
|
102
102
|
|
103
103
|
```
|
104
104
|
sftp_host_key = Files::SftpHostKey.find(id)
|
@@ -117,7 +117,7 @@ sftp_host_key.update(
|
|
117
117
|
|
118
118
|
---
|
119
119
|
|
120
|
-
## Delete
|
120
|
+
## Delete SFTP Host Key
|
121
121
|
|
122
122
|
```
|
123
123
|
sftp_host_key = Files::SftpHostKey.find(id)
|
data/docs/site.md
CHANGED
@@ -34,6 +34,7 @@
|
|
34
34
|
"bundle_registration_notifications": "never",
|
35
35
|
"bundle_require_registration": true,
|
36
36
|
"bundle_require_share_recipient": true,
|
37
|
+
"bundle_require_note": true,
|
37
38
|
"bundle_upload_receipt_notifications": "never",
|
38
39
|
"bundle_watermark_attachment": {
|
39
40
|
"name": "My logo",
|
@@ -308,6 +309,7 @@
|
|
308
309
|
* `bundle_registration_notifications` (string): Do Bundle owners receive registration notification?
|
309
310
|
* `bundle_require_registration` (boolean): Do Bundles require registration?
|
310
311
|
* `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
|
312
|
+
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
311
313
|
* `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
|
312
314
|
* `bundle_watermark_attachment` (Image): Preview watermark image applied to all bundle items.
|
313
315
|
* `bundle_watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
@@ -502,6 +504,7 @@ Files::Site.update(
|
|
502
504
|
motd_use_for_ftp: true,
|
503
505
|
motd_use_for_sftp: true,
|
504
506
|
additional_text_file_types: ["example"],
|
507
|
+
bundle_require_note: true,
|
505
508
|
session_expiry: 1.0,
|
506
509
|
ssl_required: true,
|
507
510
|
tls_disabled: true,
|
@@ -652,6 +655,7 @@ Files::Site.update(
|
|
652
655
|
* `motd_use_for_sftp` (boolean): Show message to users connecting via SFTP
|
653
656
|
* `left_navigation_visibility` (object): Visibility settings for account navigation
|
654
657
|
* `additional_text_file_types` (array(string)): Additional extensions that are considered text files
|
658
|
+
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
655
659
|
* `session_expiry` (double): Session expiry in hours
|
656
660
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
657
661
|
* `tls_disabled` (boolean): DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
data/docs/sso_strategy.md
CHANGED
@@ -103,7 +103,7 @@
|
|
103
103
|
|
104
104
|
---
|
105
105
|
|
106
|
-
## List
|
106
|
+
## List SSO Strategies
|
107
107
|
|
108
108
|
```
|
109
109
|
Files::SsoStrategy.list(
|
@@ -122,7 +122,7 @@ Files::SsoStrategy.list(
|
|
122
122
|
|
123
123
|
---
|
124
124
|
|
125
|
-
## Show
|
125
|
+
## Show SSO Strategy
|
126
126
|
|
127
127
|
```
|
128
128
|
Files::SsoStrategy.find(id)
|
data/docs/user.md
CHANGED
@@ -76,7 +76,7 @@
|
|
76
76
|
* `admin_group_ids` (array(int64)): List of group IDs of which this user is an administrator
|
77
77
|
* `allowed_ips` (string): A list of allowed IPs if applicable. Newline delimited
|
78
78
|
* `attachments_permission` (boolean): If `true`, the user can user create Bundles (aka Share Links). Use the bundle permission instead.
|
79
|
-
* `api_keys_count` (int64): Number of
|
79
|
+
* `api_keys_count` (int64): Number of API keys associated with this user
|
80
80
|
* `authenticate_until` (date-time): Scheduled Date/Time at which user will be deactivated
|
81
81
|
* `authentication_method` (string): How is this user authenticated?
|
82
82
|
* `avatar_url` (string): URL holding the user's avatar
|
data/docs/web_dav_action_log.md
CHANGED
@@ -113,7 +113,7 @@ module Files
|
|
113
113
|
@attributes[:user_id] = value
|
114
114
|
end
|
115
115
|
|
116
|
-
# string - Folder path restriction for this
|
116
|
+
# string - Folder path restriction for this API key.
|
117
117
|
def path
|
118
118
|
@attributes[:path]
|
119
119
|
end
|
@@ -228,7 +228,7 @@ module Files
|
|
228
228
|
# expires_at - string - API Key expiration date
|
229
229
|
# permission_set - string - Permissions for this API Key. It must be full for site-wide API Keys. Keys with the `desktop_app` permission set only have the ability to do the functions provided in our Desktop App (File and Share Link operations). Additional permission sets may become available in the future, such as for a Site Admin to give a key with no administrator privileges. If you have ideas for permission sets, please let us know.
|
230
230
|
# name (required) - string - Internal name for the API Key. For your use.
|
231
|
-
# path - string - Folder path restriction for this
|
231
|
+
# path - string - Folder path restriction for this API key.
|
232
232
|
def self.create(params = {}, options = {})
|
233
233
|
raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
|
234
234
|
raise InvalidParameterError.new("Bad parameter: description must be an String") if params[:description] and !params[:description].is_a?(String)
|
@@ -139,6 +139,11 @@ module Files
|
|
139
139
|
@attributes[:bundle_require_share_recipient]
|
140
140
|
end
|
141
141
|
|
142
|
+
# boolean - Do Bundles require internal notes?
|
143
|
+
def bundle_require_note
|
144
|
+
@attributes[:bundle_require_note]
|
145
|
+
end
|
146
|
+
|
142
147
|
# string - Do Bundle uploaders receive upload confirmation notifications?
|
143
148
|
def bundle_upload_receipt_notifications
|
144
149
|
@attributes[:bundle_upload_receipt_notifications]
|
@@ -855,6 +860,7 @@ module Files
|
|
855
860
|
# motd_use_for_sftp - boolean - Show message to users connecting via SFTP
|
856
861
|
# left_navigation_visibility - object - Visibility settings for account navigation
|
857
862
|
# additional_text_file_types - array(string) - Additional extensions that are considered text files
|
863
|
+
# bundle_require_note - boolean - Do Bundles require internal notes?
|
858
864
|
# session_expiry - double - Session expiry in hours
|
859
865
|
# ssl_required - boolean - Is SSL required? Disabling this is insecure.
|
860
866
|
# tls_disabled - boolean - DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
|
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.100
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|