@mittwald/api-client 3.0.14 → 3.0.15
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.
- package/dist/cjs/generated/v2/client-react.d.ts +6 -6
- package/dist/cjs/generated/v2/client-react.js +2 -2
- package/dist/cjs/generated/v2/client.d.ts +10 -10
- package/dist/cjs/generated/v2/client.js +2 -2
- package/dist/cjs/generated/v2/descriptors.d.ts +2 -2
- package/dist/cjs/generated/v2/descriptors.js +10 -10
- package/dist/cjs/generated/v2/types.d.ts +32 -34
- package/dist/esm/generated/v2/client-react.d.ts +6 -6
- package/dist/esm/generated/v2/client-react.js +2 -2
- package/dist/esm/generated/v2/client.d.ts +10 -10
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.d.ts +2 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/generated/v2/types.d.ts +32 -34
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -1100,6 +1100,12 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1100
1100
|
projectId: string;
|
|
1101
1101
|
txtRecord: string;
|
|
1102
1102
|
}>;
|
|
1103
|
+
/** List all supported top level domains. */
|
|
1104
|
+
getSupportedTlds: (conf?: {
|
|
1105
|
+
headers?: {
|
|
1106
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1107
|
+
} | undefined;
|
|
1108
|
+
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
|
|
1103
1109
|
/** List all domain ownerships of a project. */
|
|
1104
1110
|
listDomainOwnerships: (conf: {
|
|
1105
1111
|
projectId: string;
|
|
@@ -1157,12 +1163,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1157
1163
|
"x-access-token"?: string | undefined;
|
|
1158
1164
|
} | undefined;
|
|
1159
1165
|
}) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
|
|
1160
|
-
/** List all supported top level domains. */
|
|
1161
|
-
getSupportedTlds: (conf?: {
|
|
1162
|
-
headers?: {
|
|
1163
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1164
|
-
} | undefined;
|
|
1165
|
-
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
|
|
1166
1166
|
};
|
|
1167
1167
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1168
1168
|
/** Get a File's meta. */
|
|
@@ -187,6 +187,8 @@ const buildDomainApi = (baseClient) => ({
|
|
|
187
187
|
getScreenshotForDomain: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetScreenshotForDomain, baseClient.domain.getScreenshotForDomain).getApiResource,
|
|
188
188
|
/** Get a domain ownership. */
|
|
189
189
|
getSpecificDomainOwnership: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetSpecificDomainOwnership, baseClient.domain.getSpecificDomainOwnership).getApiResource,
|
|
190
|
+
/** List all supported top level domains. */
|
|
191
|
+
getSupportedTlds: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetSupportedTlds, baseClient.domain.getSupportedTlds).getApiResource,
|
|
190
192
|
/** List all domain ownerships of a project. */
|
|
191
193
|
listDomainOwnerships: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
|
|
192
194
|
/** List Domains belonging to a Project. */
|
|
@@ -197,8 +199,6 @@ const buildDomainApi = (baseClient) => ({
|
|
|
197
199
|
ingressListAccessible: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListAccessible, baseClient.domain.ingressListAccessible).getApiResource,
|
|
198
200
|
/** List Ingresses belonging to a project. */
|
|
199
201
|
ingressListForProject: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListForProject, baseClient.domain.ingressListForProject).getApiResource,
|
|
200
|
-
/** List all supported top level domains. */
|
|
201
|
-
getSupportedTlds: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetSupportedTlds, baseClient.domain.getSupportedTlds).getApiResource,
|
|
202
202
|
});
|
|
203
203
|
const buildFileApi = (baseClient) => ({
|
|
204
204
|
/** Get a File's meta. */
|
|
@@ -5680,6 +5680,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5680
5680
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5681
5681
|
[x: string]: unknown;
|
|
5682
5682
|
}, 404, "application/json">>>;
|
|
5683
|
+
/** List all supported top level domains. */
|
|
5684
|
+
getSupportedTlds: (request?: {
|
|
5685
|
+
headers?: {
|
|
5686
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5687
|
+
} | undefined;
|
|
5688
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5689
|
+
headers?: Partial<{
|
|
5690
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5691
|
+
}> | undefined;
|
|
5692
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[], 200, "application/json">>>;
|
|
5683
5693
|
/** List all domain ownerships of a project. */
|
|
5684
5694
|
listDomainOwnerships: (request: {
|
|
5685
5695
|
projectId: string;
|
|
@@ -6007,16 +6017,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6007
6017
|
}, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6008
6018
|
[x: string]: unknown;
|
|
6009
6019
|
}, 404, "application/json">>>;
|
|
6010
|
-
/** List all supported top level domains. */
|
|
6011
|
-
getSupportedTlds: (request?: {
|
|
6012
|
-
headers?: {
|
|
6013
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6014
|
-
} | undefined;
|
|
6015
|
-
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6016
|
-
headers?: Partial<{
|
|
6017
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6018
|
-
}> | undefined;
|
|
6019
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[], 200, "application/json">>>;
|
|
6020
6020
|
};
|
|
6021
6021
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
6022
6022
|
readonly file: {
|
|
@@ -391,6 +391,8 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
391
391
|
getSpecificDomainOwnership: this.requestFunctionFactory(descriptors.domainGetSpecificDomainOwnership),
|
|
392
392
|
/** Verify a domain ownership. */
|
|
393
393
|
verifyDomainOwnership: this.requestFunctionFactory(descriptors.domainVerifyDomainOwnership),
|
|
394
|
+
/** List all supported top level domains. */
|
|
395
|
+
getSupportedTlds: this.requestFunctionFactory(descriptors.domainGetSupportedTlds),
|
|
394
396
|
/** List all domain ownerships of a project. */
|
|
395
397
|
listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
|
|
396
398
|
/** List Domains belonging to a Project. */
|
|
@@ -413,8 +415,6 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
413
415
|
ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
|
|
414
416
|
/** Update an Ingresses tls settings. */
|
|
415
417
|
ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
|
|
416
|
-
/** List all supported top level domains. */
|
|
417
|
-
getSupportedTlds: this.requestFunctionFactory(descriptors.domainGetSupportedTlds),
|
|
418
418
|
};
|
|
419
419
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
420
420
|
this.file = {
|
|
@@ -299,6 +299,8 @@ export declare const domainGetScreenshotForDomain: OpenAPIOperation<RequestType<
|
|
|
299
299
|
export declare const domainGetSpecificDomainOwnership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
300
300
|
/** Verify a domain ownership. */
|
|
301
301
|
export declare const domainVerifyDomainOwnership: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
302
|
+
/** List all supported top level domains. */
|
|
303
|
+
export declare const domainGetSupportedTlds: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
302
304
|
/** List all domain ownerships of a project. */
|
|
303
305
|
export declare const domainListDomainOwnerships: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
304
306
|
/** List Domains belonging to a Project. */
|
|
@@ -599,5 +601,3 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
|
|
|
599
601
|
export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
600
602
|
/** Verify your registration. */
|
|
601
603
|
export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
602
|
-
/** List all supported top level domains. */
|
|
603
|
-
export declare const domainGetSupportedTlds: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appReconcileDetectedApps = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetMissingDependenciesForAppinstallation = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
|
|
4
4
|
exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = exports.conversationCreateConversation = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
5
|
+
exports.domainListDomainOwnerships = exports.domainGetSupportedTlds = exports.domainVerifyDomainOwnership = exports.domainGetSpecificDomainOwnership = exports.domainGetScreenshotForDomain = exports.domainGetHandleFields = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainDeclareProcessChangeHandles = exports.domainDeclareProcessChangeAuthcode = exports.domainDeclareNameservers = exports.domainCreateAuthcode2ForDomain = exports.domainCreateAuthcodeForDomain = exports.domainCheckDomainAvailability = exports.domainChangeProjectOfDomain = exports.domainChangeOwnercOfDomain = exports.domainAbortDeclareProcess = exports.dnsZonesForProject = exports.dnsZoneGetSpecific = exports.dnsSubZoneCreate = exports.dnsRecordTxtSet = exports.dnsRecordSrvSet = exports.dnsRecordMxSetManaged = exports.dnsRecordMxSetCustom = exports.dnsRecordCnameSet = exports.dnsRecordAsetManagedByIngress = exports.dnsRecordAsetCustom = exports.newsletterSubscribeUser = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
|
|
6
|
+
exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailProjectsettingUpdateWhitelist = exports.mailProjectsettingUpdateBlacklist = exports.mailProjectsettingGetSpecific = exports.mailMailaddressUpdateSpamprotection = exports.mailMailaddressUpdateQuota = exports.mailMailaddressUpdatePassword = exports.mailMailaddressUpdateForwardaddresses = exports.mailMailaddressUpdateCatchall = exports.mailMailaddressUpdateAutoresponder = exports.mailMailaddressUpdateAddress = exports.mailMailaddressDelete = exports.mailMailaddressGetSpecific = exports.mailMailaddressCreate = exports.mailMailaddressList = exports.mailDeliveryboxUpdatePassword = exports.mailDeliveryboxUpdateDescription = exports.mailDeliveryboxDelete = exports.mailDeliveryboxGetSpecific = exports.mailDeliveryboxCreate = exports.mailDeliveryboxList = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressTls = exports.ingressRequestAcmeCertificateIssuance = exports.ingressPaths = exports.ingressListForProject = exports.ingressListAccessible = exports.ingressDelete = exports.ingressGetSpecific = exports.ingressCreate = exports.fileGetFile = exports.fileGetFileTypeRules = exports.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainResendDomainEmail = exports.domainListDomains = void 0;
|
|
7
|
+
exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateLegacyTariffChange = exports.redirectusCreateRelocation = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = void 0;
|
|
8
|
+
exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = void 0;
|
|
9
9
|
/** execute a runtime concerning action on a specific `AppInstallation` */
|
|
10
10
|
exports.appExecuteAction = {
|
|
11
11
|
path: "/v2/appinstallations/{appInstallationId}/actions/{action}",
|
|
@@ -894,6 +894,12 @@ exports.domainVerifyDomainOwnership = {
|
|
|
894
894
|
method: "POST",
|
|
895
895
|
operationId: "domain-verify-domain-ownership",
|
|
896
896
|
};
|
|
897
|
+
/** List all supported top level domains. */
|
|
898
|
+
exports.domainGetSupportedTlds = {
|
|
899
|
+
path: "/v2/domains/supported-tlds",
|
|
900
|
+
method: "GET",
|
|
901
|
+
operationId: "domain-get-supported-tlds",
|
|
902
|
+
};
|
|
897
903
|
/** List all domain ownerships of a project. */
|
|
898
904
|
exports.domainListDomainOwnerships = {
|
|
899
905
|
path: "/v2/projects/{projectId}/domain-ownerships",
|
|
@@ -1794,9 +1800,3 @@ exports.userVerifyRegistration = {
|
|
|
1794
1800
|
method: "POST",
|
|
1795
1801
|
operationId: "user-verify-registration",
|
|
1796
1802
|
};
|
|
1797
|
-
/** List all supported top level domains. */
|
|
1798
|
-
exports.domainGetSupportedTlds = {
|
|
1799
|
-
path: "/v2/domains/supported-tlds",
|
|
1800
|
-
method: "GET",
|
|
1801
|
-
operationId: "domain-get-supported-tlds",
|
|
1802
|
-
};
|
|
@@ -594,6 +594,10 @@ export declare module MittwaldAPIV2 {
|
|
|
594
594
|
type RequestData = InferredRequestData<typeof descriptors.domainVerifyDomainOwnership>;
|
|
595
595
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainVerifyDomainOwnership, TStatus>;
|
|
596
596
|
}
|
|
597
|
+
namespace DomainGetSupportedTlds {
|
|
598
|
+
type RequestData = InferredRequestData<typeof descriptors.domainGetSupportedTlds>;
|
|
599
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetSupportedTlds, TStatus>;
|
|
600
|
+
}
|
|
597
601
|
namespace DomainListDomainOwnerships {
|
|
598
602
|
type RequestData = InferredRequestData<typeof descriptors.domainListDomainOwnerships>;
|
|
599
603
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomainOwnerships, TStatus>;
|
|
@@ -1194,10 +1198,6 @@ export declare module MittwaldAPIV2 {
|
|
|
1194
1198
|
type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
|
|
1195
1199
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
|
|
1196
1200
|
}
|
|
1197
|
-
namespace DomainGetSupportedTlds {
|
|
1198
|
-
type RequestData = InferredRequestData<typeof descriptors.domainGetSupportedTlds>;
|
|
1199
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetSupportedTlds, TStatus>;
|
|
1200
|
-
}
|
|
1201
1201
|
}
|
|
1202
1202
|
namespace Components {
|
|
1203
1203
|
namespace Schemas {
|
|
@@ -2068,8 +2068,6 @@ export declare module MittwaldAPIV2 {
|
|
|
2068
2068
|
interface DomainTopLevel {
|
|
2069
2069
|
rgpDays: number;
|
|
2070
2070
|
tld: string;
|
|
2071
|
-
transitAllowed: boolean;
|
|
2072
|
-
type: "unknown" | "countryCode" | "generic" | "newGeneric" | "centralNic" | "other";
|
|
2073
2071
|
}
|
|
2074
2072
|
interface FileFileMeta {
|
|
2075
2073
|
friendlyURL: string;
|
|
@@ -2229,6 +2227,11 @@ export declare module MittwaldAPIV2 {
|
|
|
2229
2227
|
status?: MittwaldAPIV2.Components.Schemas.InvoiceInvoiceSettingsStatus[];
|
|
2230
2228
|
targetDay?: number;
|
|
2231
2229
|
}
|
|
2230
|
+
interface InvoiceInvoiceSettingsStatus {
|
|
2231
|
+
message: string;
|
|
2232
|
+
severity: "success" | "info" | "warning" | "error";
|
|
2233
|
+
statusType?: "returnDebitNote";
|
|
2234
|
+
}
|
|
2232
2235
|
interface InvoicePaymentSettingsDebit {
|
|
2233
2236
|
accountHolder: string;
|
|
2234
2237
|
/**
|
|
@@ -2967,11 +2970,6 @@ export declare module MittwaldAPIV2 {
|
|
|
2967
2970
|
name: string;
|
|
2968
2971
|
value: string;
|
|
2969
2972
|
}
|
|
2970
|
-
interface InvoiceInvoiceSettingsStatus {
|
|
2971
|
-
message: string;
|
|
2972
|
-
severity: "success" | "info" | "warning" | "error";
|
|
2973
|
-
statusType?: "returnDebitNote";
|
|
2974
|
-
}
|
|
2975
2973
|
interface CommonsAddress {
|
|
2976
2974
|
street: string;
|
|
2977
2975
|
houseNumber: string;
|
|
@@ -8873,6 +8871,29 @@ export declare module MittwaldAPIV2 {
|
|
|
8873
8871
|
}
|
|
8874
8872
|
}
|
|
8875
8873
|
}
|
|
8874
|
+
namespace V2DomainsSupportedTlds {
|
|
8875
|
+
namespace Get {
|
|
8876
|
+
namespace Parameters {
|
|
8877
|
+
type Path = {};
|
|
8878
|
+
type Header = {};
|
|
8879
|
+
type Query = {};
|
|
8880
|
+
}
|
|
8881
|
+
namespace Responses {
|
|
8882
|
+
namespace $200 {
|
|
8883
|
+
namespace Content {
|
|
8884
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel[];
|
|
8885
|
+
}
|
|
8886
|
+
}
|
|
8887
|
+
namespace Default {
|
|
8888
|
+
namespace Content {
|
|
8889
|
+
interface ApplicationJson {
|
|
8890
|
+
[k: string]: unknown;
|
|
8891
|
+
}
|
|
8892
|
+
}
|
|
8893
|
+
}
|
|
8894
|
+
}
|
|
8895
|
+
}
|
|
8896
|
+
}
|
|
8876
8897
|
namespace V2ProjectsProjectIdDomainOwnerships {
|
|
8877
8898
|
namespace Get {
|
|
8878
8899
|
namespace Parameters {
|
|
@@ -14530,28 +14551,5 @@ export declare module MittwaldAPIV2 {
|
|
|
14530
14551
|
}
|
|
14531
14552
|
}
|
|
14532
14553
|
}
|
|
14533
|
-
namespace V2DomainsSupportedTlds {
|
|
14534
|
-
namespace Get {
|
|
14535
|
-
namespace Parameters {
|
|
14536
|
-
type Path = {};
|
|
14537
|
-
type Header = {};
|
|
14538
|
-
type Query = {};
|
|
14539
|
-
}
|
|
14540
|
-
namespace Responses {
|
|
14541
|
-
namespace $200 {
|
|
14542
|
-
namespace Content {
|
|
14543
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel[];
|
|
14544
|
-
}
|
|
14545
|
-
}
|
|
14546
|
-
namespace Default {
|
|
14547
|
-
namespace Content {
|
|
14548
|
-
interface ApplicationJson {
|
|
14549
|
-
[k: string]: unknown;
|
|
14550
|
-
}
|
|
14551
|
-
}
|
|
14552
|
-
}
|
|
14553
|
-
}
|
|
14554
|
-
}
|
|
14555
|
-
}
|
|
14556
14554
|
}
|
|
14557
14555
|
}
|
|
@@ -1100,6 +1100,12 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1100
1100
|
projectId: string;
|
|
1101
1101
|
txtRecord: string;
|
|
1102
1102
|
}>;
|
|
1103
|
+
/** List all supported top level domains. */
|
|
1104
|
+
getSupportedTlds: (conf?: {
|
|
1105
|
+
headers?: {
|
|
1106
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1107
|
+
} | undefined;
|
|
1108
|
+
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
|
|
1103
1109
|
/** List all domain ownerships of a project. */
|
|
1104
1110
|
listDomainOwnerships: (conf: {
|
|
1105
1111
|
projectId: string;
|
|
@@ -1157,12 +1163,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1157
1163
|
"x-access-token"?: string | undefined;
|
|
1158
1164
|
} | undefined;
|
|
1159
1165
|
}) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
|
|
1160
|
-
/** List all supported top level domains. */
|
|
1161
|
-
getSupportedTlds: (conf?: {
|
|
1162
|
-
headers?: {
|
|
1163
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1164
|
-
} | undefined;
|
|
1165
|
-
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
|
|
1166
1166
|
};
|
|
1167
1167
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1168
1168
|
/** Get a File's meta. */
|
|
@@ -158,6 +158,8 @@ const buildDomainApi = (baseClient) => ({
|
|
|
158
158
|
getScreenshotForDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetScreenshotForDomain, baseClient.domain.getScreenshotForDomain).getApiResource,
|
|
159
159
|
/** Get a domain ownership. */
|
|
160
160
|
getSpecificDomainOwnership: new ApiCallAsyncResourceFactory(descriptors.domainGetSpecificDomainOwnership, baseClient.domain.getSpecificDomainOwnership).getApiResource,
|
|
161
|
+
/** List all supported top level domains. */
|
|
162
|
+
getSupportedTlds: new ApiCallAsyncResourceFactory(descriptors.domainGetSupportedTlds, baseClient.domain.getSupportedTlds).getApiResource,
|
|
161
163
|
/** List all domain ownerships of a project. */
|
|
162
164
|
listDomainOwnerships: new ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
|
|
163
165
|
/** List Domains belonging to a Project. */
|
|
@@ -168,8 +170,6 @@ const buildDomainApi = (baseClient) => ({
|
|
|
168
170
|
ingressListAccessible: new ApiCallAsyncResourceFactory(descriptors.ingressListAccessible, baseClient.domain.ingressListAccessible).getApiResource,
|
|
169
171
|
/** List Ingresses belonging to a project. */
|
|
170
172
|
ingressListForProject: new ApiCallAsyncResourceFactory(descriptors.ingressListForProject, baseClient.domain.ingressListForProject).getApiResource,
|
|
171
|
-
/** List all supported top level domains. */
|
|
172
|
-
getSupportedTlds: new ApiCallAsyncResourceFactory(descriptors.domainGetSupportedTlds, baseClient.domain.getSupportedTlds).getApiResource,
|
|
173
173
|
});
|
|
174
174
|
const buildFileApi = (baseClient) => ({
|
|
175
175
|
/** Get a File's meta. */
|
|
@@ -5680,6 +5680,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5680
5680
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5681
5681
|
[x: string]: unknown;
|
|
5682
5682
|
}, 404, "application/json">>>;
|
|
5683
|
+
/** List all supported top level domains. */
|
|
5684
|
+
getSupportedTlds: (request?: {
|
|
5685
|
+
headers?: {
|
|
5686
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5687
|
+
} | undefined;
|
|
5688
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5689
|
+
headers?: Partial<{
|
|
5690
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5691
|
+
}> | undefined;
|
|
5692
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[], 200, "application/json">>>;
|
|
5683
5693
|
/** List all domain ownerships of a project. */
|
|
5684
5694
|
listDomainOwnerships: (request: {
|
|
5685
5695
|
projectId: string;
|
|
@@ -6007,16 +6017,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6007
6017
|
}, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6008
6018
|
[x: string]: unknown;
|
|
6009
6019
|
}, 404, "application/json">>>;
|
|
6010
|
-
/** List all supported top level domains. */
|
|
6011
|
-
getSupportedTlds: (request?: {
|
|
6012
|
-
headers?: {
|
|
6013
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6014
|
-
} | undefined;
|
|
6015
|
-
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6016
|
-
headers?: Partial<{
|
|
6017
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6018
|
-
}> | undefined;
|
|
6019
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[], 200, "application/json">>>;
|
|
6020
6020
|
};
|
|
6021
6021
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
6022
6022
|
readonly file: {
|
|
@@ -363,6 +363,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
363
363
|
getSpecificDomainOwnership: this.requestFunctionFactory(descriptors.domainGetSpecificDomainOwnership),
|
|
364
364
|
/** Verify a domain ownership. */
|
|
365
365
|
verifyDomainOwnership: this.requestFunctionFactory(descriptors.domainVerifyDomainOwnership),
|
|
366
|
+
/** List all supported top level domains. */
|
|
367
|
+
getSupportedTlds: this.requestFunctionFactory(descriptors.domainGetSupportedTlds),
|
|
366
368
|
/** List all domain ownerships of a project. */
|
|
367
369
|
listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
|
|
368
370
|
/** List Domains belonging to a Project. */
|
|
@@ -385,8 +387,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
385
387
|
ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
|
|
386
388
|
/** Update an Ingresses tls settings. */
|
|
387
389
|
ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
|
|
388
|
-
/** List all supported top level domains. */
|
|
389
|
-
getSupportedTlds: this.requestFunctionFactory(descriptors.domainGetSupportedTlds),
|
|
390
390
|
};
|
|
391
391
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
392
392
|
file = {
|
|
@@ -299,6 +299,8 @@ export declare const domainGetScreenshotForDomain: OpenAPIOperation<RequestType<
|
|
|
299
299
|
export declare const domainGetSpecificDomainOwnership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
300
300
|
/** Verify a domain ownership. */
|
|
301
301
|
export declare const domainVerifyDomainOwnership: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
302
|
+
/** List all supported top level domains. */
|
|
303
|
+
export declare const domainGetSupportedTlds: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
302
304
|
/** List all domain ownerships of a project. */
|
|
303
305
|
export declare const domainListDomainOwnerships: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
304
306
|
/** List Domains belonging to a Project. */
|
|
@@ -599,5 +601,3 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
|
|
|
599
601
|
export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
600
602
|
/** Verify your registration. */
|
|
601
603
|
export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
602
|
-
/** List all supported top level domains. */
|
|
603
|
-
export declare const domainGetSupportedTlds: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -886,6 +886,12 @@ export const domainVerifyDomainOwnership = {
|
|
|
886
886
|
method: "POST",
|
|
887
887
|
operationId: "domain-verify-domain-ownership",
|
|
888
888
|
};
|
|
889
|
+
/** List all supported top level domains. */
|
|
890
|
+
export const domainGetSupportedTlds = {
|
|
891
|
+
path: "/v2/domains/supported-tlds",
|
|
892
|
+
method: "GET",
|
|
893
|
+
operationId: "domain-get-supported-tlds",
|
|
894
|
+
};
|
|
889
895
|
/** List all domain ownerships of a project. */
|
|
890
896
|
export const domainListDomainOwnerships = {
|
|
891
897
|
path: "/v2/projects/{projectId}/domain-ownerships",
|
|
@@ -1786,9 +1792,3 @@ export const userVerifyRegistration = {
|
|
|
1786
1792
|
method: "POST",
|
|
1787
1793
|
operationId: "user-verify-registration",
|
|
1788
1794
|
};
|
|
1789
|
-
/** List all supported top level domains. */
|
|
1790
|
-
export const domainGetSupportedTlds = {
|
|
1791
|
-
path: "/v2/domains/supported-tlds",
|
|
1792
|
-
method: "GET",
|
|
1793
|
-
operationId: "domain-get-supported-tlds",
|
|
1794
|
-
};
|
|
@@ -594,6 +594,10 @@ export declare module MittwaldAPIV2 {
|
|
|
594
594
|
type RequestData = InferredRequestData<typeof descriptors.domainVerifyDomainOwnership>;
|
|
595
595
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainVerifyDomainOwnership, TStatus>;
|
|
596
596
|
}
|
|
597
|
+
namespace DomainGetSupportedTlds {
|
|
598
|
+
type RequestData = InferredRequestData<typeof descriptors.domainGetSupportedTlds>;
|
|
599
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetSupportedTlds, TStatus>;
|
|
600
|
+
}
|
|
597
601
|
namespace DomainListDomainOwnerships {
|
|
598
602
|
type RequestData = InferredRequestData<typeof descriptors.domainListDomainOwnerships>;
|
|
599
603
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomainOwnerships, TStatus>;
|
|
@@ -1194,10 +1198,6 @@ export declare module MittwaldAPIV2 {
|
|
|
1194
1198
|
type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
|
|
1195
1199
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
|
|
1196
1200
|
}
|
|
1197
|
-
namespace DomainGetSupportedTlds {
|
|
1198
|
-
type RequestData = InferredRequestData<typeof descriptors.domainGetSupportedTlds>;
|
|
1199
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetSupportedTlds, TStatus>;
|
|
1200
|
-
}
|
|
1201
1201
|
}
|
|
1202
1202
|
namespace Components {
|
|
1203
1203
|
namespace Schemas {
|
|
@@ -2068,8 +2068,6 @@ export declare module MittwaldAPIV2 {
|
|
|
2068
2068
|
interface DomainTopLevel {
|
|
2069
2069
|
rgpDays: number;
|
|
2070
2070
|
tld: string;
|
|
2071
|
-
transitAllowed: boolean;
|
|
2072
|
-
type: "unknown" | "countryCode" | "generic" | "newGeneric" | "centralNic" | "other";
|
|
2073
2071
|
}
|
|
2074
2072
|
interface FileFileMeta {
|
|
2075
2073
|
friendlyURL: string;
|
|
@@ -2229,6 +2227,11 @@ export declare module MittwaldAPIV2 {
|
|
|
2229
2227
|
status?: MittwaldAPIV2.Components.Schemas.InvoiceInvoiceSettingsStatus[];
|
|
2230
2228
|
targetDay?: number;
|
|
2231
2229
|
}
|
|
2230
|
+
interface InvoiceInvoiceSettingsStatus {
|
|
2231
|
+
message: string;
|
|
2232
|
+
severity: "success" | "info" | "warning" | "error";
|
|
2233
|
+
statusType?: "returnDebitNote";
|
|
2234
|
+
}
|
|
2232
2235
|
interface InvoicePaymentSettingsDebit {
|
|
2233
2236
|
accountHolder: string;
|
|
2234
2237
|
/**
|
|
@@ -2967,11 +2970,6 @@ export declare module MittwaldAPIV2 {
|
|
|
2967
2970
|
name: string;
|
|
2968
2971
|
value: string;
|
|
2969
2972
|
}
|
|
2970
|
-
interface InvoiceInvoiceSettingsStatus {
|
|
2971
|
-
message: string;
|
|
2972
|
-
severity: "success" | "info" | "warning" | "error";
|
|
2973
|
-
statusType?: "returnDebitNote";
|
|
2974
|
-
}
|
|
2975
2973
|
interface CommonsAddress {
|
|
2976
2974
|
street: string;
|
|
2977
2975
|
houseNumber: string;
|
|
@@ -8873,6 +8871,29 @@ export declare module MittwaldAPIV2 {
|
|
|
8873
8871
|
}
|
|
8874
8872
|
}
|
|
8875
8873
|
}
|
|
8874
|
+
namespace V2DomainsSupportedTlds {
|
|
8875
|
+
namespace Get {
|
|
8876
|
+
namespace Parameters {
|
|
8877
|
+
type Path = {};
|
|
8878
|
+
type Header = {};
|
|
8879
|
+
type Query = {};
|
|
8880
|
+
}
|
|
8881
|
+
namespace Responses {
|
|
8882
|
+
namespace $200 {
|
|
8883
|
+
namespace Content {
|
|
8884
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel[];
|
|
8885
|
+
}
|
|
8886
|
+
}
|
|
8887
|
+
namespace Default {
|
|
8888
|
+
namespace Content {
|
|
8889
|
+
interface ApplicationJson {
|
|
8890
|
+
[k: string]: unknown;
|
|
8891
|
+
}
|
|
8892
|
+
}
|
|
8893
|
+
}
|
|
8894
|
+
}
|
|
8895
|
+
}
|
|
8896
|
+
}
|
|
8876
8897
|
namespace V2ProjectsProjectIdDomainOwnerships {
|
|
8877
8898
|
namespace Get {
|
|
8878
8899
|
namespace Parameters {
|
|
@@ -14530,28 +14551,5 @@ export declare module MittwaldAPIV2 {
|
|
|
14530
14551
|
}
|
|
14531
14552
|
}
|
|
14532
14553
|
}
|
|
14533
|
-
namespace V2DomainsSupportedTlds {
|
|
14534
|
-
namespace Get {
|
|
14535
|
-
namespace Parameters {
|
|
14536
|
-
type Path = {};
|
|
14537
|
-
type Header = {};
|
|
14538
|
-
type Query = {};
|
|
14539
|
-
}
|
|
14540
|
-
namespace Responses {
|
|
14541
|
-
namespace $200 {
|
|
14542
|
-
namespace Content {
|
|
14543
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel[];
|
|
14544
|
-
}
|
|
14545
|
-
}
|
|
14546
|
-
namespace Default {
|
|
14547
|
-
namespace Content {
|
|
14548
|
-
interface ApplicationJson {
|
|
14549
|
-
[k: string]: unknown;
|
|
14550
|
-
}
|
|
14551
|
-
}
|
|
14552
|
-
}
|
|
14553
|
-
}
|
|
14554
|
-
}
|
|
14555
|
-
}
|
|
14556
14554
|
}
|
|
14557
14555
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '3.0.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '3.0.15';
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '3.0.
|
|
1
|
+
export const MittwaldAPIClientVersion = '3.0.15';
|