authentik-api 2026.2.4 → 2026.2.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: 9e4db128d905288163d3d8e49cbe515408449eb0d82ed4121b6b1f2378504396
4
- data.tar.gz: 29a2ae2b54871983b05244e5d0a32b5638a010781cf240ab4287c6d4935106b3
3
+ metadata.gz: a9e30334561ef3fd08c257d65f569b4cdf74cbfd388e263fa3042457a61e9a51
4
+ data.tar.gz: 43c83773c82488e727ef8c3a6d80d0e61cb6d6c3cba15bd54de011716c8cf322
5
5
  SHA512:
6
- metadata.gz: e743efd67795ff2d28a355b51889e63c79cabe6d3f8eead18d67828d7b59ae9c194e58aa97f4ddc250dc221d5dcf9281eaa2f0580206ff1c755befcbed7973a8
7
- data.tar.gz: f1ac026fd648edb283708ea21d4964dcf2ce90d8bd87f30831250be948d898d9d4657a7a3d1fade6954a24eb3a5ea8a58942441e40d0a0f6f758dec5444bdc8b
6
+ metadata.gz: 73a4ef441f070066988ee6b604c565221adbf3a911507f5d23477587efdbbf584c6a9643b241334ccc9e975341a16bbb5e5b00b8d27e9951067cba56f21c028c
7
+ data.tar.gz: a3d5013fe05b2ca1f63141b08821394bb47c8a188c3bfe8b413400863c054932667e97fc568e4acb76785ebfd8eb18b753e95122878fa3ada138f1d4115cf07a
data/README_API.md CHANGED
@@ -6,9 +6,9 @@ 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.4
10
- - Package version: 2026.2.4
11
- - Generator version: 7.23.0-SNAPSHOT
9
+ - API version: 2026.2.5
10
+ - Package version: 2026.2.5
11
+ - Generator version: 7.24.0-SNAPSHOT
12
12
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
13
13
 
14
14
  ## Installation
@@ -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.4.gem
27
+ gem install ./authentik-api-2026.2.5.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./authentik-api-2026.2.4.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./authentik-api-2026.2.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.2.4'
36
+ gem 'authentik-api', '~> 2026.2.5'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -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.2.4'
9
+ VERSION = '2026.2.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.2.4
4
+ version: 2026.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Uhlig