files.com 1.1.336 → 1.1.337

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c936c175deeddfd4894e53c06f6b2880f0660310a070c94a189ba61a798f0e0
4
- data.tar.gz: f78326fad01e92d2b6a0c9cc00470ec1071271d517d8e5c614122cd528af5d93
3
+ metadata.gz: 97f3c198915b023f02b6becdaf9247b3916f42b04aeb3974c68efc9f1f03c991
4
+ data.tar.gz: e65f050e6a038677b2f85b9dee9a04a31de3a96650f6bca16a37a91eb71aa562
5
5
  SHA512:
6
- metadata.gz: 3772512a57234236522aabb195c712cb07c2ac2fffeeb1435eb99eb55a26f227cc8cc9ee469e515cceb1c9a68c724b3781b32e24cca39c531d810b1b2cb80751
7
- data.tar.gz: 7117d3f81962120039bec8631244a9630e668430151d665418866787b67f107890a631010d4f6a43bc9f72fa0f988dddc0ee113e3a80f6b1c777e76960d42ea7
6
+ metadata.gz: f67077a3ba08876857de4f51faa1980191c7d00d7c4948dfb4237a12a0b1cec3f4da48cc6798405936895e0f1f868fc1e81344ec48e13aff03febccfffe30205
7
+ data.tar.gz: 0e3aac515d2e9aa235dc683293caa9d607ef92ed0a1152659932fd66395c42fbc6d3742fc46accf0fb2c25fc9a1f5a2ff9b5a4251fc49010c72ff27aef5a6160
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.336
1
+ 1.1.337
data/docs/user.md CHANGED
@@ -228,6 +228,7 @@ Files::User.create(
228
228
  company: "ACME Corp.",
229
229
  notes: "Internal notes on this user.",
230
230
  office_integration_enabled: true,
231
+ partner_admin: true,
231
232
  partner_id: 1,
232
233
  password_validity_days: 1,
233
234
  readonly_site_admin: true,
@@ -282,6 +283,7 @@ Files::User.create(
282
283
  * `company` (string): User's company
283
284
  * `notes` (string): Any internal notes on the user
284
285
  * `office_integration_enabled` (boolean): Enable integration with Office for the web?
286
+ * `partner_admin` (boolean): Is this user a Partner administrator?
285
287
  * `partner_id` (int64): Partner ID if this user belongs to a Partner
286
288
  * `password_validity_days` (int64): Number of days to allow user to use the same password
287
289
  * `readonly_site_admin` (boolean): Is the user an allowed to view all (non-billing) site configuration for this site?
@@ -371,6 +373,7 @@ Files::User.update(id,
371
373
  company: "ACME Corp.",
372
374
  notes: "Internal notes on this user.",
373
375
  office_integration_enabled: true,
376
+ partner_admin: true,
374
377
  partner_id: 1,
375
378
  password_validity_days: 1,
376
379
  readonly_site_admin: true,
@@ -427,6 +430,7 @@ Files::User.update(id,
427
430
  * `company` (string): User's company
428
431
  * `notes` (string): Any internal notes on the user
429
432
  * `office_integration_enabled` (boolean): Enable integration with Office for the web?
433
+ * `partner_admin` (boolean): Is this user a Partner administrator?
430
434
  * `partner_id` (int64): Partner ID if this user belongs to a Partner
431
435
  * `password_validity_days` (int64): Number of days to allow user to use the same password
432
436
  * `readonly_site_admin` (boolean): Is the user an allowed to view all (non-billing) site configuration for this site?
@@ -541,6 +545,7 @@ user.update(
541
545
  company: "ACME Corp.",
542
546
  notes: "Internal notes on this user.",
543
547
  office_integration_enabled: true,
548
+ partner_admin: true,
544
549
  partner_id: 1,
545
550
  password_validity_days: 1,
546
551
  readonly_site_admin: true,
@@ -597,6 +602,7 @@ user.update(
597
602
  * `company` (string): User's company
598
603
  * `notes` (string): Any internal notes on the user
599
604
  * `office_integration_enabled` (boolean): Enable integration with Office for the web?
605
+ * `partner_admin` (boolean): Is this user a Partner administrator?
600
606
  * `partner_id` (int64): Partner ID if this user belongs to a Partner
601
607
  * `password_validity_days` (int64): Number of days to allow user to use the same password
602
608
  * `readonly_site_admin` (boolean): Is the user an allowed to view all (non-billing) site configuration for this site?
@@ -789,6 +789,7 @@ module Files
789
789
  # company - string - User's company
790
790
  # notes - string - Any internal notes on the user
791
791
  # office_integration_enabled - boolean - Enable integration with Office for the web?
792
+ # partner_admin - boolean - Is this user a Partner administrator?
792
793
  # partner_id - int64 - Partner ID if this user belongs to a Partner
793
794
  # password_validity_days - int64 - Number of days to allow user to use the same password
794
795
  # readonly_site_admin - boolean - Is the user an allowed to view all (non-billing) site configuration for this site?
@@ -959,6 +960,7 @@ module Files
959
960
  # company - string - User's company
960
961
  # notes - string - Any internal notes on the user
961
962
  # office_integration_enabled - boolean - Enable integration with Office for the web?
963
+ # partner_admin - boolean - Is this user a Partner administrator?
962
964
  # partner_id - int64 - Partner ID if this user belongs to a Partner
963
965
  # password_validity_days - int64 - Number of days to allow user to use the same password
964
966
  # readonly_site_admin - boolean - Is the user an allowed to view all (non-billing) site configuration for this site?
@@ -1078,6 +1080,7 @@ module Files
1078
1080
  # company - string - User's company
1079
1081
  # notes - string - Any internal notes on the user
1080
1082
  # office_integration_enabled - boolean - Enable integration with Office for the web?
1083
+ # partner_admin - boolean - Is this user a Partner administrator?
1081
1084
  # partner_id - int64 - Partner ID if this user belongs to a Partner
1082
1085
  # password_validity_days - int64 - Number of days to allow user to use the same password
1083
1086
  # readonly_site_admin - boolean - Is the user an allowed to view all (non-billing) site configuration for this site?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.336"
4
+ VERSION = "1.1.337"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.336
4
+ version: 1.1.337
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com