@goauthentik/api 2023.3.0-1678731074 → 2023.3.0-1678747008
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.
- package/dist/esm/models/LDAPProvider.d.ts +1 -1
- package/dist/esm/models/LDAPProvider.js +1 -1
- package/dist/esm/models/LDAPProviderRequest.d.ts +1 -1
- package/dist/esm/models/LDAPProviderRequest.js +1 -1
- package/dist/esm/models/OAuth2Provider.d.ts +1 -1
- package/dist/esm/models/OAuth2Provider.js +1 -1
- package/dist/esm/models/OAuth2ProviderRequest.d.ts +1 -1
- package/dist/esm/models/OAuth2ProviderRequest.js +1 -1
- package/dist/esm/models/PatchedLDAPProviderRequest.d.ts +1 -1
- package/dist/esm/models/PatchedOAuth2ProviderRequest.d.ts +1 -1
- package/dist/esm/models/PatchedProxyProviderRequest.d.ts +1 -1
- package/dist/esm/models/PatchedSAMLProviderRequest.d.ts +1 -1
- package/dist/esm/models/ProxyProvider.d.ts +1 -1
- package/dist/esm/models/ProxyProvider.js +1 -1
- package/dist/esm/models/ProxyProviderRequest.d.ts +1 -1
- package/dist/esm/models/ProxyProviderRequest.js +1 -1
- package/dist/esm/models/SAMLProvider.d.ts +1 -1
- package/dist/esm/models/SAMLProvider.js +1 -1
- package/dist/esm/models/SAMLProviderRequest.d.ts +1 -1
- package/dist/esm/models/SAMLProviderRequest.js +1 -1
- package/dist/models/LDAPProvider.d.ts +1 -1
- package/dist/models/LDAPProvider.js +1 -1
- package/dist/models/LDAPProviderRequest.d.ts +1 -1
- package/dist/models/LDAPProviderRequest.js +1 -1
- package/dist/models/OAuth2Provider.d.ts +1 -1
- package/dist/models/OAuth2Provider.js +1 -1
- package/dist/models/OAuth2ProviderRequest.d.ts +1 -1
- package/dist/models/OAuth2ProviderRequest.js +1 -1
- package/dist/models/PatchedLDAPProviderRequest.d.ts +1 -1
- package/dist/models/PatchedOAuth2ProviderRequest.d.ts +1 -1
- package/dist/models/PatchedProxyProviderRequest.d.ts +1 -1
- package/dist/models/PatchedSAMLProviderRequest.d.ts +1 -1
- package/dist/models/ProxyProvider.d.ts +1 -1
- package/dist/models/ProxyProvider.js +1 -1
- package/dist/models/ProxyProviderRequest.d.ts +1 -1
- package/dist/models/ProxyProviderRequest.js +1 -1
- package/dist/models/SAMLProvider.d.ts +1 -1
- package/dist/models/SAMLProvider.js +1 -1
- package/dist/models/SAMLProviderRequest.d.ts +1 -1
- package/dist/models/SAMLProviderRequest.js +1 -1
- package/package.json +1 -1
- package/src/models/LDAPProvider.ts +2 -2
- package/src/models/LDAPProviderRequest.ts +2 -2
- package/src/models/OAuth2Provider.ts +2 -2
- package/src/models/OAuth2ProviderRequest.ts +2 -2
- package/src/models/PatchedLDAPProviderRequest.ts +1 -1
- package/src/models/PatchedOAuth2ProviderRequest.ts +1 -1
- package/src/models/PatchedProxyProviderRequest.ts +1 -1
- package/src/models/PatchedSAMLProviderRequest.ts +1 -1
- package/src/models/ProxyProvider.ts +2 -2
- package/src/models/ProxyProviderRequest.ts +2 -2
- package/src/models/SAMLProvider.ts +2 -2
- package/src/models/SAMLProviderRequest.ts +2 -2
|
@@ -23,7 +23,7 @@ export function LDAPProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return {
|
|
24
24
|
'pk': json['pk'],
|
|
25
25
|
'name': json['name'],
|
|
26
|
-
'authorizationFlow':
|
|
26
|
+
'authorizationFlow': json['authorization_flow'],
|
|
27
27
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
28
28
|
'component': json['component'],
|
|
29
29
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -22,7 +22,7 @@ export function LDAPProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'name': json['name'],
|
|
25
|
-
'authorizationFlow':
|
|
25
|
+
'authorizationFlow': json['authorization_flow'],
|
|
26
26
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
27
27
|
'baseDn': !exists(json, 'base_dn') ? undefined : json['base_dn'],
|
|
28
28
|
'searchGroup': !exists(json, 'search_group') ? undefined : json['search_group'],
|
|
@@ -25,7 +25,7 @@ export function OAuth2ProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
25
|
return {
|
|
26
26
|
'pk': json['pk'],
|
|
27
27
|
'name': json['name'],
|
|
28
|
-
'authorizationFlow':
|
|
28
|
+
'authorizationFlow': json['authorization_flow'],
|
|
29
29
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
30
30
|
'component': json['component'],
|
|
31
31
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -24,7 +24,7 @@ export function OAuth2ProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
24
24
|
}
|
|
25
25
|
return {
|
|
26
26
|
'name': json['name'],
|
|
27
|
-
'authorizationFlow':
|
|
27
|
+
'authorizationFlow': json['authorization_flow'],
|
|
28
28
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
29
29
|
'clientType': !exists(json, 'client_type') ? undefined : ClientTypeEnumFromJSON(json['client_type']),
|
|
30
30
|
'clientId': !exists(json, 'client_id') ? undefined : json['client_id'],
|
|
@@ -23,7 +23,7 @@ export function ProxyProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return {
|
|
24
24
|
'pk': json['pk'],
|
|
25
25
|
'name': json['name'],
|
|
26
|
-
'authorizationFlow':
|
|
26
|
+
'authorizationFlow': json['authorization_flow'],
|
|
27
27
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
28
28
|
'component': json['component'],
|
|
29
29
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -22,7 +22,7 @@ export function ProxyProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'name': json['name'],
|
|
25
|
-
'authorizationFlow':
|
|
25
|
+
'authorizationFlow': json['authorization_flow'],
|
|
26
26
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
27
27
|
'internalHost': !exists(json, 'internal_host') ? undefined : json['internal_host'],
|
|
28
28
|
'externalHost': json['external_host'],
|
|
@@ -25,7 +25,7 @@ export function SAMLProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
25
|
return {
|
|
26
26
|
'pk': json['pk'],
|
|
27
27
|
'name': json['name'],
|
|
28
|
-
'authorizationFlow':
|
|
28
|
+
'authorizationFlow': json['authorization_flow'],
|
|
29
29
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
30
30
|
'component': json['component'],
|
|
31
31
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -24,7 +24,7 @@ export function SAMLProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
24
24
|
}
|
|
25
25
|
return {
|
|
26
26
|
'name': json['name'],
|
|
27
|
-
'authorizationFlow':
|
|
27
|
+
'authorizationFlow': json['authorization_flow'],
|
|
28
28
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
29
29
|
'acsUrl': json['acs_url'],
|
|
30
30
|
'audience': !exists(json, 'audience') ? undefined : json['audience'],
|
|
@@ -27,7 +27,7 @@ function LDAPProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
return {
|
|
28
28
|
'pk': json['pk'],
|
|
29
29
|
'name': json['name'],
|
|
30
|
-
'authorizationFlow':
|
|
30
|
+
'authorizationFlow': json['authorization_flow'],
|
|
31
31
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
32
32
|
'component': json['component'],
|
|
33
33
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -26,7 +26,7 @@ function LDAPProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
}
|
|
27
27
|
return {
|
|
28
28
|
'name': json['name'],
|
|
29
|
-
'authorizationFlow':
|
|
29
|
+
'authorizationFlow': json['authorization_flow'],
|
|
30
30
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
31
31
|
'baseDn': !(0, runtime_1.exists)(json, 'base_dn') ? undefined : json['base_dn'],
|
|
32
32
|
'searchGroup': !(0, runtime_1.exists)(json, 'search_group') ? undefined : json['search_group'],
|
|
@@ -29,7 +29,7 @@ function OAuth2ProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
return {
|
|
30
30
|
'pk': json['pk'],
|
|
31
31
|
'name': json['name'],
|
|
32
|
-
'authorizationFlow':
|
|
32
|
+
'authorizationFlow': json['authorization_flow'],
|
|
33
33
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
34
34
|
'component': json['component'],
|
|
35
35
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -28,7 +28,7 @@ function OAuth2ProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
28
|
}
|
|
29
29
|
return {
|
|
30
30
|
'name': json['name'],
|
|
31
|
-
'authorizationFlow':
|
|
31
|
+
'authorizationFlow': json['authorization_flow'],
|
|
32
32
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
33
33
|
'clientType': !(0, runtime_1.exists)(json, 'client_type') ? undefined : (0, ClientTypeEnum_1.ClientTypeEnumFromJSON)(json['client_type']),
|
|
34
34
|
'clientId': !(0, runtime_1.exists)(json, 'client_id') ? undefined : json['client_id'],
|
|
@@ -27,7 +27,7 @@ function ProxyProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
return {
|
|
28
28
|
'pk': json['pk'],
|
|
29
29
|
'name': json['name'],
|
|
30
|
-
'authorizationFlow':
|
|
30
|
+
'authorizationFlow': json['authorization_flow'],
|
|
31
31
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
32
32
|
'component': json['component'],
|
|
33
33
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -26,7 +26,7 @@ function ProxyProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
}
|
|
27
27
|
return {
|
|
28
28
|
'name': json['name'],
|
|
29
|
-
'authorizationFlow':
|
|
29
|
+
'authorizationFlow': json['authorization_flow'],
|
|
30
30
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
31
31
|
'internalHost': !(0, runtime_1.exists)(json, 'internal_host') ? undefined : json['internal_host'],
|
|
32
32
|
'externalHost': json['external_host'],
|
|
@@ -29,7 +29,7 @@ function SAMLProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
return {
|
|
30
30
|
'pk': json['pk'],
|
|
31
31
|
'name': json['name'],
|
|
32
|
-
'authorizationFlow':
|
|
32
|
+
'authorizationFlow': json['authorization_flow'],
|
|
33
33
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
34
34
|
'component': json['component'],
|
|
35
35
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -28,7 +28,7 @@ function SAMLProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
28
|
}
|
|
29
29
|
return {
|
|
30
30
|
'name': json['name'],
|
|
31
|
-
'authorizationFlow':
|
|
31
|
+
'authorizationFlow': json['authorization_flow'],
|
|
32
32
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
33
33
|
'acsUrl': json['acs_url'],
|
|
34
34
|
'audience': !(0, runtime_1.exists)(json, 'audience') ? undefined : json['audience'],
|
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@ export interface LDAPProvider {
|
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof LDAPProvider
|
|
45
45
|
*/
|
|
46
|
-
authorizationFlow
|
|
46
|
+
authorizationFlow: string;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {Array<string>}
|
|
@@ -154,7 +154,7 @@ export function LDAPProviderFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|
|
154
154
|
|
|
155
155
|
'pk': json['pk'],
|
|
156
156
|
'name': json['name'],
|
|
157
|
-
'authorizationFlow':
|
|
157
|
+
'authorizationFlow': json['authorization_flow'],
|
|
158
158
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
159
159
|
'component': json['component'],
|
|
160
160
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -37,7 +37,7 @@ export interface LDAPProviderRequest {
|
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof LDAPProviderRequest
|
|
39
39
|
*/
|
|
40
|
-
authorizationFlow
|
|
40
|
+
authorizationFlow: string;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {Array<string>}
|
|
@@ -105,7 +105,7 @@ export function LDAPProviderRequestFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
105
105
|
return {
|
|
106
106
|
|
|
107
107
|
'name': json['name'],
|
|
108
|
-
'authorizationFlow':
|
|
108
|
+
'authorizationFlow': json['authorization_flow'],
|
|
109
109
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
110
110
|
'baseDn': !exists(json, 'base_dn') ? undefined : json['base_dn'],
|
|
111
111
|
'searchGroup': !exists(json, 'search_group') ? undefined : json['search_group'],
|
|
@@ -55,7 +55,7 @@ export interface OAuth2Provider {
|
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof OAuth2Provider
|
|
57
57
|
*/
|
|
58
|
-
authorizationFlow
|
|
58
|
+
authorizationFlow: string;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
61
|
* @type {Array<string>}
|
|
@@ -196,7 +196,7 @@ export function OAuth2ProviderFromJSONTyped(json: any, ignoreDiscriminator: bool
|
|
|
196
196
|
|
|
197
197
|
'pk': json['pk'],
|
|
198
198
|
'name': json['name'],
|
|
199
|
-
'authorizationFlow':
|
|
199
|
+
'authorizationFlow': json['authorization_flow'],
|
|
200
200
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
201
201
|
'component': json['component'],
|
|
202
202
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -49,7 +49,7 @@ export interface OAuth2ProviderRequest {
|
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof OAuth2ProviderRequest
|
|
51
51
|
*/
|
|
52
|
-
authorizationFlow
|
|
52
|
+
authorizationFlow: string;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {Array<string>}
|
|
@@ -153,7 +153,7 @@ export function OAuth2ProviderRequestFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
153
153
|
return {
|
|
154
154
|
|
|
155
155
|
'name': json['name'],
|
|
156
|
-
'authorizationFlow':
|
|
156
|
+
'authorizationFlow': json['authorization_flow'],
|
|
157
157
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
158
158
|
'clientType': !exists(json, 'client_type') ? undefined : ClientTypeEnumFromJSON(json['client_type']),
|
|
159
159
|
'clientId': !exists(json, 'client_id') ? undefined : json['client_id'],
|
|
@@ -43,7 +43,7 @@ export interface ProxyProvider {
|
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof ProxyProvider
|
|
45
45
|
*/
|
|
46
|
-
authorizationFlow
|
|
46
|
+
authorizationFlow: string;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {Array<string>}
|
|
@@ -206,7 +206,7 @@ export function ProxyProviderFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
206
206
|
|
|
207
207
|
'pk': json['pk'],
|
|
208
208
|
'name': json['name'],
|
|
209
|
-
'authorizationFlow':
|
|
209
|
+
'authorizationFlow': json['authorization_flow'],
|
|
210
210
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
211
211
|
'component': json['component'],
|
|
212
212
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -37,7 +37,7 @@ export interface ProxyProviderRequest {
|
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof ProxyProviderRequest
|
|
39
39
|
*/
|
|
40
|
-
authorizationFlow
|
|
40
|
+
authorizationFlow: string;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {Array<string>}
|
|
@@ -145,7 +145,7 @@ export function ProxyProviderRequestFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
145
145
|
return {
|
|
146
146
|
|
|
147
147
|
'name': json['name'],
|
|
148
|
-
'authorizationFlow':
|
|
148
|
+
'authorizationFlow': json['authorization_flow'],
|
|
149
149
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
150
150
|
'internalHost': !exists(json, 'internal_host') ? undefined : json['internal_host'],
|
|
151
151
|
'externalHost': json['external_host'],
|
|
@@ -55,7 +55,7 @@ export interface SAMLProvider {
|
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof SAMLProvider
|
|
57
57
|
*/
|
|
58
|
-
authorizationFlow
|
|
58
|
+
authorizationFlow: string;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
61
|
* @type {Array<string>}
|
|
@@ -223,7 +223,7 @@ export function SAMLProviderFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|
|
223
223
|
|
|
224
224
|
'pk': json['pk'],
|
|
225
225
|
'name': json['name'],
|
|
226
|
-
'authorizationFlow':
|
|
226
|
+
'authorizationFlow': json['authorization_flow'],
|
|
227
227
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
228
228
|
'component': json['component'],
|
|
229
229
|
'assignedApplicationSlug': json['assigned_application_slug'],
|
|
@@ -49,7 +49,7 @@ export interface SAMLProviderRequest {
|
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof SAMLProviderRequest
|
|
51
51
|
*/
|
|
52
|
-
authorizationFlow
|
|
52
|
+
authorizationFlow: string;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {Array<string>}
|
|
@@ -144,7 +144,7 @@ export function SAMLProviderRequestFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
144
144
|
return {
|
|
145
145
|
|
|
146
146
|
'name': json['name'],
|
|
147
|
-
'authorizationFlow':
|
|
147
|
+
'authorizationFlow': json['authorization_flow'],
|
|
148
148
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
149
149
|
'acsUrl': json['acs_url'],
|
|
150
150
|
'audience': !exists(json, 'audience') ? undefined : json['audience'],
|