authentik-api 2026.2.1.1 → 2026.2.2.rc1

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: 1dc906ae7c91acc87b82ae67c4e91548ce7660fedc47aa4aa33873a445d8deb7
4
- data.tar.gz: 7f1e0d03464bba1e6066aa4a502eabd8bb5dbd2250ea005b4cf4f906ad30cec1
3
+ metadata.gz: e10f01b0610c1a29713c57ae6f0ec6527a376002cb66b13f59fff9c2310926dc
4
+ data.tar.gz: 651aa892a36986a89d32d576c9e7653059284d9a1b28640270cd08c26caaa6c4
5
5
  SHA512:
6
- metadata.gz: d29d6bc82fc2e01e52d5946ae3aeb8d9de5502e203b8b745b8f32b5bc4fef2cff205f64fb33d7932bceb25fbff906f24c298ba5d1a4928b4bb59a5c05274a4a8
7
- data.tar.gz: b202e3241f83bbfb2ac265ae8823f778fce67cc1f04d6dc45c633f04fd40e11c373da02ebfbadf9a3b2f08ce07fdc2fc2058917f26c433cf3b8236866a49ca2c
6
+ metadata.gz: 9b7f9cee019a26aa8bc3b115925fe243184de444c4556d49c01dd3e536cec10419342ffbc48401d549c168534690af56a04981c634d31a36427c3c51750999f4
7
+ data.tar.gz: e6b7f61ce5ab27b404b422cad118d91f67436c3eccdff23bad71094e8e3466baf005f58f2bdc250efe261f643996d4b5ec718dfbddaeddc5709a7d3272c3b3cc
data/README_API.md CHANGED
@@ -6,8 +6,8 @@ Making authentication simple.
6
6
 
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
- - API version: 2026.2.1
10
- - Package version: 2026.2.1
9
+ - API version: 2026.2.2-rc1
10
+ - Package version: 2026.2.2-rc1
11
11
  - Generator version: 7.22.0-SNAPSHOT
12
12
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
13
13
 
@@ -24,16 +24,16 @@ gem build authentik-api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./authentik-api-2026.2.1.gem
27
+ gem install ./authentik-api-2026.2.2-rc1.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./authentik-api-2026.2.1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./authentik-api-2026.2.2-rc1.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'authentik-api', '~> 2026.2.1'
36
+ gem 'authentik-api', '~> 2026.2.2-rc1'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -131,6 +131,7 @@ module Authentik::Api
131
131
  def self.openapi_nullable
132
132
  Set.new([
133
133
  :'provider',
134
+ :'provider_obj',
134
135
  :'launch_url',
135
136
  :'meta_icon_url',
136
137
  :'meta_icon_themed_urls',
@@ -264,10 +265,6 @@ module Authentik::Api
264
265
  invalid_properties.push("invalid value for \"slug\", must conform to the pattern #{pattern}.")
265
266
  end
266
267
 
267
- if @provider_obj.nil?
268
- invalid_properties.push('invalid value for "provider_obj", provider_obj cannot be nil.')
269
- end
270
-
271
268
  if @backchannel_providers_obj.nil?
272
269
  invalid_properties.push('invalid value for "backchannel_providers_obj", backchannel_providers_obj cannot be nil.')
273
270
  end
@@ -283,7 +280,6 @@ module Authentik::Api
283
280
  return false if @name.nil?
284
281
  return false if @slug.nil?
285
282
  return false if @slug !~ Regexp.new(/^[-a-zA-Z0-9_]+$/)
286
- return false if @provider_obj.nil?
287
283
  return false if @backchannel_providers_obj.nil?
288
284
  true
289
285
  end
@@ -323,16 +319,6 @@ module Authentik::Api
323
319
  @slug = slug
324
320
  end
325
321
 
326
- # Custom attribute writer method with validation
327
- # @param [Object] provider_obj Value to be assigned
328
- def provider_obj=(provider_obj)
329
- if provider_obj.nil?
330
- fail ArgumentError, 'provider_obj cannot be nil'
331
- end
332
-
333
- @provider_obj = provider_obj
334
- end
335
-
336
322
  # Custom attribute writer method with validation
337
323
  # @param [Object] backchannel_providers_obj Value to be assigned
338
324
  def backchannel_providers_obj=(backchannel_providers_obj)
@@ -13,6 +13,8 @@ module Authentik::Api
13
13
 
14
14
  attr_accessor :policies_buffered_access_view
15
15
 
16
+ attr_accessor :flows_continuous_login
17
+
16
18
  attr_accessor :flows_refresh_others
17
19
 
18
20
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -20,6 +22,7 @@ module Authentik::Api
20
22
  {
21
23
  :'enterprise_audit_include_expanded_diff' => :'enterprise_audit_include_expanded_diff',
22
24
  :'policies_buffered_access_view' => :'policies_buffered_access_view',
25
+ :'flows_continuous_login' => :'flows_continuous_login',
23
26
  :'flows_refresh_others' => :'flows_refresh_others'
24
27
  }
25
28
  end
@@ -39,6 +42,7 @@ module Authentik::Api
39
42
  {
40
43
  :'enterprise_audit_include_expanded_diff' => :'Boolean',
41
44
  :'policies_buffered_access_view' => :'Boolean',
45
+ :'flows_continuous_login' => :'Boolean',
42
46
  :'flows_refresh_others' => :'Boolean'
43
47
  }
44
48
  end
@@ -77,6 +81,12 @@ module Authentik::Api
77
81
  self.policies_buffered_access_view = nil
78
82
  end
79
83
 
84
+ if attributes.key?(:'flows_continuous_login')
85
+ self.flows_continuous_login = attributes[:'flows_continuous_login']
86
+ else
87
+ self.flows_continuous_login = nil
88
+ end
89
+
80
90
  if attributes.key?(:'flows_refresh_others')
81
91
  self.flows_refresh_others = attributes[:'flows_refresh_others']
82
92
  else
@@ -97,6 +107,10 @@ module Authentik::Api
97
107
  invalid_properties.push('invalid value for "policies_buffered_access_view", policies_buffered_access_view cannot be nil.')
98
108
  end
99
109
 
110
+ if @flows_continuous_login.nil?
111
+ invalid_properties.push('invalid value for "flows_continuous_login", flows_continuous_login cannot be nil.')
112
+ end
113
+
100
114
  if @flows_refresh_others.nil?
101
115
  invalid_properties.push('invalid value for "flows_refresh_others", flows_refresh_others cannot be nil.')
102
116
  end
@@ -110,6 +124,7 @@ module Authentik::Api
110
124
  warn '[DEPRECATED] the `valid?` method is obsolete'
111
125
  return false if @enterprise_audit_include_expanded_diff.nil?
112
126
  return false if @policies_buffered_access_view.nil?
127
+ return false if @flows_continuous_login.nil?
113
128
  return false if @flows_refresh_others.nil?
114
129
  true
115
130
  end
@@ -134,6 +149,16 @@ module Authentik::Api
134
149
  @policies_buffered_access_view = policies_buffered_access_view
135
150
  end
136
151
 
152
+ # Custom attribute writer method with validation
153
+ # @param [Object] flows_continuous_login Value to be assigned
154
+ def flows_continuous_login=(flows_continuous_login)
155
+ if flows_continuous_login.nil?
156
+ fail ArgumentError, 'flows_continuous_login cannot be nil'
157
+ end
158
+
159
+ @flows_continuous_login = flows_continuous_login
160
+ end
161
+
137
162
  # Custom attribute writer method with validation
138
163
  # @param [Object] flows_refresh_others Value to be assigned
139
164
  def flows_refresh_others=(flows_refresh_others)
@@ -151,6 +176,7 @@ module Authentik::Api
151
176
  self.class == o.class &&
152
177
  enterprise_audit_include_expanded_diff == o.enterprise_audit_include_expanded_diff &&
153
178
  policies_buffered_access_view == o.policies_buffered_access_view &&
179
+ flows_continuous_login == o.flows_continuous_login &&
154
180
  flows_refresh_others == o.flows_refresh_others
155
181
  end
156
182
 
@@ -163,7 +189,7 @@ module Authentik::Api
163
189
  # Calculates hash code according to all attributes.
164
190
  # @return [Integer] Hash code
165
191
  def hash
166
- [enterprise_audit_include_expanded_diff, policies_buffered_access_view, flows_refresh_others].hash
192
+ [enterprise_audit_include_expanded_diff, policies_buffered_access_view, flows_continuous_login, flows_refresh_others].hash
167
193
  end
168
194
 
169
195
  # Builds the object from hash
@@ -63,6 +63,7 @@ module Authentik::Api
63
63
  def self.openapi_nullable
64
64
  Set.new([
65
65
  :'device_group',
66
+ :'device_group_obj',
66
67
  :'expires'
67
68
  ])
68
69
  end
@@ -129,10 +130,6 @@ module Authentik::Api
129
130
  invalid_properties.push('invalid value for "token_uuid", token_uuid cannot be nil.')
130
131
  end
131
132
 
132
- if @device_group_obj.nil?
133
- invalid_properties.push('invalid value for "device_group_obj", device_group_obj cannot be nil.')
134
- end
135
-
136
133
  if @connector.nil?
137
134
  invalid_properties.push('invalid value for "connector", connector cannot be nil.')
138
135
  end
@@ -149,7 +146,6 @@ module Authentik::Api
149
146
  def valid?
150
147
  warn '[DEPRECATED] the `valid?` method is obsolete'
151
148
  return false if @token_uuid.nil?
152
- return false if @device_group_obj.nil?
153
149
  return false if @connector.nil?
154
150
  return false if @name.nil?
155
151
  true
@@ -165,16 +161,6 @@ module Authentik::Api
165
161
  @token_uuid = token_uuid
166
162
  end
167
163
 
168
- # Custom attribute writer method with validation
169
- # @param [Object] device_group_obj Value to be assigned
170
- def device_group_obj=(device_group_obj)
171
- if device_group_obj.nil?
172
- fail ArgumentError, 'device_group_obj cannot be nil'
173
- end
174
-
175
- @device_group_obj = device_group_obj
176
- end
177
-
178
164
  # Custom attribute writer method with validation
179
165
  # @param [Object] connector Value to be assigned
180
166
  def connector=(connector)
@@ -26,6 +26,8 @@ module Authentik::Api
26
26
 
27
27
  attr_accessor :application_pre
28
28
 
29
+ attr_accessor :application_pre_launch
30
+
29
31
  attr_accessor :flow_designation
30
32
 
31
33
  attr_accessor :captcha_stage
@@ -79,6 +81,7 @@ module Authentik::Api
79
81
  :'password_fields' => :'password_fields',
80
82
  :'allow_show_password' => :'allow_show_password',
81
83
  :'application_pre' => :'application_pre',
84
+ :'application_pre_launch' => :'application_pre_launch',
82
85
  :'flow_designation' => :'flow_designation',
83
86
  :'captcha_stage' => :'captcha_stage',
84
87
  :'enroll_url' => :'enroll_url',
@@ -113,6 +116,7 @@ module Authentik::Api
113
116
  :'password_fields' => :'Boolean',
114
117
  :'allow_show_password' => :'Boolean',
115
118
  :'application_pre' => :'String',
119
+ :'application_pre_launch' => :'String',
116
120
  :'flow_designation' => :'FlowDesignationEnum',
117
121
  :'captcha_stage' => :'CaptchaChallenge',
118
122
  :'enroll_url' => :'String',
@@ -196,6 +200,10 @@ module Authentik::Api
196
200
  self.application_pre = attributes[:'application_pre']
197
201
  end
198
202
 
203
+ if attributes.key?(:'application_pre_launch')
204
+ self.application_pre_launch = attributes[:'application_pre_launch']
205
+ end
206
+
199
207
  if attributes.key?(:'flow_designation')
200
208
  self.flow_designation = attributes[:'flow_designation']
201
209
  else
@@ -337,6 +345,7 @@ module Authentik::Api
337
345
  password_fields == o.password_fields &&
338
346
  allow_show_password == o.allow_show_password &&
339
347
  application_pre == o.application_pre &&
348
+ application_pre_launch == o.application_pre_launch &&
340
349
  flow_designation == o.flow_designation &&
341
350
  captcha_stage == o.captcha_stage &&
342
351
  enroll_url == o.enroll_url &&
@@ -358,7 +367,7 @@ module Authentik::Api
358
367
  # Calculates hash code according to all attributes.
359
368
  # @return [Integer] Hash code
360
369
  def hash
361
- [flow_info, component, response_errors, user_fields, pending_user_identifier, password_fields, allow_show_password, application_pre, flow_designation, captcha_stage, enroll_url, recovery_url, passwordless_url, primary_action, sources, show_source_labels, enable_remember_me, passkey_challenge].hash
370
+ [flow_info, component, response_errors, user_fields, pending_user_identifier, password_fields, allow_show_password, application_pre, application_pre_launch, flow_designation, captcha_stage, enroll_url, recovery_url, passwordless_url, primary_action, sources, show_source_labels, enable_remember_me, passkey_challenge].hash
362
371
  end
363
372
 
364
373
  # Builds the object from hash
@@ -13,6 +13,8 @@ module Authentik::Api
13
13
 
14
14
  attr_accessor :policies_buffered_access_view
15
15
 
16
+ attr_accessor :flows_continuous_login
17
+
16
18
  attr_accessor :flows_refresh_others
17
19
 
18
20
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -20,6 +22,7 @@ module Authentik::Api
20
22
  {
21
23
  :'enterprise_audit_include_expanded_diff' => :'enterprise_audit_include_expanded_diff',
22
24
  :'policies_buffered_access_view' => :'policies_buffered_access_view',
25
+ :'flows_continuous_login' => :'flows_continuous_login',
23
26
  :'flows_refresh_others' => :'flows_refresh_others'
24
27
  }
25
28
  end
@@ -39,6 +42,7 @@ module Authentik::Api
39
42
  {
40
43
  :'enterprise_audit_include_expanded_diff' => :'Boolean',
41
44
  :'policies_buffered_access_view' => :'Boolean',
45
+ :'flows_continuous_login' => :'Boolean',
42
46
  :'flows_refresh_others' => :'Boolean'
43
47
  }
44
48
  end
@@ -77,6 +81,12 @@ module Authentik::Api
77
81
  self.policies_buffered_access_view = nil
78
82
  end
79
83
 
84
+ if attributes.key?(:'flows_continuous_login')
85
+ self.flows_continuous_login = attributes[:'flows_continuous_login']
86
+ else
87
+ self.flows_continuous_login = nil
88
+ end
89
+
80
90
  if attributes.key?(:'flows_refresh_others')
81
91
  self.flows_refresh_others = attributes[:'flows_refresh_others']
82
92
  else
@@ -97,6 +107,10 @@ module Authentik::Api
97
107
  invalid_properties.push('invalid value for "policies_buffered_access_view", policies_buffered_access_view cannot be nil.')
98
108
  end
99
109
 
110
+ if @flows_continuous_login.nil?
111
+ invalid_properties.push('invalid value for "flows_continuous_login", flows_continuous_login cannot be nil.')
112
+ end
113
+
100
114
  if @flows_refresh_others.nil?
101
115
  invalid_properties.push('invalid value for "flows_refresh_others", flows_refresh_others cannot be nil.')
102
116
  end
@@ -110,6 +124,7 @@ module Authentik::Api
110
124
  warn '[DEPRECATED] the `valid?` method is obsolete'
111
125
  return false if @enterprise_audit_include_expanded_diff.nil?
112
126
  return false if @policies_buffered_access_view.nil?
127
+ return false if @flows_continuous_login.nil?
113
128
  return false if @flows_refresh_others.nil?
114
129
  true
115
130
  end
@@ -134,6 +149,16 @@ module Authentik::Api
134
149
  @policies_buffered_access_view = policies_buffered_access_view
135
150
  end
136
151
 
152
+ # Custom attribute writer method with validation
153
+ # @param [Object] flows_continuous_login Value to be assigned
154
+ def flows_continuous_login=(flows_continuous_login)
155
+ if flows_continuous_login.nil?
156
+ fail ArgumentError, 'flows_continuous_login cannot be nil'
157
+ end
158
+
159
+ @flows_continuous_login = flows_continuous_login
160
+ end
161
+
137
162
  # Custom attribute writer method with validation
138
163
  # @param [Object] flows_refresh_others Value to be assigned
139
164
  def flows_refresh_others=(flows_refresh_others)
@@ -151,6 +176,7 @@ module Authentik::Api
151
176
  self.class == o.class &&
152
177
  enterprise_audit_include_expanded_diff == o.enterprise_audit_include_expanded_diff &&
153
178
  policies_buffered_access_view == o.policies_buffered_access_view &&
179
+ flows_continuous_login == o.flows_continuous_login &&
154
180
  flows_refresh_others == o.flows_refresh_others
155
181
  end
156
182
 
@@ -163,7 +189,7 @@ module Authentik::Api
163
189
  # Calculates hash code according to all attributes.
164
190
  # @return [Integer] Hash code
165
191
  def hash
166
- [enterprise_audit_include_expanded_diff, policies_buffered_access_view, flows_refresh_others].hash
192
+ [enterprise_audit_include_expanded_diff, policies_buffered_access_view, flows_continuous_login, flows_refresh_others].hash
167
193
  end
168
194
 
169
195
  # Builds the object from hash
@@ -43,6 +43,7 @@ module Authentik::Api
43
43
  # List of attributes with nullable: true
44
44
  def self.openapi_nullable
45
45
  Set.new([
46
+ :'download_url'
46
47
  ])
47
48
  end
48
49
 
@@ -84,10 +85,6 @@ module Authentik::Api
84
85
  invalid_properties.push('invalid value for "metadata", metadata cannot be nil.')
85
86
  end
86
87
 
87
- if @download_url.nil?
88
- invalid_properties.push('invalid value for "download_url", download_url cannot be nil.')
89
- end
90
-
91
88
  invalid_properties
92
89
  end
93
90
 
@@ -96,7 +93,6 @@ module Authentik::Api
96
93
  def valid?
97
94
  warn '[DEPRECATED] the `valid?` method is obsolete'
98
95
  return false if @metadata.nil?
99
- return false if @download_url.nil?
100
96
  true
101
97
  end
102
98
 
@@ -110,16 +106,6 @@ module Authentik::Api
110
106
  @metadata = metadata
111
107
  end
112
108
 
113
- # Custom attribute writer method with validation
114
- # @param [Object] download_url Value to be assigned
115
- def download_url=(download_url)
116
- if download_url.nil?
117
- fail ArgumentError, 'download_url cannot be nil'
118
- end
119
-
120
- @download_url = download_url
121
- end
122
-
123
109
  # Checks equality by comparing each attribute.
124
110
  # @param [Object] Object to be compared
125
111
  def ==(o)
@@ -6,6 +6,6 @@ Any manual changes will be lost when the OpenAPI scheme changes.
6
6
 
7
7
  module Authentik
8
8
  module Api
9
- VERSION = '2026.2.1.1'
9
+ VERSION = '2026.2.2.rc1'
10
10
  end
11
11
  end
@@ -33,6 +33,12 @@ describe Authentik::Api::CurrentBrandFlags do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "flows_continuous_login"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
36
42
  describe 'test attribute "flows_refresh_others"' do
37
43
  it 'should work' do
38
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -69,6 +69,12 @@ describe Authentik::Api::IdentificationChallenge do
69
69
  end
70
70
  end
71
71
 
72
+ describe 'test attribute "application_pre_launch"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
72
78
  describe 'test attribute "flow_designation"' do
73
79
  it 'should work' do
74
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -33,6 +33,12 @@ describe Authentik::Api::PatchedSettingsRequestFlags do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "flows_continuous_login"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
36
42
  describe 'test attribute "flows_refresh_others"' do
37
43
  it 'should work' do
38
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authentik-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2026.2.1.1
4
+ version: 2026.2.2.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Uhlig