authentik-api 2026.8.0 → 2026.8.1
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/provider.rb +2 -34
- data/lib/authentik/api/version.rb +1 -1
- 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: 8eb9446ad0683fb1f9ed1127cd597047d290f225d77e0664627e1ba948e8ea6b
|
|
4
|
+
data.tar.gz: a2da054ca097f93280f66e2a48d13beaec15bd2ca4cc54f56b89bd61b46c77b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 037bdf553f4af95f631e1c84d99950b78f8195ca44115174f48528df5d3507e4b06cc51c710a67b8cd129901da7cae4e39cba94cf8c65cae2fba84b46eea0383
|
|
7
|
+
data.tar.gz: b1b874970d96a317cd74f114aa31cebb262867f6ec9bbe2a59782e52886e6d3ffe3527e958cab2f46881179198b50e0ffdea2501fecdc65f7494f9b6904b8320
|
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.8.
|
|
10
|
-
- Package version: 2026.8.
|
|
11
|
-
- Generator version: 7.
|
|
9
|
+
- API version: 2026.8.1
|
|
10
|
+
- Package version: 2026.8.1
|
|
11
|
+
- Generator version: 7.26.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.8.
|
|
27
|
+
gem install ./authentik-api-2026.8.1.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./authentik-api-2026.8.
|
|
30
|
+
(for development, run `gem install --dev ./authentik-api-2026.8.1.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.8.
|
|
36
|
+
gem 'authentik-api', '~> 2026.8.1'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -103,6 +103,8 @@ module Authentik::Api
|
|
|
103
103
|
def self.openapi_nullable
|
|
104
104
|
Set.new([
|
|
105
105
|
:'authentication_flow',
|
|
106
|
+
:'authorization_flow',
|
|
107
|
+
:'invalidation_flow',
|
|
106
108
|
:'assigned_application_slug',
|
|
107
109
|
:'assigned_application_name',
|
|
108
110
|
:'assigned_backchannel_application_slug',
|
|
@@ -144,14 +146,10 @@ module Authentik::Api
|
|
|
144
146
|
|
|
145
147
|
if attributes.key?(:'authorization_flow')
|
|
146
148
|
self.authorization_flow = attributes[:'authorization_flow']
|
|
147
|
-
else
|
|
148
|
-
self.authorization_flow = nil
|
|
149
149
|
end
|
|
150
150
|
|
|
151
151
|
if attributes.key?(:'invalidation_flow')
|
|
152
152
|
self.invalidation_flow = attributes[:'invalidation_flow']
|
|
153
|
-
else
|
|
154
|
-
self.invalidation_flow = nil
|
|
155
153
|
end
|
|
156
154
|
|
|
157
155
|
if attributes.key?(:'property_mappings')
|
|
@@ -222,14 +220,6 @@ module Authentik::Api
|
|
|
222
220
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
223
221
|
end
|
|
224
222
|
|
|
225
|
-
if @authorization_flow.nil?
|
|
226
|
-
invalid_properties.push('invalid value for "authorization_flow", authorization_flow cannot be nil.')
|
|
227
|
-
end
|
|
228
|
-
|
|
229
|
-
if @invalidation_flow.nil?
|
|
230
|
-
invalid_properties.push('invalid value for "invalidation_flow", invalidation_flow cannot be nil.')
|
|
231
|
-
end
|
|
232
|
-
|
|
233
223
|
if @component.nil?
|
|
234
224
|
invalid_properties.push('invalid value for "component", component cannot be nil.')
|
|
235
225
|
end
|
|
@@ -255,8 +245,6 @@ module Authentik::Api
|
|
|
255
245
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
256
246
|
return false if @pk.nil?
|
|
257
247
|
return false if @name.nil?
|
|
258
|
-
return false if @authorization_flow.nil?
|
|
259
|
-
return false if @invalidation_flow.nil?
|
|
260
248
|
return false if @component.nil?
|
|
261
249
|
return false if @verbose_name.nil?
|
|
262
250
|
return false if @verbose_name_plural.nil?
|
|
@@ -284,26 +272,6 @@ module Authentik::Api
|
|
|
284
272
|
@name = name
|
|
285
273
|
end
|
|
286
274
|
|
|
287
|
-
# Custom attribute writer method with validation
|
|
288
|
-
# @param [Object] authorization_flow Value to be assigned
|
|
289
|
-
def authorization_flow=(authorization_flow)
|
|
290
|
-
if authorization_flow.nil?
|
|
291
|
-
fail ArgumentError, 'authorization_flow cannot be nil'
|
|
292
|
-
end
|
|
293
|
-
|
|
294
|
-
@authorization_flow = authorization_flow
|
|
295
|
-
end
|
|
296
|
-
|
|
297
|
-
# Custom attribute writer method with validation
|
|
298
|
-
# @param [Object] invalidation_flow Value to be assigned
|
|
299
|
-
def invalidation_flow=(invalidation_flow)
|
|
300
|
-
if invalidation_flow.nil?
|
|
301
|
-
fail ArgumentError, 'invalidation_flow cannot be nil'
|
|
302
|
-
end
|
|
303
|
-
|
|
304
|
-
@invalidation_flow = invalidation_flow
|
|
305
|
-
end
|
|
306
|
-
|
|
307
275
|
# Custom attribute writer method with validation
|
|
308
276
|
# @param [Object] component Value to be assigned
|
|
309
277
|
def component=(component)
|