@goauthentik/api 2025.2.4-1744808430 → 2025.2.4-1744886287

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.
@@ -112,6 +112,12 @@ export interface IdentificationChallenge {
112
112
  * @memberof IdentificationChallenge
113
113
  */
114
114
  showSourceLabels: boolean;
115
+ /**
116
+ *
117
+ * @type {boolean}
118
+ * @memberof IdentificationChallenge
119
+ */
120
+ enableRememberMe?: boolean;
115
121
  }
116
122
  /**
117
123
  * Check if a given object implements the IdentificationChallenge interface.
@@ -54,6 +54,7 @@ export function IdentificationChallengeFromJSONTyped(json, ignoreDiscriminator)
54
54
  'primaryAction': json['primary_action'],
55
55
  'sources': json['sources'] == null ? undefined : (json['sources'].map(LoginSourceFromJSON)),
56
56
  'showSourceLabels': json['show_source_labels'],
57
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
57
58
  };
58
59
  }
59
60
  export function IdentificationChallengeToJSON(json) {
@@ -79,5 +80,6 @@ export function IdentificationChallengeToJSONTyped(value, ignoreDiscriminator =
79
80
  'primary_action': value['primaryAction'],
80
81
  'sources': value['sources'] == null ? undefined : (value['sources'].map(LoginSourceToJSON)),
81
82
  'show_source_labels': value['showSourceLabels'],
83
+ 'enable_remember_me': value['enableRememberMe'],
82
84
  };
83
85
  }
@@ -125,6 +125,12 @@ export interface IdentificationStage {
125
125
  * @memberof IdentificationStage
126
126
  */
127
127
  pretendUserExists?: boolean;
128
+ /**
129
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
130
+ * @type {boolean}
131
+ * @memberof IdentificationStage
132
+ */
133
+ enableRememberMe?: boolean;
128
134
  }
129
135
  /**
130
136
  * Check if a given object implements the IdentificationStage interface.
@@ -57,6 +57,7 @@ export function IdentificationStageFromJSONTyped(json, ignoreDiscriminator) {
57
57
  'sources': json['sources'] == null ? undefined : json['sources'],
58
58
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
59
59
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
60
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
60
61
  };
61
62
  }
62
63
  export function IdentificationStageToJSON(json) {
@@ -80,5 +81,6 @@ export function IdentificationStageToJSONTyped(value, ignoreDiscriminator = fals
80
81
  'sources': value['sources'],
81
82
  'show_source_labels': value['showSourceLabels'],
82
83
  'pretend_user_exists': value['pretendUserExists'],
84
+ 'enable_remember_me': value['enableRememberMe'],
83
85
  };
84
86
  }
@@ -95,6 +95,12 @@ export interface IdentificationStageRequest {
95
95
  * @memberof IdentificationStageRequest
96
96
  */
97
97
  pretendUserExists?: boolean;
98
+ /**
99
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
100
+ * @type {boolean}
101
+ * @memberof IdentificationStageRequest
102
+ */
103
+ enableRememberMe?: boolean;
98
104
  }
99
105
  /**
100
106
  * Check if a given object implements the IdentificationStageRequest interface.
@@ -42,6 +42,7 @@ export function IdentificationStageRequestFromJSONTyped(json, ignoreDiscriminato
42
42
  'sources': json['sources'] == null ? undefined : json['sources'],
43
43
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
44
44
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
45
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
45
46
  };
46
47
  }
47
48
  export function IdentificationStageRequestToJSON(json) {
@@ -65,5 +66,6 @@ export function IdentificationStageRequestToJSONTyped(value, ignoreDiscriminator
65
66
  'sources': value['sources'],
66
67
  'show_source_labels': value['showSourceLabels'],
67
68
  'pretend_user_exists': value['pretendUserExists'],
69
+ 'enable_remember_me': value['enableRememberMe'],
68
70
  };
69
71
  }
@@ -95,6 +95,12 @@ export interface PatchedIdentificationStageRequest {
95
95
  * @memberof PatchedIdentificationStageRequest
96
96
  */
97
97
  pretendUserExists?: boolean;
98
+ /**
99
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
100
+ * @type {boolean}
101
+ * @memberof PatchedIdentificationStageRequest
102
+ */
103
+ enableRememberMe?: boolean;
98
104
  }
99
105
  /**
100
106
  * Check if a given object implements the PatchedIdentificationStageRequest interface.
@@ -40,6 +40,7 @@ export function PatchedIdentificationStageRequestFromJSONTyped(json, ignoreDiscr
40
40
  'sources': json['sources'] == null ? undefined : json['sources'],
41
41
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
42
42
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
43
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
43
44
  };
44
45
  }
45
46
  export function PatchedIdentificationStageRequestToJSON(json) {
@@ -63,5 +64,6 @@ export function PatchedIdentificationStageRequestToJSONTyped(value, ignoreDiscri
63
64
  'sources': value['sources'],
64
65
  'show_source_labels': value['showSourceLabels'],
65
66
  'pretend_user_exists': value['pretendUserExists'],
67
+ 'enable_remember_me': value['enableRememberMe'],
66
68
  };
67
69
  }
@@ -112,6 +112,12 @@ export interface IdentificationChallenge {
112
112
  * @memberof IdentificationChallenge
113
113
  */
114
114
  showSourceLabels: boolean;
115
+ /**
116
+ *
117
+ * @type {boolean}
118
+ * @memberof IdentificationChallenge
119
+ */
120
+ enableRememberMe?: boolean;
115
121
  }
116
122
  /**
117
123
  * Check if a given object implements the IdentificationChallenge interface.
@@ -61,6 +61,7 @@ function IdentificationChallengeFromJSONTyped(json, ignoreDiscriminator) {
61
61
  'primaryAction': json['primary_action'],
62
62
  'sources': json['sources'] == null ? undefined : (json['sources'].map(LoginSource_1.LoginSourceFromJSON)),
63
63
  'showSourceLabels': json['show_source_labels'],
64
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
64
65
  };
65
66
  }
66
67
  function IdentificationChallengeToJSON(json) {
@@ -86,5 +87,6 @@ function IdentificationChallengeToJSONTyped(value, ignoreDiscriminator = false)
86
87
  'primary_action': value['primaryAction'],
87
88
  'sources': value['sources'] == null ? undefined : (value['sources'].map(LoginSource_1.LoginSourceToJSON)),
88
89
  'show_source_labels': value['showSourceLabels'],
90
+ 'enable_remember_me': value['enableRememberMe'],
89
91
  };
90
92
  }
@@ -125,6 +125,12 @@ export interface IdentificationStage {
125
125
  * @memberof IdentificationStage
126
126
  */
127
127
  pretendUserExists?: boolean;
128
+ /**
129
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
130
+ * @type {boolean}
131
+ * @memberof IdentificationStage
132
+ */
133
+ enableRememberMe?: boolean;
128
134
  }
129
135
  /**
130
136
  * Check if a given object implements the IdentificationStage interface.
@@ -64,6 +64,7 @@ function IdentificationStageFromJSONTyped(json, ignoreDiscriminator) {
64
64
  'sources': json['sources'] == null ? undefined : json['sources'],
65
65
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
66
66
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
67
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
67
68
  };
68
69
  }
69
70
  function IdentificationStageToJSON(json) {
@@ -87,5 +88,6 @@ function IdentificationStageToJSONTyped(value, ignoreDiscriminator = false) {
87
88
  'sources': value['sources'],
88
89
  'show_source_labels': value['showSourceLabels'],
89
90
  'pretend_user_exists': value['pretendUserExists'],
91
+ 'enable_remember_me': value['enableRememberMe'],
90
92
  };
91
93
  }
@@ -95,6 +95,12 @@ export interface IdentificationStageRequest {
95
95
  * @memberof IdentificationStageRequest
96
96
  */
97
97
  pretendUserExists?: boolean;
98
+ /**
99
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
100
+ * @type {boolean}
101
+ * @memberof IdentificationStageRequest
102
+ */
103
+ enableRememberMe?: boolean;
98
104
  }
99
105
  /**
100
106
  * Check if a given object implements the IdentificationStageRequest interface.
@@ -49,6 +49,7 @@ function IdentificationStageRequestFromJSONTyped(json, ignoreDiscriminator) {
49
49
  'sources': json['sources'] == null ? undefined : json['sources'],
50
50
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
51
51
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
52
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
52
53
  };
53
54
  }
54
55
  function IdentificationStageRequestToJSON(json) {
@@ -72,5 +73,6 @@ function IdentificationStageRequestToJSONTyped(value, ignoreDiscriminator = fals
72
73
  'sources': value['sources'],
73
74
  'show_source_labels': value['showSourceLabels'],
74
75
  'pretend_user_exists': value['pretendUserExists'],
76
+ 'enable_remember_me': value['enableRememberMe'],
75
77
  };
76
78
  }
@@ -95,6 +95,12 @@ export interface PatchedIdentificationStageRequest {
95
95
  * @memberof PatchedIdentificationStageRequest
96
96
  */
97
97
  pretendUserExists?: boolean;
98
+ /**
99
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
100
+ * @type {boolean}
101
+ * @memberof PatchedIdentificationStageRequest
102
+ */
103
+ enableRememberMe?: boolean;
98
104
  }
99
105
  /**
100
106
  * Check if a given object implements the PatchedIdentificationStageRequest interface.
@@ -47,6 +47,7 @@ function PatchedIdentificationStageRequestFromJSONTyped(json, ignoreDiscriminato
47
47
  'sources': json['sources'] == null ? undefined : json['sources'],
48
48
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
49
49
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
50
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
50
51
  };
51
52
  }
52
53
  function PatchedIdentificationStageRequestToJSON(json) {
@@ -70,5 +71,6 @@ function PatchedIdentificationStageRequestToJSONTyped(value, ignoreDiscriminator
70
71
  'sources': value['sources'],
71
72
  'show_source_labels': value['showSourceLabels'],
72
73
  'pretend_user_exists': value['pretendUserExists'],
74
+ 'enable_remember_me': value['enableRememberMe'],
73
75
  };
74
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2025.2.4-1744808430",
3
+ "version": "2025.2.4-1744886287",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -145,6 +145,12 @@ export interface IdentificationChallenge {
145
145
  * @memberof IdentificationChallenge
146
146
  */
147
147
  showSourceLabels: boolean;
148
+ /**
149
+ *
150
+ * @type {boolean}
151
+ * @memberof IdentificationChallenge
152
+ */
153
+ enableRememberMe?: boolean;
148
154
  }
149
155
 
150
156
 
@@ -186,6 +192,7 @@ export function IdentificationChallengeFromJSONTyped(json: any, ignoreDiscrimina
186
192
  'primaryAction': json['primary_action'],
187
193
  'sources': json['sources'] == null ? undefined : ((json['sources'] as Array<any>).map(LoginSourceFromJSON)),
188
194
  'showSourceLabels': json['show_source_labels'],
195
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
189
196
  };
190
197
  }
191
198
 
@@ -215,6 +222,7 @@ export function IdentificationChallengeToJSONTyped(value?: IdentificationChallen
215
222
  'primary_action': value['primaryAction'],
216
223
  'sources': value['sources'] == null ? undefined : ((value['sources'] as Array<any>).map(LoginSourceToJSON)),
217
224
  'show_source_labels': value['showSourceLabels'],
225
+ 'enable_remember_me': value['enableRememberMe'],
218
226
  };
219
227
  }
220
228
 
@@ -142,6 +142,12 @@ export interface IdentificationStage {
142
142
  * @memberof IdentificationStage
143
143
  */
144
144
  pretendUserExists?: boolean;
145
+ /**
146
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
147
+ * @type {boolean}
148
+ * @memberof IdentificationStage
149
+ */
150
+ enableRememberMe?: boolean;
145
151
  }
146
152
 
147
153
  /**
@@ -185,6 +191,7 @@ export function IdentificationStageFromJSONTyped(json: any, ignoreDiscriminator:
185
191
  'sources': json['sources'] == null ? undefined : json['sources'],
186
192
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
187
193
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
194
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
188
195
  };
189
196
  }
190
197
 
@@ -212,6 +219,7 @@ export function IdentificationStageToJSONTyped(value?: Omit<IdentificationStage,
212
219
  'sources': value['sources'],
213
220
  'show_source_labels': value['showSourceLabels'],
214
221
  'pretend_user_exists': value['pretendUserExists'],
222
+ 'enable_remember_me': value['enableRememberMe'],
215
223
  };
216
224
  }
217
225
 
@@ -112,6 +112,12 @@ export interface IdentificationStageRequest {
112
112
  * @memberof IdentificationStageRequest
113
113
  */
114
114
  pretendUserExists?: boolean;
115
+ /**
116
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
117
+ * @type {boolean}
118
+ * @memberof IdentificationStageRequest
119
+ */
120
+ enableRememberMe?: boolean;
115
121
  }
116
122
 
117
123
  /**
@@ -145,6 +151,7 @@ export function IdentificationStageRequestFromJSONTyped(json: any, ignoreDiscrim
145
151
  'sources': json['sources'] == null ? undefined : json['sources'],
146
152
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
147
153
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
154
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
148
155
  };
149
156
  }
150
157
 
@@ -172,6 +179,7 @@ export function IdentificationStageRequestToJSONTyped(value?: IdentificationStag
172
179
  'sources': value['sources'],
173
180
  'show_source_labels': value['showSourceLabels'],
174
181
  'pretend_user_exists': value['pretendUserExists'],
182
+ 'enable_remember_me': value['enableRememberMe'],
175
183
  };
176
184
  }
177
185
 
@@ -112,6 +112,12 @@ export interface PatchedIdentificationStageRequest {
112
112
  * @memberof PatchedIdentificationStageRequest
113
113
  */
114
114
  pretendUserExists?: boolean;
115
+ /**
116
+ * Show the user the 'Remember me on this device' toggle, allowing repeat users to skip straight to entering their password.
117
+ * @type {boolean}
118
+ * @memberof PatchedIdentificationStageRequest
119
+ */
120
+ enableRememberMe?: boolean;
115
121
  }
116
122
 
117
123
  /**
@@ -144,6 +150,7 @@ export function PatchedIdentificationStageRequestFromJSONTyped(json: any, ignore
144
150
  'sources': json['sources'] == null ? undefined : json['sources'],
145
151
  'showSourceLabels': json['show_source_labels'] == null ? undefined : json['show_source_labels'],
146
152
  'pretendUserExists': json['pretend_user_exists'] == null ? undefined : json['pretend_user_exists'],
153
+ 'enableRememberMe': json['enable_remember_me'] == null ? undefined : json['enable_remember_me'],
147
154
  };
148
155
  }
149
156
 
@@ -171,6 +178,7 @@ export function PatchedIdentificationStageRequestToJSONTyped(value?: PatchedIden
171
178
  'sources': value['sources'],
172
179
  'show_source_labels': value['showSourceLabels'],
173
180
  'pretend_user_exists': value['pretendUserExists'],
181
+ 'enable_remember_me': value['enableRememberMe'],
174
182
  };
175
183
  }
176
184