@goauthentik/api 2024.10.0-1730331602 → 2024.10.0-1730745228

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.
@@ -171,7 +171,7 @@ export interface KerberosSource {
171
171
  [key: string]: string;
172
172
  } | null;
173
173
  /**
174
- * Force the use of a specific server name for SPNEGO
174
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
175
175
  * @type {string}
176
176
  * @memberof KerberosSource
177
177
  */
@@ -133,7 +133,7 @@ export interface KerberosSourceRequest {
133
133
  */
134
134
  syncCcache?: string;
135
135
  /**
136
- * Force the use of a specific server name for SPNEGO
136
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
137
137
  * @type {string}
138
138
  * @memberof KerberosSourceRequest
139
139
  */
@@ -133,7 +133,7 @@ export interface PatchedKerberosSourceRequest {
133
133
  */
134
134
  syncCcache?: string;
135
135
  /**
136
- * Force the use of a specific server name for SPNEGO
136
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
137
137
  * @type {string}
138
138
  * @memberof PatchedKerberosSourceRequest
139
139
  */
@@ -33,12 +33,6 @@ export interface PatchedRACProviderRequest {
33
33
  * @memberof PatchedRACProviderRequest
34
34
  */
35
35
  authorizationFlow?: string;
36
- /**
37
- * Flow used ending the session from a provider.
38
- * @type {string}
39
- * @memberof PatchedRACProviderRequest
40
- */
41
- invalidationFlow?: string;
42
36
  /**
43
37
  *
44
38
  * @type {Array<string>}
@@ -30,7 +30,6 @@ export function PatchedRACProviderRequestFromJSONTyped(json, ignoreDiscriminator
30
30
  'name': !exists(json, 'name') ? undefined : json['name'],
31
31
  'authenticationFlow': !exists(json, 'authentication_flow') ? undefined : json['authentication_flow'],
32
32
  'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
33
- 'invalidationFlow': !exists(json, 'invalidation_flow') ? undefined : json['invalidation_flow'],
34
33
  'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
35
34
  'settings': !exists(json, 'settings') ? undefined : json['settings'],
36
35
  'connectionExpiry': !exists(json, 'connection_expiry') ? undefined : json['connection_expiry'],
@@ -48,7 +47,6 @@ export function PatchedRACProviderRequestToJSON(value) {
48
47
  'name': value.name,
49
48
  'authentication_flow': value.authenticationFlow,
50
49
  'authorization_flow': value.authorizationFlow,
51
- 'invalidation_flow': value.invalidationFlow,
52
50
  'property_mappings': value.propertyMappings,
53
51
  'settings': value.settings,
54
52
  'connection_expiry': value.connectionExpiry,
@@ -39,12 +39,6 @@ export interface RACProvider {
39
39
  * @memberof RACProvider
40
40
  */
41
41
  authorizationFlow: string;
42
- /**
43
- * Flow used ending the session from a provider.
44
- * @type {string}
45
- * @memberof RACProvider
46
- */
47
- invalidationFlow: string;
48
42
  /**
49
43
  *
50
44
  * @type {Array<string>}
@@ -20,7 +20,6 @@ export function instanceOfRACProvider(value) {
20
20
  isInstance = isInstance && "pk" in value;
21
21
  isInstance = isInstance && "name" in value;
22
22
  isInstance = isInstance && "authorizationFlow" in value;
23
- isInstance = isInstance && "invalidationFlow" in value;
24
23
  isInstance = isInstance && "component" in value;
25
24
  isInstance = isInstance && "assignedApplicationSlug" in value;
26
25
  isInstance = isInstance && "assignedApplicationName" in value;
@@ -44,7 +43,6 @@ export function RACProviderFromJSONTyped(json, ignoreDiscriminator) {
44
43
  'name': json['name'],
45
44
  'authenticationFlow': !exists(json, 'authentication_flow') ? undefined : json['authentication_flow'],
46
45
  'authorizationFlow': json['authorization_flow'],
47
- 'invalidationFlow': json['invalidation_flow'],
48
46
  'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
49
47
  'component': json['component'],
50
48
  'assignedApplicationSlug': json['assigned_application_slug'],
@@ -71,7 +69,6 @@ export function RACProviderToJSON(value) {
71
69
  'name': value.name,
72
70
  'authentication_flow': value.authenticationFlow,
73
71
  'authorization_flow': value.authorizationFlow,
74
- 'invalidation_flow': value.invalidationFlow,
75
72
  'property_mappings': value.propertyMappings,
76
73
  'settings': value.settings,
77
74
  'connection_expiry': value.connectionExpiry,
@@ -33,12 +33,6 @@ export interface RACProviderRequest {
33
33
  * @memberof RACProviderRequest
34
34
  */
35
35
  authorizationFlow: string;
36
- /**
37
- * Flow used ending the session from a provider.
38
- * @type {string}
39
- * @memberof RACProviderRequest
40
- */
41
- invalidationFlow: string;
42
36
  /**
43
37
  *
44
38
  * @type {Array<string>}
@@ -19,7 +19,6 @@ export function instanceOfRACProviderRequest(value) {
19
19
  let isInstance = true;
20
20
  isInstance = isInstance && "name" in value;
21
21
  isInstance = isInstance && "authorizationFlow" in value;
22
- isInstance = isInstance && "invalidationFlow" in value;
23
22
  return isInstance;
24
23
  }
25
24
  export function RACProviderRequestFromJSON(json) {
@@ -33,7 +32,6 @@ export function RACProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
33
32
  'name': json['name'],
34
33
  'authenticationFlow': !exists(json, 'authentication_flow') ? undefined : json['authentication_flow'],
35
34
  'authorizationFlow': json['authorization_flow'],
36
- 'invalidationFlow': json['invalidation_flow'],
37
35
  'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
38
36
  'settings': !exists(json, 'settings') ? undefined : json['settings'],
39
37
  'connectionExpiry': !exists(json, 'connection_expiry') ? undefined : json['connection_expiry'],
@@ -51,7 +49,6 @@ export function RACProviderRequestToJSON(value) {
51
49
  'name': value.name,
52
50
  'authentication_flow': value.authenticationFlow,
53
51
  'authorization_flow': value.authorizationFlow,
54
- 'invalidation_flow': value.invalidationFlow,
55
52
  'property_mappings': value.propertyMappings,
56
53
  'settings': value.settings,
57
54
  'connection_expiry': value.connectionExpiry,
@@ -171,7 +171,7 @@ export interface KerberosSource {
171
171
  [key: string]: string;
172
172
  } | null;
173
173
  /**
174
- * Force the use of a specific server name for SPNEGO
174
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
175
175
  * @type {string}
176
176
  * @memberof KerberosSource
177
177
  */
@@ -133,7 +133,7 @@ export interface KerberosSourceRequest {
133
133
  */
134
134
  syncCcache?: string;
135
135
  /**
136
- * Force the use of a specific server name for SPNEGO
136
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
137
137
  * @type {string}
138
138
  * @memberof KerberosSourceRequest
139
139
  */
@@ -133,7 +133,7 @@ export interface PatchedKerberosSourceRequest {
133
133
  */
134
134
  syncCcache?: string;
135
135
  /**
136
- * Force the use of a specific server name for SPNEGO
136
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
137
137
  * @type {string}
138
138
  * @memberof PatchedKerberosSourceRequest
139
139
  */
@@ -33,12 +33,6 @@ export interface PatchedRACProviderRequest {
33
33
  * @memberof PatchedRACProviderRequest
34
34
  */
35
35
  authorizationFlow?: string;
36
- /**
37
- * Flow used ending the session from a provider.
38
- * @type {string}
39
- * @memberof PatchedRACProviderRequest
40
- */
41
- invalidationFlow?: string;
42
36
  /**
43
37
  *
44
38
  * @type {Array<string>}
@@ -35,7 +35,6 @@ function PatchedRACProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
35
35
  'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
36
36
  'authenticationFlow': !(0, runtime_1.exists)(json, 'authentication_flow') ? undefined : json['authentication_flow'],
37
37
  'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
38
- 'invalidationFlow': !(0, runtime_1.exists)(json, 'invalidation_flow') ? undefined : json['invalidation_flow'],
39
38
  'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
40
39
  'settings': !(0, runtime_1.exists)(json, 'settings') ? undefined : json['settings'],
41
40
  'connectionExpiry': !(0, runtime_1.exists)(json, 'connection_expiry') ? undefined : json['connection_expiry'],
@@ -54,7 +53,6 @@ function PatchedRACProviderRequestToJSON(value) {
54
53
  'name': value.name,
55
54
  'authentication_flow': value.authenticationFlow,
56
55
  'authorization_flow': value.authorizationFlow,
57
- 'invalidation_flow': value.invalidationFlow,
58
56
  'property_mappings': value.propertyMappings,
59
57
  'settings': value.settings,
60
58
  'connection_expiry': value.connectionExpiry,
@@ -39,12 +39,6 @@ export interface RACProvider {
39
39
  * @memberof RACProvider
40
40
  */
41
41
  authorizationFlow: string;
42
- /**
43
- * Flow used ending the session from a provider.
44
- * @type {string}
45
- * @memberof RACProvider
46
- */
47
- invalidationFlow: string;
48
42
  /**
49
43
  *
50
44
  * @type {Array<string>}
@@ -23,7 +23,6 @@ function instanceOfRACProvider(value) {
23
23
  isInstance = isInstance && "pk" in value;
24
24
  isInstance = isInstance && "name" in value;
25
25
  isInstance = isInstance && "authorizationFlow" in value;
26
- isInstance = isInstance && "invalidationFlow" in value;
27
26
  isInstance = isInstance && "component" in value;
28
27
  isInstance = isInstance && "assignedApplicationSlug" in value;
29
28
  isInstance = isInstance && "assignedApplicationName" in value;
@@ -49,7 +48,6 @@ function RACProviderFromJSONTyped(json, ignoreDiscriminator) {
49
48
  'name': json['name'],
50
49
  'authenticationFlow': !(0, runtime_1.exists)(json, 'authentication_flow') ? undefined : json['authentication_flow'],
51
50
  'authorizationFlow': json['authorization_flow'],
52
- 'invalidationFlow': json['invalidation_flow'],
53
51
  'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
54
52
  'component': json['component'],
55
53
  'assignedApplicationSlug': json['assigned_application_slug'],
@@ -77,7 +75,6 @@ function RACProviderToJSON(value) {
77
75
  'name': value.name,
78
76
  'authentication_flow': value.authenticationFlow,
79
77
  'authorization_flow': value.authorizationFlow,
80
- 'invalidation_flow': value.invalidationFlow,
81
78
  'property_mappings': value.propertyMappings,
82
79
  'settings': value.settings,
83
80
  'connection_expiry': value.connectionExpiry,
@@ -33,12 +33,6 @@ export interface RACProviderRequest {
33
33
  * @memberof RACProviderRequest
34
34
  */
35
35
  authorizationFlow: string;
36
- /**
37
- * Flow used ending the session from a provider.
38
- * @type {string}
39
- * @memberof RACProviderRequest
40
- */
41
- invalidationFlow: string;
42
36
  /**
43
37
  *
44
38
  * @type {Array<string>}
@@ -22,7 +22,6 @@ function instanceOfRACProviderRequest(value) {
22
22
  let isInstance = true;
23
23
  isInstance = isInstance && "name" in value;
24
24
  isInstance = isInstance && "authorizationFlow" in value;
25
- isInstance = isInstance && "invalidationFlow" in value;
26
25
  return isInstance;
27
26
  }
28
27
  exports.instanceOfRACProviderRequest = instanceOfRACProviderRequest;
@@ -38,7 +37,6 @@ function RACProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
38
37
  'name': json['name'],
39
38
  'authenticationFlow': !(0, runtime_1.exists)(json, 'authentication_flow') ? undefined : json['authentication_flow'],
40
39
  'authorizationFlow': json['authorization_flow'],
41
- 'invalidationFlow': json['invalidation_flow'],
42
40
  'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
43
41
  'settings': !(0, runtime_1.exists)(json, 'settings') ? undefined : json['settings'],
44
42
  'connectionExpiry': !(0, runtime_1.exists)(json, 'connection_expiry') ? undefined : json['connection_expiry'],
@@ -57,7 +55,6 @@ function RACProviderRequestToJSON(value) {
57
55
  'name': value.name,
58
56
  'authentication_flow': value.authenticationFlow,
59
57
  'authorization_flow': value.authorizationFlow,
60
- 'invalidation_flow': value.invalidationFlow,
61
58
  'property_mappings': value.propertyMappings,
62
59
  'settings': value.settings,
63
60
  'connection_expiry': value.connectionExpiry,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.10.0-1730331602",
3
+ "version": "2024.10.0-1730745228",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -189,7 +189,7 @@ export interface KerberosSource {
189
189
  */
190
190
  readonly connectivity: { [key: string]: string; } | null;
191
191
  /**
192
- * Force the use of a specific server name for SPNEGO
192
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
193
193
  * @type {string}
194
194
  * @memberof KerberosSource
195
195
  */
@@ -153,7 +153,7 @@ export interface KerberosSourceRequest {
153
153
  */
154
154
  syncCcache?: string;
155
155
  /**
156
- * Force the use of a specific server name for SPNEGO
156
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
157
157
  * @type {string}
158
158
  * @memberof KerberosSourceRequest
159
159
  */
@@ -153,7 +153,7 @@ export interface PatchedKerberosSourceRequest {
153
153
  */
154
154
  syncCcache?: string;
155
155
  /**
156
- * Force the use of a specific server name for SPNEGO
156
+ * Force the use of a specific server name for SPNEGO. Must be in the form HTTP@hostname
157
157
  * @type {string}
158
158
  * @memberof PatchedKerberosSourceRequest
159
159
  */
@@ -37,12 +37,6 @@ export interface PatchedRACProviderRequest {
37
37
  * @memberof PatchedRACProviderRequest
38
38
  */
39
39
  authorizationFlow?: string;
40
- /**
41
- * Flow used ending the session from a provider.
42
- * @type {string}
43
- * @memberof PatchedRACProviderRequest
44
- */
45
- invalidationFlow?: string;
46
40
  /**
47
41
  *
48
42
  * @type {Array<string>}
@@ -91,7 +85,6 @@ export function PatchedRACProviderRequestFromJSONTyped(json: any, ignoreDiscrimi
91
85
  'name': !exists(json, 'name') ? undefined : json['name'],
92
86
  'authenticationFlow': !exists(json, 'authentication_flow') ? undefined : json['authentication_flow'],
93
87
  'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
94
- 'invalidationFlow': !exists(json, 'invalidation_flow') ? undefined : json['invalidation_flow'],
95
88
  'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
96
89
  'settings': !exists(json, 'settings') ? undefined : json['settings'],
97
90
  'connectionExpiry': !exists(json, 'connection_expiry') ? undefined : json['connection_expiry'],
@@ -111,7 +104,6 @@ export function PatchedRACProviderRequestToJSON(value?: PatchedRACProviderReques
111
104
  'name': value.name,
112
105
  'authentication_flow': value.authenticationFlow,
113
106
  'authorization_flow': value.authorizationFlow,
114
- 'invalidation_flow': value.invalidationFlow,
115
107
  'property_mappings': value.propertyMappings,
116
108
  'settings': value.settings,
117
109
  'connection_expiry': value.connectionExpiry,
@@ -43,12 +43,6 @@ export interface RACProvider {
43
43
  * @memberof RACProvider
44
44
  */
45
45
  authorizationFlow: string;
46
- /**
47
- * Flow used ending the session from a provider.
48
- * @type {string}
49
- * @memberof RACProvider
50
- */
51
- invalidationFlow: string;
52
46
  /**
53
47
  *
54
48
  * @type {Array<string>}
@@ -137,7 +131,6 @@ export function instanceOfRACProvider(value: object): boolean {
137
131
  isInstance = isInstance && "pk" in value;
138
132
  isInstance = isInstance && "name" in value;
139
133
  isInstance = isInstance && "authorizationFlow" in value;
140
- isInstance = isInstance && "invalidationFlow" in value;
141
134
  isInstance = isInstance && "component" in value;
142
135
  isInstance = isInstance && "assignedApplicationSlug" in value;
143
136
  isInstance = isInstance && "assignedApplicationName" in value;
@@ -165,7 +158,6 @@ export function RACProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean
165
158
  'name': json['name'],
166
159
  'authenticationFlow': !exists(json, 'authentication_flow') ? undefined : json['authentication_flow'],
167
160
  'authorizationFlow': json['authorization_flow'],
168
- 'invalidationFlow': json['invalidation_flow'],
169
161
  'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
170
162
  'component': json['component'],
171
163
  'assignedApplicationSlug': json['assigned_application_slug'],
@@ -194,7 +186,6 @@ export function RACProviderToJSON(value?: RACProvider | null): any {
194
186
  'name': value.name,
195
187
  'authentication_flow': value.authenticationFlow,
196
188
  'authorization_flow': value.authorizationFlow,
197
- 'invalidation_flow': value.invalidationFlow,
198
189
  'property_mappings': value.propertyMappings,
199
190
  'settings': value.settings,
200
191
  'connection_expiry': value.connectionExpiry,
@@ -37,12 +37,6 @@ export interface RACProviderRequest {
37
37
  * @memberof RACProviderRequest
38
38
  */
39
39
  authorizationFlow: string;
40
- /**
41
- * Flow used ending the session from a provider.
42
- * @type {string}
43
- * @memberof RACProviderRequest
44
- */
45
- invalidationFlow: string;
46
40
  /**
47
41
  *
48
42
  * @type {Array<string>}
@@ -76,7 +70,6 @@ export function instanceOfRACProviderRequest(value: object): boolean {
76
70
  let isInstance = true;
77
71
  isInstance = isInstance && "name" in value;
78
72
  isInstance = isInstance && "authorizationFlow" in value;
79
- isInstance = isInstance && "invalidationFlow" in value;
80
73
 
81
74
  return isInstance;
82
75
  }
@@ -94,7 +87,6 @@ export function RACProviderRequestFromJSONTyped(json: any, ignoreDiscriminator:
94
87
  'name': json['name'],
95
88
  'authenticationFlow': !exists(json, 'authentication_flow') ? undefined : json['authentication_flow'],
96
89
  'authorizationFlow': json['authorization_flow'],
97
- 'invalidationFlow': json['invalidation_flow'],
98
90
  'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
99
91
  'settings': !exists(json, 'settings') ? undefined : json['settings'],
100
92
  'connectionExpiry': !exists(json, 'connection_expiry') ? undefined : json['connection_expiry'],
@@ -114,7 +106,6 @@ export function RACProviderRequestToJSON(value?: RACProviderRequest | null): any
114
106
  'name': value.name,
115
107
  'authentication_flow': value.authenticationFlow,
116
108
  'authorization_flow': value.authorizationFlow,
117
- 'invalidation_flow': value.invalidationFlow,
118
109
  'property_mappings': value.propertyMappings,
119
110
  'settings': value.settings,
120
111
  'connection_expiry': value.connectionExpiry,