@dev-crew-berlin/enter-js-utils 0.50.2 → 0.50.3
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.
|
@@ -220,6 +220,12 @@ export declare type components = {
|
|
|
220
220
|
AuthCode: {
|
|
221
221
|
/** Authcode */
|
|
222
222
|
authCode: string;
|
|
223
|
+
/** Session Type */
|
|
224
|
+
session_type?: string;
|
|
225
|
+
/** Flags */
|
|
226
|
+
flags?: {
|
|
227
|
+
[key: string]: unknown;
|
|
228
|
+
};
|
|
223
229
|
};
|
|
224
230
|
/** CheckboxField */
|
|
225
231
|
CheckboxField: {
|
|
@@ -1238,6 +1244,12 @@ export declare type components = {
|
|
|
1238
1244
|
/** SecurityQuestion */
|
|
1239
1245
|
SecurityQuestion: {
|
|
1240
1246
|
security_question: components["schemas"]["QuestionFields"];
|
|
1247
|
+
/** Session Type */
|
|
1248
|
+
session_type?: string;
|
|
1249
|
+
/** Flags */
|
|
1250
|
+
flags?: {
|
|
1251
|
+
[key: string]: unknown;
|
|
1252
|
+
};
|
|
1241
1253
|
};
|
|
1242
1254
|
/** StaticField */
|
|
1243
1255
|
StaticField: {
|