@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.
Files changed (53) hide show
  1. package/dist/esm/models/LDAPProvider.d.ts +1 -1
  2. package/dist/esm/models/LDAPProvider.js +1 -1
  3. package/dist/esm/models/LDAPProviderRequest.d.ts +1 -1
  4. package/dist/esm/models/LDAPProviderRequest.js +1 -1
  5. package/dist/esm/models/OAuth2Provider.d.ts +1 -1
  6. package/dist/esm/models/OAuth2Provider.js +1 -1
  7. package/dist/esm/models/OAuth2ProviderRequest.d.ts +1 -1
  8. package/dist/esm/models/OAuth2ProviderRequest.js +1 -1
  9. package/dist/esm/models/PatchedLDAPProviderRequest.d.ts +1 -1
  10. package/dist/esm/models/PatchedOAuth2ProviderRequest.d.ts +1 -1
  11. package/dist/esm/models/PatchedProxyProviderRequest.d.ts +1 -1
  12. package/dist/esm/models/PatchedSAMLProviderRequest.d.ts +1 -1
  13. package/dist/esm/models/ProxyProvider.d.ts +1 -1
  14. package/dist/esm/models/ProxyProvider.js +1 -1
  15. package/dist/esm/models/ProxyProviderRequest.d.ts +1 -1
  16. package/dist/esm/models/ProxyProviderRequest.js +1 -1
  17. package/dist/esm/models/SAMLProvider.d.ts +1 -1
  18. package/dist/esm/models/SAMLProvider.js +1 -1
  19. package/dist/esm/models/SAMLProviderRequest.d.ts +1 -1
  20. package/dist/esm/models/SAMLProviderRequest.js +1 -1
  21. package/dist/models/LDAPProvider.d.ts +1 -1
  22. package/dist/models/LDAPProvider.js +1 -1
  23. package/dist/models/LDAPProviderRequest.d.ts +1 -1
  24. package/dist/models/LDAPProviderRequest.js +1 -1
  25. package/dist/models/OAuth2Provider.d.ts +1 -1
  26. package/dist/models/OAuth2Provider.js +1 -1
  27. package/dist/models/OAuth2ProviderRequest.d.ts +1 -1
  28. package/dist/models/OAuth2ProviderRequest.js +1 -1
  29. package/dist/models/PatchedLDAPProviderRequest.d.ts +1 -1
  30. package/dist/models/PatchedOAuth2ProviderRequest.d.ts +1 -1
  31. package/dist/models/PatchedProxyProviderRequest.d.ts +1 -1
  32. package/dist/models/PatchedSAMLProviderRequest.d.ts +1 -1
  33. package/dist/models/ProxyProvider.d.ts +1 -1
  34. package/dist/models/ProxyProvider.js +1 -1
  35. package/dist/models/ProxyProviderRequest.d.ts +1 -1
  36. package/dist/models/ProxyProviderRequest.js +1 -1
  37. package/dist/models/SAMLProvider.d.ts +1 -1
  38. package/dist/models/SAMLProvider.js +1 -1
  39. package/dist/models/SAMLProviderRequest.d.ts +1 -1
  40. package/dist/models/SAMLProviderRequest.js +1 -1
  41. package/package.json +1 -1
  42. package/src/models/LDAPProvider.ts +2 -2
  43. package/src/models/LDAPProviderRequest.ts +2 -2
  44. package/src/models/OAuth2Provider.ts +2 -2
  45. package/src/models/OAuth2ProviderRequest.ts +2 -2
  46. package/src/models/PatchedLDAPProviderRequest.ts +1 -1
  47. package/src/models/PatchedOAuth2ProviderRequest.ts +1 -1
  48. package/src/models/PatchedProxyProviderRequest.ts +1 -1
  49. package/src/models/PatchedSAMLProviderRequest.ts +1 -1
  50. package/src/models/ProxyProvider.ts +2 -2
  51. package/src/models/ProxyProviderRequest.ts +2 -2
  52. package/src/models/SAMLProvider.ts +2 -2
  53. package/src/models/SAMLProviderRequest.ts +2 -2
@@ -33,7 +33,7 @@ export interface LDAPProvider {
33
33
  * @type {string}
34
34
  * @memberof LDAPProvider
35
35
  */
36
- authorizationFlow?: string | null;
36
+ authorizationFlow: string;
37
37
  /**
38
38
  *
39
39
  * @type {Array<string>}
@@ -23,7 +23,7 @@ export function LDAPProviderFromJSONTyped(json, ignoreDiscriminator) {
23
23
  return {
24
24
  'pk': json['pk'],
25
25
  'name': json['name'],
26
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -27,7 +27,7 @@ export interface LDAPProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof LDAPProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -22,7 +22,7 @@ export function LDAPProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
22
22
  }
23
23
  return {
24
24
  'name': json['name'],
25
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -35,7 +35,7 @@ export interface OAuth2Provider {
35
35
  * @type {string}
36
36
  * @memberof OAuth2Provider
37
37
  */
38
- authorizationFlow?: string | null;
38
+ authorizationFlow: string;
39
39
  /**
40
40
  *
41
41
  * @type {Array<string>}
@@ -25,7 +25,7 @@ export function OAuth2ProviderFromJSONTyped(json, ignoreDiscriminator) {
25
25
  return {
26
26
  'pk': json['pk'],
27
27
  'name': json['name'],
28
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -29,7 +29,7 @@ export interface OAuth2ProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof OAuth2ProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -24,7 +24,7 @@ export function OAuth2ProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
24
24
  }
25
25
  return {
26
26
  'name': json['name'],
27
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -27,7 +27,7 @@ export interface PatchedLDAPProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof PatchedLDAPProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow?: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -29,7 +29,7 @@ export interface PatchedOAuth2ProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof PatchedOAuth2ProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow?: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -27,7 +27,7 @@ export interface PatchedProxyProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof PatchedProxyProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow?: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -29,7 +29,7 @@ export interface PatchedSAMLProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof PatchedSAMLProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow?: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -33,7 +33,7 @@ export interface ProxyProvider {
33
33
  * @type {string}
34
34
  * @memberof ProxyProvider
35
35
  */
36
- authorizationFlow?: string | null;
36
+ authorizationFlow: string;
37
37
  /**
38
38
  *
39
39
  * @type {Array<string>}
@@ -23,7 +23,7 @@ export function ProxyProviderFromJSONTyped(json, ignoreDiscriminator) {
23
23
  return {
24
24
  'pk': json['pk'],
25
25
  'name': json['name'],
26
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -27,7 +27,7 @@ export interface ProxyProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof ProxyProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -22,7 +22,7 @@ export function ProxyProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
22
22
  }
23
23
  return {
24
24
  'name': json['name'],
25
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -35,7 +35,7 @@ export interface SAMLProvider {
35
35
  * @type {string}
36
36
  * @memberof SAMLProvider
37
37
  */
38
- authorizationFlow?: string | null;
38
+ authorizationFlow: string;
39
39
  /**
40
40
  *
41
41
  * @type {Array<string>}
@@ -25,7 +25,7 @@ export function SAMLProviderFromJSONTyped(json, ignoreDiscriminator) {
25
25
  return {
26
26
  'pk': json['pk'],
27
27
  'name': json['name'],
28
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -29,7 +29,7 @@ export interface SAMLProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof SAMLProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -24,7 +24,7 @@ export function SAMLProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
24
24
  }
25
25
  return {
26
26
  'name': json['name'],
27
- 'authorizationFlow': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -33,7 +33,7 @@ export interface LDAPProvider {
33
33
  * @type {string}
34
34
  * @memberof LDAPProvider
35
35
  */
36
- authorizationFlow?: string | null;
36
+ authorizationFlow: string;
37
37
  /**
38
38
  *
39
39
  * @type {Array<string>}
@@ -27,7 +27,7 @@ function LDAPProviderFromJSONTyped(json, ignoreDiscriminator) {
27
27
  return {
28
28
  'pk': json['pk'],
29
29
  'name': json['name'],
30
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -27,7 +27,7 @@ export interface LDAPProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof LDAPProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -26,7 +26,7 @@ function LDAPProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
26
26
  }
27
27
  return {
28
28
  'name': json['name'],
29
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -35,7 +35,7 @@ export interface OAuth2Provider {
35
35
  * @type {string}
36
36
  * @memberof OAuth2Provider
37
37
  */
38
- authorizationFlow?: string | null;
38
+ authorizationFlow: string;
39
39
  /**
40
40
  *
41
41
  * @type {Array<string>}
@@ -29,7 +29,7 @@ function OAuth2ProviderFromJSONTyped(json, ignoreDiscriminator) {
29
29
  return {
30
30
  'pk': json['pk'],
31
31
  'name': json['name'],
32
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -29,7 +29,7 @@ export interface OAuth2ProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof OAuth2ProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -28,7 +28,7 @@ function OAuth2ProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
28
28
  }
29
29
  return {
30
30
  'name': json['name'],
31
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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 @@ export interface PatchedLDAPProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof PatchedLDAPProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow?: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -29,7 +29,7 @@ export interface PatchedOAuth2ProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof PatchedOAuth2ProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow?: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -27,7 +27,7 @@ export interface PatchedProxyProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof PatchedProxyProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow?: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -29,7 +29,7 @@ export interface PatchedSAMLProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof PatchedSAMLProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow?: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -33,7 +33,7 @@ export interface ProxyProvider {
33
33
  * @type {string}
34
34
  * @memberof ProxyProvider
35
35
  */
36
- authorizationFlow?: string | null;
36
+ authorizationFlow: string;
37
37
  /**
38
38
  *
39
39
  * @type {Array<string>}
@@ -27,7 +27,7 @@ function ProxyProviderFromJSONTyped(json, ignoreDiscriminator) {
27
27
  return {
28
28
  'pk': json['pk'],
29
29
  'name': json['name'],
30
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -27,7 +27,7 @@ export interface ProxyProviderRequest {
27
27
  * @type {string}
28
28
  * @memberof ProxyProviderRequest
29
29
  */
30
- authorizationFlow?: string | null;
30
+ authorizationFlow: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<string>}
@@ -26,7 +26,7 @@ function ProxyProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
26
26
  }
27
27
  return {
28
28
  'name': json['name'],
29
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -35,7 +35,7 @@ export interface SAMLProvider {
35
35
  * @type {string}
36
36
  * @memberof SAMLProvider
37
37
  */
38
- authorizationFlow?: string | null;
38
+ authorizationFlow: string;
39
39
  /**
40
40
  *
41
41
  * @type {Array<string>}
@@ -29,7 +29,7 @@ function SAMLProviderFromJSONTyped(json, ignoreDiscriminator) {
29
29
  return {
30
30
  'pk': json['pk'],
31
31
  'name': json['name'],
32
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -29,7 +29,7 @@ export interface SAMLProviderRequest {
29
29
  * @type {string}
30
30
  * @memberof SAMLProviderRequest
31
31
  */
32
- authorizationFlow?: string | null;
32
+ authorizationFlow: string;
33
33
  /**
34
34
  *
35
35
  * @type {Array<string>}
@@ -28,7 +28,7 @@ function SAMLProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
28
28
  }
29
29
  return {
30
30
  'name': json['name'],
31
- 'authorizationFlow': !(0, runtime_1.exists)(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2023.3.0-1678731074",
3
+ "version": "2023.3.0-1678747008",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -43,7 +43,7 @@ export interface LDAPProvider {
43
43
  * @type {string}
44
44
  * @memberof LDAPProvider
45
45
  */
46
- authorizationFlow?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],
@@ -37,7 +37,7 @@ export interface PatchedLDAPProviderRequest {
37
37
  * @type {string}
38
38
  * @memberof PatchedLDAPProviderRequest
39
39
  */
40
- authorizationFlow?: string | null;
40
+ authorizationFlow?: string;
41
41
  /**
42
42
  *
43
43
  * @type {Array<string>}
@@ -49,7 +49,7 @@ export interface PatchedOAuth2ProviderRequest {
49
49
  * @type {string}
50
50
  * @memberof PatchedOAuth2ProviderRequest
51
51
  */
52
- authorizationFlow?: string | null;
52
+ authorizationFlow?: string;
53
53
  /**
54
54
  *
55
55
  * @type {Array<string>}
@@ -37,7 +37,7 @@ export interface PatchedProxyProviderRequest {
37
37
  * @type {string}
38
38
  * @memberof PatchedProxyProviderRequest
39
39
  */
40
- authorizationFlow?: string | null;
40
+ authorizationFlow?: string;
41
41
  /**
42
42
  *
43
43
  * @type {Array<string>}
@@ -49,7 +49,7 @@ export interface PatchedSAMLProviderRequest {
49
49
  * @type {string}
50
50
  * @memberof PatchedSAMLProviderRequest
51
51
  */
52
- authorizationFlow?: string | null;
52
+ authorizationFlow?: string;
53
53
  /**
54
54
  *
55
55
  * @type {Array<string>}
@@ -43,7 +43,7 @@ export interface ProxyProvider {
43
43
  * @type {string}
44
44
  * @memberof ProxyProvider
45
45
  */
46
- authorizationFlow?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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?: string | null;
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': !exists(json, 'authorization_flow') ? undefined : json['authorization_flow'],
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'],