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 +4 -4
- data/README_API.md +6 -6
- data/lib/authentik/api/models/redirect_challenge.rb +15 -4
- data/lib/authentik/api/version.rb +1 -1
- data/spec/models/redirect_challenge_spec.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9e30334561ef3fd08c257d65f569b4cdf74cbfd388e263fa3042457a61e9a51
|
|
4
|
+
data.tar.gz: 43c83773c82488e727ef8c3a6d80d0e61cb6d6c3cba15bd54de011716c8cf322
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
10
|
-
- Package version: 2026.2.
|
|
11
|
-
- Generator version: 7.
|
|
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.
|
|
27
|
+
gem install ./authentik-api-2026.2.5.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./authentik-api-2026.2.
|
|
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.
|
|
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
|