@goauthentik/api 2022.4.1-1652209547 → 2022.4.1-1652479731
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.
|
@@ -58,6 +58,12 @@ export interface AutosubmitChallenge {
|
|
|
58
58
|
attrs: {
|
|
59
59
|
[key: string]: string;
|
|
60
60
|
};
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof AutosubmitChallenge
|
|
65
|
+
*/
|
|
66
|
+
title?: string;
|
|
61
67
|
}
|
|
62
68
|
export declare function AutosubmitChallengeFromJSON(json: any): AutosubmitChallenge;
|
|
63
69
|
export declare function AutosubmitChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AutosubmitChallenge;
|
|
@@ -28,6 +28,7 @@ export function AutosubmitChallengeFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
28
|
'responseErrors': !exists(json, 'response_errors') ? undefined : json['response_errors'],
|
|
29
29
|
'url': json['url'],
|
|
30
30
|
'attrs': json['attrs'],
|
|
31
|
+
'title': !exists(json, 'title') ? undefined : json['title'],
|
|
31
32
|
};
|
|
32
33
|
}
|
|
33
34
|
export function AutosubmitChallengeToJSON(value) {
|
|
@@ -44,5 +45,6 @@ export function AutosubmitChallengeToJSON(value) {
|
|
|
44
45
|
'response_errors': value.responseErrors,
|
|
45
46
|
'url': value.url,
|
|
46
47
|
'attrs': value.attrs,
|
|
48
|
+
'title': value.title,
|
|
47
49
|
};
|
|
48
50
|
}
|
|
@@ -58,6 +58,12 @@ export interface AutosubmitChallenge {
|
|
|
58
58
|
attrs: {
|
|
59
59
|
[key: string]: string;
|
|
60
60
|
};
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof AutosubmitChallenge
|
|
65
|
+
*/
|
|
66
|
+
title?: string;
|
|
61
67
|
}
|
|
62
68
|
export declare function AutosubmitChallengeFromJSON(json: any): AutosubmitChallenge;
|
|
63
69
|
export declare function AutosubmitChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AutosubmitChallenge;
|
|
@@ -32,6 +32,7 @@ function AutosubmitChallengeFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
'responseErrors': !runtime_1.exists(json, 'response_errors') ? undefined : json['response_errors'],
|
|
33
33
|
'url': json['url'],
|
|
34
34
|
'attrs': json['attrs'],
|
|
35
|
+
'title': !runtime_1.exists(json, 'title') ? undefined : json['title'],
|
|
35
36
|
};
|
|
36
37
|
}
|
|
37
38
|
exports.AutosubmitChallengeFromJSONTyped = AutosubmitChallengeFromJSONTyped;
|
|
@@ -49,6 +50,7 @@ function AutosubmitChallengeToJSON(value) {
|
|
|
49
50
|
'response_errors': value.responseErrors,
|
|
50
51
|
'url': value.url,
|
|
51
52
|
'attrs': value.attrs,
|
|
53
|
+
'title': value.title,
|
|
52
54
|
};
|
|
53
55
|
}
|
|
54
56
|
exports.AutosubmitChallengeToJSON = AutosubmitChallengeToJSON;
|
package/package.json
CHANGED
|
@@ -74,6 +74,12 @@ export interface AutosubmitChallenge {
|
|
|
74
74
|
* @memberof AutosubmitChallenge
|
|
75
75
|
*/
|
|
76
76
|
attrs: { [key: string]: string; };
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof AutosubmitChallenge
|
|
81
|
+
*/
|
|
82
|
+
title?: string;
|
|
77
83
|
}
|
|
78
84
|
|
|
79
85
|
export function AutosubmitChallengeFromJSON(json: any): AutosubmitChallenge {
|
|
@@ -92,6 +98,7 @@ export function AutosubmitChallengeFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
92
98
|
'responseErrors': !exists(json, 'response_errors') ? undefined : json['response_errors'],
|
|
93
99
|
'url': json['url'],
|
|
94
100
|
'attrs': json['attrs'],
|
|
101
|
+
'title': !exists(json, 'title') ? undefined : json['title'],
|
|
95
102
|
};
|
|
96
103
|
}
|
|
97
104
|
|
|
@@ -110,6 +117,7 @@ export function AutosubmitChallengeToJSON(value?: AutosubmitChallenge | null): a
|
|
|
110
117
|
'response_errors': value.responseErrors,
|
|
111
118
|
'url': value.url,
|
|
112
119
|
'attrs': value.attrs,
|
|
120
|
+
'title': value.title,
|
|
113
121
|
};
|
|
114
122
|
}
|
|
115
123
|
|