files.com 1.0.228 → 1.0.229

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.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.228
1
+ 1.0.229
@@ -6,12 +6,12 @@
6
6
  {
7
7
  "ip_address": "1.1.1.1",
8
8
  "server_name": "server-1",
9
- "ftp_enabled": "example",
10
- "sftp_enabled": "example"
9
+ "ftp_enabled": true,
10
+ "sftp_enabled": true
11
11
  }
12
12
  ```
13
13
 
14
14
  * `ip_address` (string): The public IP address.
15
15
  * `server_name` (string): The name of the frontend server.
16
- * `ftp_enabled` (string):
17
- * `sftp_enabled` (string):
16
+ * `ftp_enabled` (boolean):
17
+ * `sftp_enabled` (boolean):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.228",
3
+ "version": "1.0.229",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -29,10 +29,10 @@ class PublicIpAddress {
29
29
  // string # The name of the frontend server.
30
30
  getServerName = () => this.attributes.server_name
31
31
 
32
- // string
32
+ // boolean
33
33
  getFtpEnabled = () => this.attributes.ftp_enabled
34
34
 
35
- // string
35
+ // boolean
36
36
  getSftpEnabled = () => this.attributes.sftp_enabled
37
37
 
38
38
  }