@mittwald/api-client
Advanced tools
@@ -9,3 +9,3 @@ import { ApiCallAsyncResourceFactory } from "@mittwald/api-client-commons/react"; | ||
| customerGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetKey, baseClient.aiHosting.customerGetKey).getApiResource, | ||
| /** Get ai hosting tariff and usages of a customer. */ | ||
| /** Get ai hosting plan and usages of a customer. */ | ||
| customerGetUsage: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetUsage, baseClient.aiHosting.customerGetUsage).getApiResource, | ||
@@ -18,3 +18,3 @@ /** Get a list of currently active models. */ | ||
| projectGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetKey, baseClient.aiHosting.projectGetKey).getApiResource, | ||
| /** Get ai hosting tariff and usages of a project. Same as the customer route, but less details. */ | ||
| /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */ | ||
| projectGetUsage: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetUsage, baseClient.aiHosting.projectGetUsage).getApiResource, | ||
@@ -70,3 +70,3 @@ }); | ||
| /** List database dump's for a ProjectBackup. */ | ||
| getProjectBackupDatabaseDumps: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumps, baseClient.backup.getProjectBackupDatabaseDumps).getApiResource, | ||
| getProjectBackupDatabaseDumpsV2Experimental: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, baseClient.backup.getProjectBackupDatabaseDumpsV2Experimental).getApiResource, | ||
| /** List paths for a ProjectBackup. */ | ||
@@ -138,2 +138,4 @@ getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource, | ||
| orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource, | ||
| /** Return the Contract for the given License. */ | ||
| getDetailOfContractByLicense: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLicense, baseClient.contract.getDetailOfContractByLicense).getApiResource, | ||
| }); | ||
@@ -157,2 +159,4 @@ const buildMarketplaceApi = (baseClient) => ({ | ||
| contributorReceiptGetFileAccessToken: new ApiCallAsyncResourceFactory(descriptors.contributorReceiptGetFileAccessToken, baseClient.marketplace.contributorReceiptGetFileAccessToken).getApiResource, | ||
| /** Check if an Extension is unchargable for this specific context or if it must be charged. */ | ||
| extensionCheckExtensionIsChargable: new ApiCallAsyncResourceFactory(descriptors.extensionCheckExtensionIsChargable, baseClient.marketplace.extensionCheckExtensionIsChargable).getApiResource, | ||
| /** List ExtensionInstances. */ | ||
@@ -329,2 +333,8 @@ extensionListExtensionInstances: new ApiCallAsyncResourceFactory(descriptors.extensionListExtensionInstances, baseClient.marketplace.extensionListExtensionInstances).getApiResource, | ||
| }); | ||
| const buildLicenseApi = (baseClient) => ({ | ||
| /** Get a license. */ | ||
| getLicense: new ApiCallAsyncResourceFactory(descriptors.licenseGetLicense, baseClient.license.getLicense).getApiResource, | ||
| /** List Licenses belonging to a Project. */ | ||
| listLicensesForProject: new ApiCallAsyncResourceFactory(descriptors.licenseListLicensesForProject, baseClient.license.listLicensesForProject).getApiResource, | ||
| }); | ||
| const buildMailApi = (baseClient) => ({ | ||
@@ -350,2 +360,6 @@ /** List DeliveryBoxes belonging to a Project. */ | ||
| }); | ||
| const buildMiscApi = (baseClient) => ({ | ||
| /** List valid time zones. */ | ||
| ellaneousListTimeZones: new ApiCallAsyncResourceFactory(descriptors.miscellaneousListTimeZones, baseClient.misc.ellaneousListTimeZones).getApiResource, | ||
| }); | ||
| const buildNotificationApi = (baseClient) => ({ | ||
@@ -386,4 +400,2 @@ /** Getting the subscription status of the subscription. */ | ||
| getPersonalizedSettings: new ApiCallAsyncResourceFactory(descriptors.userGetPersonalizedSettings, baseClient.user.getPersonalizedSettings).getApiResource, | ||
| /** Get poll settings for the specified user. */ | ||
| getPollStatus: new ApiCallAsyncResourceFactory(descriptors.userGetPollStatus, baseClient.user.getPollStatus).getApiResource, | ||
| /** Get a specific session. */ | ||
@@ -483,4 +495,8 @@ getSession: new ApiCallAsyncResourceFactory(descriptors.userGetSession, baseClient.user.getSession).getApiResource, | ||
| leadFyndr; | ||
| /** The license API allows you to manage your paid licenses. */ | ||
| license; | ||
| /** The mail API allows you to manage your mail accounts. */ | ||
| mail; | ||
| /** API endpoints that are not related to any specific API domain */ | ||
| misc; | ||
| /** The notification API allows you to manage your notifications. */ | ||
@@ -513,3 +529,5 @@ notification; | ||
| this.leadFyndr = buildLeadFyndrApi(baseClient); | ||
| this.license = buildLicenseApi(baseClient); | ||
| this.mail = buildMailApi(baseClient); | ||
| this.misc = buildMiscApi(baseClient); | ||
| this.notification = buildNotificationApi(baseClient); | ||
@@ -516,0 +534,0 @@ this.pageInsights = buildPageInsightsApi(baseClient); |
@@ -1,1 +0,1 @@ | ||
| export const MittwaldAPIClientVersion = '0.0.0-development-537dd9e-20260105'; | ||
| export const MittwaldAPIClientVersion = '4.306.0'; |
@@ -1,1 +0,1 @@ | ||
| export declare const MittwaldAPIClientVersion = '0.0.0-development-537dd9e-20260105'; | ||
| export declare const MittwaldAPIClientVersion = '4.306.0'; |
+4
-4
| { | ||
| "name": "@mittwald/api-client", | ||
| "version": "0.0.0-development-1011833-20260105", | ||
| "version": "0.0.0-development-137cd36-20260225", | ||
| "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>", | ||
@@ -49,7 +49,7 @@ "type": "module", | ||
| "dependencies": { | ||
| "@mittwald/api-client-commons": "^0.0.0-development-1011833-20260105", | ||
| "@mittwald/api-client-commons": "^0.0.0-development-137cd36-20260225", | ||
| "browser-or-node": "^3.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@mittwald/api-code-generator": "^0.0.0-development-1011833-20260105", | ||
| "@mittwald/api-code-generator": "^0.0.0-development-137cd36-20260225", | ||
| "@mittwald/react-use-promise": "^2.6.2", | ||
@@ -84,3 +84,3 @@ "@types/node": "^22.18.11", | ||
| }, | ||
| "gitHead": "98536bffeb70f410b78ed6b70619e6ffb92954bc" | ||
| "gitHead": "f4197b034529b080888a78afca2e60e0ebb03d43" | ||
| } |
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
Sorry, the diff of this file is too big to display
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
3664217
1.49%70171
1.37%