files.com 1.1.344 → 1.1.346

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: a8455c4d3b0e422dbf83001c67743bafdce668f483f4898733282b76cdeef365
4
- data.tar.gz: 0e4e15bf5b3676892e9634daf5b2e400a4d4cb0790cde22fd29a284dc4222f01
3
+ metadata.gz: 94e069e6ebe8b5176ec1d1d582cadae4f52dc1351cd2c4d9d9aef44483f071fc
4
+ data.tar.gz: f4fcb1e1c836b79dd445e2daebbcd43d221b28d796d5a1f22597294fa20de05c
5
5
  SHA512:
6
- metadata.gz: 51bb5e31c7693dcd44daca482a846a525938051fe05ce42568558cb087dfe2acda00c126e38b815d04b077f10b72a8d9231b2628c557453bfde00dd1eedc5128
7
- data.tar.gz: e5845a376f3cba5ff50ec57dc1f9c14d0f0e0b152bedf5f7f885d5d6ff01966a59fe4c58b49bac32ce9f6b6607d3cdb55f7bac8571e30ff1c51137f0f732dbe2
6
+ metadata.gz: 31f557168c041fe81c0fdbe13423ef493402cee24cdd0d0cc3d9414ddd38155cf9f0725f7f0cf079d6bf992cc4fee3e8bf7d4e80aa6dd42665e0f0171915cf75
7
+ data.tar.gz: 8eb46e73c73f68ea485547e31e6a8c44c587527c88756a3c7880f5f207fcd04214aa3ae97d5db0d97f475ea75c062c29d6d0c8ed037cf8ddd117d75526d69252
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.344
1
+ 1.1.346
data/docs/partner.md CHANGED
@@ -11,8 +11,18 @@
11
11
  "id": 1,
12
12
  "name": "Acme Corp",
13
13
  "notes": "This is a note about the partner.",
14
+ "partner_admin_ids": [
15
+ 1,
16
+ 2,
17
+ 3
18
+ ],
14
19
  "root_folder": "/AcmeCorp",
15
- "tags": "example"
20
+ "tags": "example",
21
+ "user_ids": [
22
+ 1,
23
+ 2,
24
+ 3
25
+ ]
16
26
  }
17
27
  ```
18
28
 
@@ -23,8 +33,10 @@
23
33
  * `id` (int64): The unique ID of the Partner.
24
34
  * `name` (string): The name of the Partner.
25
35
  * `notes` (string): Notes about this Partner.
36
+ * `partner_admin_ids` (array(int64)): Array of User IDs that are Partner Admins for this Partner.
26
37
  * `root_folder` (string): The root folder path for this Partner.
27
38
  * `tags` (string): Comma-separated list of Tags for this Partner. Tags are used for other features, such as UserLifecycleRules, which can target specific tags. Tags must only contain lowercase letters, numbers, and hyphens.
39
+ * `user_ids` (array(int64)): Array of User IDs that belong to this Partner.
28
40
 
29
41
 
30
42
  ---
@@ -72,6 +72,15 @@ module Files
72
72
  @attributes[:notes] = value
73
73
  end
74
74
 
75
+ # array(int64) - Array of User IDs that are Partner Admins for this Partner.
76
+ def partner_admin_ids
77
+ @attributes[:partner_admin_ids]
78
+ end
79
+
80
+ def partner_admin_ids=(value)
81
+ @attributes[:partner_admin_ids] = value
82
+ end
83
+
75
84
  # string - The root folder path for this Partner.
76
85
  def root_folder
77
86
  @attributes[:root_folder]
@@ -90,6 +99,15 @@ module Files
90
99
  @attributes[:tags] = value
91
100
  end
92
101
 
102
+ # array(int64) - Array of User IDs that belong to this Partner.
103
+ def user_ids
104
+ @attributes[:user_ids]
105
+ end
106
+
107
+ def user_ids=(value)
108
+ @attributes[:user_ids] = value
109
+ end
110
+
93
111
  # Parameters:
94
112
  # name - string - The name of the Partner.
95
113
  # allow_bypassing_2fa_policies - boolean - Allow users created under this Partner to bypass Two-Factor Authentication policies.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.344"
4
+ VERSION = "1.1.346"
5
5
  end
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.344
4
+ version: 1.1.346
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-03 00:00:00.000000000 Z
11
+ date: 2025-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable