authentik-api 2026.5.4 → 2026.5.5

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: 6743addf3f7ca8663b9c3e435a4651b6dd6767b30661e2c7e61f90acabb8ad46
4
- data.tar.gz: f2bb441c42f93f544f09f1d41c05abe20aabb1461ad2ce320e22d4642efa538c
3
+ metadata.gz: b178888531a8a4340a67efa423b1d0dc32c1154d0bd3568293c4d99b30bd00e0
4
+ data.tar.gz: a9ea915bce3485186e3e6df691e6f32de492a3f29d68edaa616b82a15484670e
5
5
  SHA512:
6
- metadata.gz: c5103e9759ef1b88f71deb0707ea9878daaa2eccdcf289a8513c258b344f063aee7a13836f15979ef8c088b0dea4718cd52820ecd30657212c82b51980c93e1c
7
- data.tar.gz: 37448379f279bed956a8c62784f95de8345571fe02766554a076c56c8e4f9970f297132cbb841bcd52f3e0a81631c2a9d23d8ad121a908ecc71a28db2dfd625b
6
+ metadata.gz: 2fa0a14435efaf3ff073af1cf941dcf7dac6470080171db25f10d2036e004f53862cdfefe6603a05b87da7d46488a8178f0e648da152161af65aef9e74877881
7
+ data.tar.gz: fd9348b3a46deeb844201cd531bb5c44b1d8e052fac6e573138b62f1662992c3526a9e88a63fa4499764218deae74495bbdce29999320b5b63532ec1961871fe
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.5.4
10
- - Package version: 2026.5.4
9
+ - API version: 2026.5.5
10
+ - Package version: 2026.5.5
11
11
  - Generator version: 7.24.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.5.4.gem
27
+ gem install ./authentik-api-2026.5.5.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./authentik-api-2026.5.4.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./authentik-api-2026.5.5.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.5.4'
36
+ gem 'authentik-api', '~> 2026.5.5'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -9,8 +9,8 @@ require 'time'
9
9
 
10
10
  module Authentik::Api
11
11
  class ProviderTypeEnum
12
- APPLE = "apple".freeze
13
12
  OPENIDCONNECT = "openidconnect".freeze
13
+ APPLE = "apple".freeze
14
14
  ENTRAID = "entraid".freeze
15
15
  AZUREAD = "azuread".freeze
16
16
  DISCORD = "discord".freeze
@@ -28,7 +28,7 @@ module Authentik::Api
28
28
  WECHAT = "wechat".freeze
29
29
 
30
30
  def self.all_vars
31
- @all_vars ||= [APPLE, OPENIDCONNECT, ENTRAID, AZUREAD, DISCORD, FACEBOOK, GITHUB, GITLAB, GOOGLE, MAILCOW, OKTA, PATREON, REDDIT, SLACK, TWITCH, TWITTER, WECHAT].freeze
31
+ @all_vars ||= [OPENIDCONNECT, APPLE, ENTRAID, AZUREAD, DISCORD, FACEBOOK, GITHUB, GITLAB, GOOGLE, MAILCOW, OKTA, PATREON, REDDIT, SLACK, TWITCH, TWITTER, WECHAT].freeze
32
32
  end
33
33
 
34
34
  # Builds the enum from string
@@ -18,13 +18,16 @@ module Authentik::Api
18
18
 
19
19
  attr_accessor :to
20
20
 
21
+ attr_accessor :final_redirect
22
+
21
23
  # Attribute mapping from ruby-style variable name to JSON key.
22
24
  def self.attribute_map
23
25
  {
24
26
  :'flow_info' => :'flow_info',
25
27
  :'component' => :'component',
26
28
  :'response_errors' => :'response_errors',
27
- :'to' => :'to'
29
+ :'to' => :'to',
30
+ :'final_redirect' => :'final_redirect'
28
31
  }
29
32
  end
30
33
 
@@ -44,7 +47,8 @@ module Authentik::Api
44
47
  :'flow_info' => :'ContextualFlowInfo',
45
48
  :'component' => :'String',
46
49
  :'response_errors' => :'Hash<String, Array<ErrorDetail>>',
47
- :'to' => :'String'
50
+ :'to' => :'String',
51
+ :'final_redirect' => :'Boolean'
48
52
  }
49
53
  end
50
54
 
@@ -91,6 +95,12 @@ module Authentik::Api
91
95
  else
92
96
  self.to = nil
93
97
  end
98
+
99
+ if attributes.key?(:'final_redirect')
100
+ self.final_redirect = attributes[:'final_redirect']
101
+ else
102
+ self.final_redirect = false
103
+ end
94
104
  end
95
105
 
96
106
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -131,7 +141,8 @@ module Authentik::Api
131
141
  flow_info == o.flow_info &&
132
142
  component == o.component &&
133
143
  response_errors == o.response_errors &&
134
- to == o.to
144
+ to == o.to &&
145
+ final_redirect == o.final_redirect
135
146
  end
136
147
 
137
148
  # @see the `==` method
@@ -143,7 +154,7 @@ module Authentik::Api
143
154
  # Calculates hash code according to all attributes.
144
155
  # @return [Integer] Hash code
145
156
  def hash
146
- [flow_info, component, response_errors, to].hash
157
+ [flow_info, component, response_errors, to, final_redirect].hash
147
158
  end
148
159
 
149
160
  # Builds the object from hash
@@ -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.5.4'
9
+ VERSION = '2026.5.5'
10
10
  end
11
11
  end
@@ -45,4 +45,10 @@ describe Authentik::Api::RedirectChallenge do
45
45
  end
46
46
  end
47
47
 
48
+ describe 'test attribute "final_redirect"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
48
54
  end
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.5.4
4
+ version: 2026.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Uhlig