You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewruntime.RequiredError('preUserRequest','Required parameter requestParameters.preUserRequest was null or undefined when calling postPreSignUp.');
65
+
if(requestParameters['preUserRequest']==null){
66
+
thrownewruntime.RequiredError(
67
+
'preUserRequest',
68
+
'Required parameter "preUserRequest" was null or undefined when calling postPreSignUp().'
69
+
);
67
70
}
68
71
69
72
constqueryParameters: any={};
@@ -77,7 +80,7 @@ export class AuthApi extends runtime.BaseAPI {
thrownewruntime.RequiredError('verifyCodeRequest','Required parameter requestParameters.verifyCodeRequest was null or undefined when calling postPreSignUpVerifyCode.');
100
+
if(requestParameters['verifyCodeRequest']==null){
101
+
thrownewruntime.RequiredError(
102
+
'verifyCodeRequest',
103
+
'Required parameter "verifyCodeRequest" was null or undefined when calling postPreSignUpVerifyCode().'
104
+
);
99
105
}
100
106
101
107
constqueryParameters: any={};
@@ -109,7 +115,7 @@ export class AuthApi extends runtime.BaseAPI {
thrownewruntime.RequiredError('invitationCodeRequest','Required parameter requestParameters.invitationCodeRequest was null or undefined when calling postInvitationVerifyCode.');
0 commit comments