@mittwald/api-client
Advanced tools
Comparing version 4.64.2 to 4.65.0
@@ -55,2 +55,4 @@ import { ApiCallAsyncResourceFactory } from "@mittwald/api-client-commons/react"; | ||
getBaseItemOfContract: new ApiCallAsyncResourceFactory(descriptors.contractGetBaseItemOfContract, baseClient.contract.getBaseItemOfContract).getApiResource, | ||
/** Return the Contract for the given Certificate. */ | ||
getDetailOfContractByCertificate: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByCertificate, baseClient.contract.getDetailOfContractByCertificate).getApiResource, | ||
/** Return the Contract for the given Domain. */ | ||
@@ -118,2 +120,4 @@ getDetailOfContractByDomain: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByDomain, baseClient.contract.getDetailOfContractByDomain).getApiResource, | ||
listCustomers: new ApiCallAsyncResourceFactory(descriptors.customerListCustomers, baseClient.customer.listCustomers).getApiResource, | ||
/** Gets the Wallet of the Customer. */ | ||
getWallet: new ApiCallAsyncResourceFactory(descriptors.customerGetWallet, baseClient.customer.getWallet).getApiResource, | ||
/** Get a CustomerInvite. */ | ||
@@ -181,2 +185,10 @@ getCustomerInvite: new ApiCallAsyncResourceFactory(descriptors.customerGetCustomerInvite, baseClient.customer.getCustomerInvite).getApiResource, | ||
ingressGetIngress: new ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource, | ||
/** List CertificateRequests belonging to a Project or an Ingress. */ | ||
sslListCertificateRequests: new ApiCallAsyncResourceFactory(descriptors.sslListCertificateRequests, baseClient.domain.sslListCertificateRequests).getApiResource, | ||
/** Get a CertificateRequest. */ | ||
sslGetCertificateRequest: new ApiCallAsyncResourceFactory(descriptors.sslGetCertificateRequest, baseClient.domain.sslGetCertificateRequest).getApiResource, | ||
/** Get a Certificate. */ | ||
sslGetCertificate: new ApiCallAsyncResourceFactory(descriptors.sslGetCertificate, baseClient.domain.sslGetCertificate).getApiResource, | ||
/** List Certificates belonging to a Project or an Ingress. */ | ||
sslListCertificates: new ApiCallAsyncResourceFactory(descriptors.sslListCertificates, baseClient.domain.sslListCertificates).getApiResource, | ||
}); | ||
@@ -208,3 +220,3 @@ const buildMarketplaceApi = (baseClient) => ({ | ||
getFile: new ApiCallAsyncResourceFactory(descriptors.fileGetFile, baseClient.file.getFile).getApiResource, | ||
/** Get a File. */ | ||
/** Get a File with user-friendly url. */ | ||
getFileWithName: new ApiCallAsyncResourceFactory(descriptors.fileGetFileWithName, baseClient.file.getFileWithName).getApiResource, | ||
@@ -211,0 +223,0 @@ }); |
@@ -106,2 +106,4 @@ /* eslint-disable */ | ||
getBaseItemOfContract: this.requestFunctionFactory(descriptors.contractGetBaseItemOfContract), | ||
/** Return the Contract for the given Certificate. */ | ||
getDetailOfContractByCertificate: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByCertificate), | ||
/** Return the Contract for the given Domain. */ | ||
@@ -247,2 +249,8 @@ getDetailOfContractByDomain: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByDomain), | ||
createCustomer: this.requestFunctionFactory(descriptors.customerCreateCustomer), | ||
/** Lets us know your idea for our recommendation programm. */ | ||
createRecommendationSuggestion: this.requestFunctionFactory(descriptors.customerCreateRecommendationSuggestion), | ||
/** Gets the Wallet of the Customer. */ | ||
getWallet: this.requestFunctionFactory(descriptors.customerGetWallet), | ||
/** Create the Wallet for the Customer. */ | ||
createWallet: this.requestFunctionFactory(descriptors.customerCreateWallet), | ||
/** Decline a CustomerInvite. */ | ||
@@ -411,2 +419,4 @@ declineCustomerInvite: this.requestFunctionFactory(descriptors.customerDeclineCustomerInvite), | ||
ingressIngressVerifyOwnership: this.requestFunctionFactory(descriptors.ingressIngressVerifyOwnership), | ||
/** List Ingresses compatible with a certificate. */ | ||
ingressListIngressesCompatibleWithCertificate: this.requestFunctionFactory(descriptors.ingressListIngressesCompatibleWithCertificate), | ||
/** Update the paths of an Ingress. */ | ||
@@ -418,2 +428,20 @@ ingressUpdateIngressPaths: this.requestFunctionFactory(descriptors.ingressUpdateIngressPaths), | ||
ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls), | ||
/** Check the replacement of a Certificate. */ | ||
sslCheckReplaceCertificate: this.requestFunctionFactory(descriptors.sslCheckReplaceCertificate), | ||
/** List CertificateRequests belonging to a Project or an Ingress. */ | ||
sslListCertificateRequests: this.requestFunctionFactory(descriptors.sslListCertificateRequests), | ||
/** Create a CertificateRequest. */ | ||
sslCreateCertificateRequest: this.requestFunctionFactory(descriptors.sslCreateCertificateRequest), | ||
/** Delete a CertificateRequest. */ | ||
sslDeleteCertificateRequest: this.requestFunctionFactory(descriptors.sslDeleteCertificateRequest), | ||
/** Delete a Certificate. */ | ||
sslDeleteCertificate: this.requestFunctionFactory(descriptors.sslDeleteCertificate), | ||
/** Get a CertificateRequest. */ | ||
sslGetCertificateRequest: this.requestFunctionFactory(descriptors.sslGetCertificateRequest), | ||
/** Get a Certificate. */ | ||
sslGetCertificate: this.requestFunctionFactory(descriptors.sslGetCertificate), | ||
/** Update a Certificate. */ | ||
sslReplaceCertificate: this.requestFunctionFactory(descriptors.sslReplaceCertificate), | ||
/** List Certificates belonging to a Project or an Ingress. */ | ||
sslListCertificates: this.requestFunctionFactory(descriptors.sslListCertificates), | ||
}; | ||
@@ -432,3 +460,3 @@ /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */ | ||
getFile: this.requestFunctionFactory(descriptors.fileGetFile), | ||
/** Get a File. */ | ||
/** Get a File with user-friendly url. */ | ||
getFileWithName: this.requestFunctionFactory(descriptors.fileGetFileWithName), | ||
@@ -680,2 +708,7 @@ }; | ||
}; | ||
/** API endpoints that are not related to any specific API domain */ | ||
misc = { | ||
/** Obtain a service token. */ | ||
servicetokenAuthenticateService: this.requestFunctionFactory(descriptors.servicetokenAuthenticateService), | ||
}; | ||
/** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */ | ||
@@ -682,0 +715,0 @@ sshsftpUser = { |
@@ -1,1 +0,1 @@ | ||
export const MittwaldAPIClientVersion = '4.61.1'; | ||
export const MittwaldAPIClientVersion = '4.64.2'; |
@@ -1,1 +0,1 @@ | ||
export declare const MittwaldAPIClientVersion = '4.61.1'; | ||
export declare const MittwaldAPIClientVersion = '4.64.2'; |
{ | ||
"name": "@mittwald/api-client", | ||
"version": "4.64.2", | ||
"version": "4.65.0", | ||
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>", | ||
@@ -83,3 +83,3 @@ "type": "module", | ||
}, | ||
"gitHead": "83b524bbb8fa2ec3e03f0d4fb1c6378d92d0d430" | ||
"gitHead": "991c4a6462c53d14933b299b1536b19a928ae6cb" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
2489862
48128