@goauthentik/api 2022.12.1-1672406809 → 2022.12.1-1672593591
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.
|
@@ -67,7 +67,7 @@ export interface CaptchaChallenge {
|
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof CaptchaChallenge
|
|
69
69
|
*/
|
|
70
|
-
|
|
70
|
+
jsUrl: string;
|
|
71
71
|
}
|
|
72
72
|
export declare function CaptchaChallengeFromJSON(json: any): CaptchaChallenge;
|
|
73
73
|
export declare function CaptchaChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaptchaChallenge;
|
|
@@ -67,7 +67,7 @@ export interface CaptchaChallenge {
|
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof CaptchaChallenge
|
|
69
69
|
*/
|
|
70
|
-
|
|
70
|
+
jsUrl: string;
|
|
71
71
|
}
|
|
72
72
|
export declare function CaptchaChallengeFromJSON(json: any): CaptchaChallenge;
|
|
73
73
|
export declare function CaptchaChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CaptchaChallenge;
|
package/package.json
CHANGED
|
@@ -85,7 +85,7 @@ export interface CaptchaChallenge {
|
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof CaptchaChallenge
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
jsUrl: string;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
export function CaptchaChallengeFromJSON(json: any): CaptchaChallenge {
|
|
@@ -125,6 +125,7 @@ export function CaptchaChallengeToJSON(value?: CaptchaChallenge | null): any {
|
|
|
125
125
|
'pending_user': value.pendingUser,
|
|
126
126
|
'pending_user_avatar': value.pendingUserAvatar,
|
|
127
127
|
'site_key': value.siteKey,
|
|
128
|
+
'js_url': value.jsUrl,
|
|
128
129
|
};
|
|
129
130
|
}
|
|
130
131
|
|