files.com 1.0.322 → 1.0.323

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 107fc72fca0d656c45f04b2b67b876f113ad1f8655550d9897b7b5ec61a28f19
4
- data.tar.gz: 1fe0b3bc642c4580c4b7f3c9e1f23a8a5f56c14a63317c786d536b03a4f3549c
3
+ metadata.gz: daf507a32a1d778729b2708695b23ccf9dd5ea2989d72a2aa6dcca1fb0c00dea
4
+ data.tar.gz: 0ea9a7d32bd2105861f884c8af8835f58b2dbfcea378bc40a85037156e1290de
5
5
  SHA512:
6
- metadata.gz: ed6a254ca2185b3e921f182ca4aefe10f4f19ead3852748bcb7050ad92aef37caddd43884848c44af5803a9db86ebd6401561a7b090738df91f023dd4513ce29
7
- data.tar.gz: bb5adb401323c6b682eda5902cbecbaa77a7765e525a3f1412d8d7dbdbe8df976e31b7b6b593c24b9fb0451ff841b8bb6daa6e2cc8da944837acfbedeba895d4
6
+ metadata.gz: c19e57157e7521a68ad12511a08e01e6a67c74856024835cc95b3818f3eedae649d00f4675838ed6e5275e2d7f680e44a5eee435f27d993e76c015f80a1d6d62
7
+ data.tar.gz: '08aef2249f839b79abee2639f3fc2660f71ccd41c654c07730144fbab8ab390399d95eae87dc74b84fd0996a8cd071ff37432f6bb69a462716d3e78e393eca0c'
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.322
1
+ 1.0.323
data/docs/site.md CHANGED
@@ -89,6 +89,7 @@
89
89
  "next_billing_amount": 1.0,
90
90
  "next_billing_date": "Apr 20",
91
91
  "office_integration_available": true,
92
+ "office_integration_type": "example",
92
93
  "oncehub_link": "https://go.oncehub.com/files",
93
94
  "opt_out_global": true,
94
95
  "overage_notified_at": "2000-01-01T01:00:00Z",
@@ -233,6 +234,7 @@
233
234
  * `next_billing_amount` (double): Next billing amount
234
235
  * `next_billing_date` (string): Next billing date
235
236
  * `office_integration_available` (boolean): Allow users to use Office for the web?
237
+ * `office_integration_type` (string): Office integration application used to edit and view the MS Office documents
236
238
  * `oncehub_link` (string): Link to scheduling a meeting with our Sales team
237
239
  * `opt_out_global` (boolean): Use servers in the USA only?
238
240
  * `overage_notified_at` (date-time): Last time the site was notified about an overage
@@ -345,6 +347,7 @@ Files::Site.update(
345
347
  folder_permissions_groups_only: true,
346
348
  welcome_screen: "user_controlled",
347
349
  office_integration_available: true,
350
+ office_integration_type: "example",
348
351
  pin_all_remote_servers_to_site_region: true,
349
352
  motd_text: "example",
350
353
  motd_use_for_ftp: true,
@@ -473,6 +476,7 @@ Files::Site.update(
473
476
  * `folder_permissions_groups_only` (boolean): If true, permissions for this site must be bound to a group (not a user). Otherwise, permissions must be bound to a user.
474
477
  * `welcome_screen` (string): Does the welcome screen appear?
475
478
  * `office_integration_available` (boolean): Allow users to use Office for the web?
479
+ * `office_integration_type` (string): Office integration application used to edit and view the MS Office documents
476
480
  * `pin_all_remote_servers_to_site_region` (boolean): If true, we will ensure that all internal communications with any remote server are made through the primary region of the site. This setting overrides individual remote server settings.
477
481
  * `motd_text` (string): A message to show users when they connect via FTP or SFTP.
478
482
  * `motd_use_for_ftp` (boolean): Show message to users connecting via FTP
@@ -424,6 +424,11 @@ module Files
424
424
  @attributes[:office_integration_available]
425
425
  end
426
426
 
427
+ # string - Office integration application used to edit and view the MS Office documents
428
+ def office_integration_type
429
+ @attributes[:office_integration_type]
430
+ end
431
+
427
432
  # string - Link to scheduling a meeting with our Sales team
428
433
  def oncehub_link
429
434
  @attributes[:oncehub_link]
@@ -753,6 +758,7 @@ module Files
753
758
  # folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user). Otherwise, permissions must be bound to a user.
754
759
  # welcome_screen - string - Does the welcome screen appear?
755
760
  # office_integration_available - boolean - Allow users to use Office for the web?
761
+ # office_integration_type - string - Office integration application used to edit and view the MS Office documents
756
762
  # pin_all_remote_servers_to_site_region - boolean - If true, we will ensure that all internal communications with any remote server are made through the primary region of the site. This setting overrides individual remote server settings.
757
763
  # motd_text - string - A message to show users when they connect via FTP or SFTP.
758
764
  # motd_use_for_ftp - boolean - Show message to users connecting via FTP
@@ -873,6 +879,7 @@ module Files
873
879
  raise InvalidParameterError.new("Bad parameter: desktop_app_session_lifetime must be an Integer") if params[:desktop_app_session_lifetime] and !params[:desktop_app_session_lifetime].is_a?(Integer)
874
880
  raise InvalidParameterError.new("Bad parameter: mobile_app_session_lifetime must be an Integer") if params[:mobile_app_session_lifetime] and !params[:mobile_app_session_lifetime].is_a?(Integer)
875
881
  raise InvalidParameterError.new("Bad parameter: welcome_screen must be an String") if params[:welcome_screen] and !params[:welcome_screen].is_a?(String)
882
+ raise InvalidParameterError.new("Bad parameter: office_integration_type must be an String") if params[:office_integration_type] and !params[:office_integration_type].is_a?(String)
876
883
  raise InvalidParameterError.new("Bad parameter: motd_text must be an String") if params[:motd_text] and !params[:motd_text].is_a?(String)
877
884
  raise InvalidParameterError.new("Bad parameter: session_expiry must be an Float") if params[:session_expiry] and !params[:session_expiry].is_a?(Float)
878
885
  raise InvalidParameterError.new("Bad parameter: user_lockout_tries must be an Integer") if params[:user_lockout_tries] and !params[:user_lockout_tries].is_a?(Integer)
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.0.322
4
+ version: 1.0.323
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-26 00:00:00.000000000 Z
11
+ date: 2023-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable