@goauthentik/api 2023.8.3-1697651039 → 2023.8.3-1697813667
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.
|
@@ -57,6 +57,18 @@ export interface SourceType {
|
|
|
57
57
|
* @memberof SourceType
|
|
58
58
|
*/
|
|
59
59
|
readonly profileUrl: string | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SourceType
|
|
64
|
+
*/
|
|
65
|
+
readonly oidcWellKnownUrl: string | null;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SourceType
|
|
70
|
+
*/
|
|
71
|
+
readonly oidcJwksUrl: string | null;
|
|
60
72
|
}
|
|
61
73
|
/**
|
|
62
74
|
* Check if a given object implements the SourceType interface.
|
|
@@ -23,6 +23,8 @@ export function instanceOfSourceType(value) {
|
|
|
23
23
|
isInstance = isInstance && "authorizationUrl" in value;
|
|
24
24
|
isInstance = isInstance && "accessTokenUrl" in value;
|
|
25
25
|
isInstance = isInstance && "profileUrl" in value;
|
|
26
|
+
isInstance = isInstance && "oidcWellKnownUrl" in value;
|
|
27
|
+
isInstance = isInstance && "oidcJwksUrl" in value;
|
|
26
28
|
return isInstance;
|
|
27
29
|
}
|
|
28
30
|
export function SourceTypeFromJSON(json) {
|
|
@@ -40,6 +42,8 @@ export function SourceTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
42
|
'authorizationUrl': json['authorization_url'],
|
|
41
43
|
'accessTokenUrl': json['access_token_url'],
|
|
42
44
|
'profileUrl': json['profile_url'],
|
|
45
|
+
'oidcWellKnownUrl': json['oidc_well_known_url'],
|
|
46
|
+
'oidcJwksUrl': json['oidc_jwks_url'],
|
|
43
47
|
};
|
|
44
48
|
}
|
|
45
49
|
export function SourceTypeToJSON(value) {
|
|
@@ -57,6 +57,18 @@ export interface SourceType {
|
|
|
57
57
|
* @memberof SourceType
|
|
58
58
|
*/
|
|
59
59
|
readonly profileUrl: string | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SourceType
|
|
64
|
+
*/
|
|
65
|
+
readonly oidcWellKnownUrl: string | null;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SourceType
|
|
70
|
+
*/
|
|
71
|
+
readonly oidcJwksUrl: string | null;
|
|
60
72
|
}
|
|
61
73
|
/**
|
|
62
74
|
* Check if a given object implements the SourceType interface.
|
|
@@ -26,6 +26,8 @@ function instanceOfSourceType(value) {
|
|
|
26
26
|
isInstance = isInstance && "authorizationUrl" in value;
|
|
27
27
|
isInstance = isInstance && "accessTokenUrl" in value;
|
|
28
28
|
isInstance = isInstance && "profileUrl" in value;
|
|
29
|
+
isInstance = isInstance && "oidcWellKnownUrl" in value;
|
|
30
|
+
isInstance = isInstance && "oidcJwksUrl" in value;
|
|
29
31
|
return isInstance;
|
|
30
32
|
}
|
|
31
33
|
exports.instanceOfSourceType = instanceOfSourceType;
|
|
@@ -45,6 +47,8 @@ function SourceTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
45
47
|
'authorizationUrl': json['authorization_url'],
|
|
46
48
|
'accessTokenUrl': json['access_token_url'],
|
|
47
49
|
'profileUrl': json['profile_url'],
|
|
50
|
+
'oidcWellKnownUrl': json['oidc_well_known_url'],
|
|
51
|
+
'oidcJwksUrl': json['oidc_jwks_url'],
|
|
48
52
|
};
|
|
49
53
|
}
|
|
50
54
|
exports.SourceTypeFromJSONTyped = SourceTypeFromJSONTyped;
|
package/package.json
CHANGED
package/src/models/SourceType.ts
CHANGED
|
@@ -61,6 +61,18 @@ export interface SourceType {
|
|
|
61
61
|
* @memberof SourceType
|
|
62
62
|
*/
|
|
63
63
|
readonly profileUrl: string | null;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof SourceType
|
|
68
|
+
*/
|
|
69
|
+
readonly oidcWellKnownUrl: string | null;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof SourceType
|
|
74
|
+
*/
|
|
75
|
+
readonly oidcJwksUrl: string | null;
|
|
64
76
|
}
|
|
65
77
|
|
|
66
78
|
/**
|
|
@@ -75,6 +87,8 @@ export function instanceOfSourceType(value: object): boolean {
|
|
|
75
87
|
isInstance = isInstance && "authorizationUrl" in value;
|
|
76
88
|
isInstance = isInstance && "accessTokenUrl" in value;
|
|
77
89
|
isInstance = isInstance && "profileUrl" in value;
|
|
90
|
+
isInstance = isInstance && "oidcWellKnownUrl" in value;
|
|
91
|
+
isInstance = isInstance && "oidcJwksUrl" in value;
|
|
78
92
|
|
|
79
93
|
return isInstance;
|
|
80
94
|
}
|
|
@@ -96,6 +110,8 @@ export function SourceTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean)
|
|
|
96
110
|
'authorizationUrl': json['authorization_url'],
|
|
97
111
|
'accessTokenUrl': json['access_token_url'],
|
|
98
112
|
'profileUrl': json['profile_url'],
|
|
113
|
+
'oidcWellKnownUrl': json['oidc_well_known_url'],
|
|
114
|
+
'oidcJwksUrl': json['oidc_jwks_url'],
|
|
99
115
|
};
|
|
100
116
|
}
|
|
101
117
|
|