@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
- readonly jsUrl: string;
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;
@@ -47,5 +47,6 @@ export function CaptchaChallengeToJSON(value) {
47
47
  'pending_user': value.pendingUser,
48
48
  'pending_user_avatar': value.pendingUserAvatar,
49
49
  'site_key': value.siteKey,
50
+ 'js_url': value.jsUrl,
50
51
  };
51
52
  }
@@ -67,7 +67,7 @@ export interface CaptchaChallenge {
67
67
  * @type {string}
68
68
  * @memberof CaptchaChallenge
69
69
  */
70
- readonly jsUrl: string;
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;
@@ -52,6 +52,7 @@ function CaptchaChallengeToJSON(value) {
52
52
  'pending_user': value.pendingUser,
53
53
  'pending_user_avatar': value.pendingUserAvatar,
54
54
  'site_key': value.siteKey,
55
+ 'js_url': value.jsUrl,
55
56
  };
56
57
  }
57
58
  exports.CaptchaChallengeToJSON = CaptchaChallengeToJSON;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2022.12.1-1672406809",
3
+ "version": "2022.12.1-1672593591",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -85,7 +85,7 @@ export interface CaptchaChallenge {
85
85
  * @type {string}
86
86
  * @memberof CaptchaChallenge
87
87
  */
88
- readonly jsUrl: string;
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