@@ -1058,16 +1058,28 @@ export class MittwaldAPIV2Client extends ApiClientBase {
10581058 getDomain : this . requestFunctionFactory ( descriptors . domainGetDomain ) ,
10591059 /** Delete a Domain. */
10601060 deleteDomain : this . requestFunctionFactory ( descriptors . domainDeleteDomain ) ,
1061+ /** Get a Contact-Verification. */
1062+ getContactVerification : this . requestFunctionFactory (
1063+ descriptors . domainGetContactVerification ,
1064+ ) ,
10611065 /** Get the latest screenshot's FileReference belonging to a Domain. */
10621066 getLatestScreenshot : this . requestFunctionFactory (
10631067 descriptors . domainGetLatestScreenshot ,
10641068 ) ,
1069+ /** List Contact-Verifications belonging to the executing user. */
1070+ listContactVerifications : this . requestFunctionFactory (
1071+ descriptors . domainListContactVerifications ,
1072+ ) ,
10651073 /** List the contact schemas for a TLD. */
10661074 listTldContactSchemas : this . requestFunctionFactory (
10671075 descriptors . domainListTldContactSchemas ,
10681076 ) ,
10691077 /** List TLDs. */
10701078 listTlds : this . requestFunctionFactory ( descriptors . domainListTlds ) ,
1079+ /** Resends a Contact-Verification email. */
1080+ resendContactVerificationEmail : this . requestFunctionFactory (
1081+ descriptors . domainResendContactVerificationEmail ,
1082+ ) ,
10711083 /** Resend a Domain email. */
10721084 resendDomainEmail : this . requestFunctionFactory (
10731085 descriptors . domainResendDomainEmail ,
@@ -1150,18 +1162,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
11501162 sslListCertificates : this . requestFunctionFactory (
11511163 descriptors . sslListCertificates ,
11521164 ) ,
1153- /** Get a Contact-Verification. */
1154- getContactVerification : this . requestFunctionFactory (
1155- descriptors . domainGetContactVerification ,
1156- ) ,
1157- /** List Contact-Verifications belonging to the executing user. */
1158- listContactVerifications : this . requestFunctionFactory (
1159- descriptors . domainListContactVerifications ,
1160- ) ,
1161- /** Resends a Contact-Verification email. */
1162- resendContactVerificationEmail : this . requestFunctionFactory (
1163- descriptors . domainResendContactVerificationEmail ,
1164- ) ,
11651165 } ;
11661166
11671167 /** The mail API allows you to manage your mail accounts. */
@@ -1356,6 +1356,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
13561356 deleteSshKey : this . requestFunctionFactory ( descriptors . userDeleteSshKey ) ,
13571357 /** Delete your account and all your personal data. */
13581358 deleteUser : this . requestFunctionFactory ( descriptors . userDeleteUser ) ,
1359+ /** Check status of the current session. */
1360+ getCurrentSessionStatus : this . requestFunctionFactory (
1361+ descriptors . userGetCurrentSessionStatus ,
1362+ ) ,
13591363 /** The timestamp of your latest password change. */
13601364 getPasswordUpdatedAt : this . requestFunctionFactory (
13611365 descriptors . userGetPasswordUpdatedAt ,
@@ -1436,10 +1440,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
14361440 verifyRegistration : this . requestFunctionFactory (
14371441 descriptors . userVerifyRegistration ,
14381442 ) ,
1439- /** Check status of the current session. */
1440- getCurrentSessionStatus : this . requestFunctionFactory (
1441- descriptors . userGetCurrentSessionStatus ,
1442- ) ,
14431443 } ;
14441444
14451445 /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
0 commit comments