@mittwald/api-client 0.0.0-development-5fa3f27-20260129 → 0.0.0-development-2f042ce-20260202
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/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +4 -2
- package/dist/types/generated/v2/client.d.ts +11 -6
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +83 -81
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -802,6 +802,12 @@ export const cronjobGetExecution = {
|
|
|
802
802
|
method: "GET",
|
|
803
803
|
operationId: "cronjob-get-execution",
|
|
804
804
|
};
|
|
805
|
+
/** Update a Cronjob's app installation id. */
|
|
806
|
+
export const cronjobReplaceCronjobAppInstallationId = {
|
|
807
|
+
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
808
|
+
method: "PUT",
|
|
809
|
+
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
810
|
+
};
|
|
805
811
|
/** Accept a CustomerInvite. */
|
|
806
812
|
export const customerAcceptCustomerInvite = {
|
|
807
813
|
path: "/v2/customer-invites/{customerInviteId}/actions/accept",
|
|
@@ -2734,9 +2740,3 @@ export const verificationVerifyCompany = {
|
|
|
2734
2740
|
method: "POST",
|
|
2735
2741
|
operationId: "verification-verify-company",
|
|
2736
2742
|
};
|
|
2737
|
-
/** Update a Cronjob's app installation id. */
|
|
2738
|
-
export const cronjobReplaceCronjobAppInstallationId = {
|
|
2739
|
-
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
2740
|
-
method: "PUT",
|
|
2741
|
-
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
2742
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.292.0';
|
|
@@ -1754,6 +1754,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1754
1754
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
1755
1755
|
isBanned?: boolean | undefined;
|
|
1756
1756
|
isInDefaultOfPayment?: boolean | undefined;
|
|
1757
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
1757
1758
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
1758
1759
|
memberCount: number;
|
|
1759
1760
|
name: string;
|
|
@@ -1986,10 +1987,11 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1986
1987
|
queryParameters?: {
|
|
1987
1988
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1988
1989
|
projectId?: string | undefined;
|
|
1989
|
-
page?: number | undefined;
|
|
1990
|
-
limit?: number | undefined;
|
|
1991
1990
|
domainSearchName?: string | undefined;
|
|
1992
1991
|
contactHash?: string | undefined;
|
|
1992
|
+
limit?: number | undefined;
|
|
1993
|
+
skip?: number | undefined;
|
|
1994
|
+
page?: number | undefined;
|
|
1993
1995
|
} | undefined;
|
|
1994
1996
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainDomain[]>;
|
|
1995
1997
|
/** Get a DNSZone. */
|
|
@@ -14248,6 +14248,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14248
14248
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14249
14249
|
isBanned?: boolean | undefined;
|
|
14250
14250
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14251
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
14251
14252
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14252
14253
|
memberCount: number;
|
|
14253
14254
|
name: string;
|
|
@@ -14292,6 +14293,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14292
14293
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14293
14294
|
isBanned?: boolean | undefined;
|
|
14294
14295
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14296
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
14295
14297
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14296
14298
|
memberCount: number;
|
|
14297
14299
|
name: string;
|
|
@@ -16480,10 +16482,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16480
16482
|
queryParameters?: {
|
|
16481
16483
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16482
16484
|
projectId?: string | undefined;
|
|
16483
|
-
page?: number | undefined;
|
|
16484
|
-
limit?: number | undefined;
|
|
16485
16485
|
domainSearchName?: string | undefined;
|
|
16486
16486
|
contactHash?: string | undefined;
|
|
16487
|
+
limit?: number | undefined;
|
|
16488
|
+
skip?: number | undefined;
|
|
16489
|
+
page?: number | undefined;
|
|
16487
16490
|
} | undefined;
|
|
16488
16491
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16489
16492
|
headers?: Partial<{
|
|
@@ -16492,10 +16495,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16492
16495
|
} & {
|
|
16493
16496
|
queryParameters: {
|
|
16494
16497
|
projectId?: string | undefined;
|
|
16495
|
-
page?: number | undefined;
|
|
16496
|
-
limit?: number | undefined;
|
|
16497
16498
|
domainSearchName?: string | undefined;
|
|
16498
16499
|
contactHash?: string | undefined;
|
|
16500
|
+
limit?: number | undefined;
|
|
16501
|
+
skip?: number | undefined;
|
|
16502
|
+
page?: number | undefined;
|
|
16499
16503
|
} & Partial<{
|
|
16500
16504
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16501
16505
|
}>;
|
|
@@ -16516,10 +16520,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16516
16520
|
} & {
|
|
16517
16521
|
queryParameters: {
|
|
16518
16522
|
projectId?: string | undefined;
|
|
16519
|
-
page?: number | undefined;
|
|
16520
|
-
limit?: number | undefined;
|
|
16521
16523
|
domainSearchName?: string | undefined;
|
|
16522
16524
|
contactHash?: string | undefined;
|
|
16525
|
+
limit?: number | undefined;
|
|
16526
|
+
skip?: number | undefined;
|
|
16527
|
+
page?: number | undefined;
|
|
16523
16528
|
} & Partial<{
|
|
16524
16529
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16525
16530
|
}>;
|
|
@@ -271,6 +271,8 @@ export declare const cronjobUpdateCronjob: OpenAPIOperation<RequestType<Simplify
|
|
|
271
271
|
export declare const cronjobGetExecutionAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
272
272
|
/** Get a CronjobExecution. */
|
|
273
273
|
export declare const cronjobGetExecution: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
274
|
+
/** Update a Cronjob's app installation id. */
|
|
275
|
+
export declare const cronjobReplaceCronjobAppInstallationId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
274
276
|
/** Accept a CustomerInvite. */
|
|
275
277
|
export declare const customerAcceptCustomerInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
276
278
|
/** List Invites belonging to a Customer. */
|
|
@@ -915,5 +917,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
915
917
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
916
918
|
/** Check if a company exists. */
|
|
917
919
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
918
|
-
/** Update a Cronjob's app installation id. */
|
|
919
|
-
export declare const cronjobReplaceCronjobAppInstallationId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -538,6 +538,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
538
538
|
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecution>;
|
|
539
539
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecution, TStatus>;
|
|
540
540
|
}
|
|
541
|
+
namespace CronjobReplaceCronjobAppInstallationId {
|
|
542
|
+
type RequestData = InferredRequestData<typeof descriptors.cronjobReplaceCronjobAppInstallationId>;
|
|
543
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobReplaceCronjobAppInstallationId, TStatus>;
|
|
544
|
+
}
|
|
541
545
|
namespace CustomerAcceptCustomerInvite {
|
|
542
546
|
type RequestData = InferredRequestData<typeof descriptors.customerAcceptCustomerInvite>;
|
|
543
547
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerAcceptCustomerInvite, TStatus>;
|
|
@@ -1826,10 +1830,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1826
1830
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1827
1831
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1828
1832
|
}
|
|
1829
|
-
namespace CronjobReplaceCronjobAppInstallationId {
|
|
1830
|
-
type RequestData = InferredRequestData<typeof descriptors.cronjobReplaceCronjobAppInstallationId>;
|
|
1831
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobReplaceCronjobAppInstallationId, TStatus>;
|
|
1832
|
-
}
|
|
1833
1833
|
}
|
|
1834
1834
|
namespace Components {
|
|
1835
1835
|
namespace Schemas {
|
|
@@ -3114,6 +3114,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3114
3114
|
isAllowedToPlaceOrders?: boolean;
|
|
3115
3115
|
isBanned?: boolean;
|
|
3116
3116
|
isInDefaultOfPayment?: boolean;
|
|
3117
|
+
isMailAddressInvalid?: boolean;
|
|
3117
3118
|
levelOfUndeliverableDunningNotice?: "first" | "second";
|
|
3118
3119
|
memberCount: number;
|
|
3119
3120
|
name: string;
|
|
@@ -4949,6 +4950,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4949
4950
|
reservationLimit: number;
|
|
4950
4951
|
unlockLimit: number;
|
|
4951
4952
|
}
|
|
4953
|
+
type OrderLicenseOrderPreview = {
|
|
4954
|
+
/**
|
|
4955
|
+
* Describe for which typo3 instance the license will be used.
|
|
4956
|
+
*/
|
|
4957
|
+
description?: string;
|
|
4958
|
+
licenseType: "typo3";
|
|
4959
|
+
/**
|
|
4960
|
+
* The major version for which a license should be purchased.
|
|
4961
|
+
*/
|
|
4962
|
+
majorVersion: number;
|
|
4963
|
+
};
|
|
4964
|
+
type OrderLicenseOrder = {
|
|
4965
|
+
/**
|
|
4966
|
+
* Describe for which typo3 instance the license will be used.
|
|
4967
|
+
*/
|
|
4968
|
+
description: string;
|
|
4969
|
+
licenseType: "typo3";
|
|
4970
|
+
/**
|
|
4971
|
+
* The major version for which a license should be purchased.
|
|
4972
|
+
*/
|
|
4973
|
+
majorVersion: number;
|
|
4974
|
+
projectId: string;
|
|
4975
|
+
};
|
|
4952
4976
|
interface OrderMachineTypeSpec {
|
|
4953
4977
|
machineType?: string;
|
|
4954
4978
|
}
|
|
@@ -4998,6 +5022,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4998
5022
|
interface OrderLeadFyndrOrderPreviewResponse {
|
|
4999
5023
|
totalPrice: number;
|
|
5000
5024
|
}
|
|
5025
|
+
interface OrderLicenseOrderPreviewResponse {
|
|
5026
|
+
totalPrice: number;
|
|
5027
|
+
}
|
|
5001
5028
|
interface OrderDomainOrderPreviewResponse {
|
|
5002
5029
|
/**
|
|
5003
5030
|
* Contract duration in months.
|
|
@@ -5762,32 +5789,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5762
5789
|
}
|
|
5763
5790
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5764
5791
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5765
|
-
type OrderLicenseOrderPreview = {
|
|
5766
|
-
/**
|
|
5767
|
-
* Describe for which typo3 instance the license will be used.
|
|
5768
|
-
*/
|
|
5769
|
-
description?: string;
|
|
5770
|
-
licenseType: "typo3";
|
|
5771
|
-
/**
|
|
5772
|
-
* The major version for which a license should be purchased.
|
|
5773
|
-
*/
|
|
5774
|
-
majorVersion: number;
|
|
5775
|
-
};
|
|
5776
|
-
type OrderLicenseOrder = {
|
|
5777
|
-
/**
|
|
5778
|
-
* Describe for which typo3 instance the license will be used.
|
|
5779
|
-
*/
|
|
5780
|
-
description: string;
|
|
5781
|
-
licenseType: "typo3";
|
|
5782
|
-
/**
|
|
5783
|
-
* The major version for which a license should be purchased.
|
|
5784
|
-
*/
|
|
5785
|
-
majorVersion: number;
|
|
5786
|
-
projectId: string;
|
|
5787
|
-
};
|
|
5788
|
-
interface OrderLicenseOrderPreviewResponse {
|
|
5789
|
-
totalPrice: number;
|
|
5790
|
-
}
|
|
5791
5792
|
interface CommonsAddress {
|
|
5792
5793
|
street: string;
|
|
5793
5794
|
houseNumber: string;
|
|
@@ -12932,6 +12933,55 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12932
12933
|
}
|
|
12933
12934
|
}
|
|
12934
12935
|
}
|
|
12936
|
+
namespace V2CronjobsCronjobIdAppInstallationId {
|
|
12937
|
+
namespace Put {
|
|
12938
|
+
namespace Parameters {
|
|
12939
|
+
type Path = {
|
|
12940
|
+
cronjobId: string;
|
|
12941
|
+
};
|
|
12942
|
+
interface RequestBody {
|
|
12943
|
+
appInstallationId: string;
|
|
12944
|
+
}
|
|
12945
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12946
|
+
type Query = {};
|
|
12947
|
+
}
|
|
12948
|
+
namespace Responses {
|
|
12949
|
+
namespace $204 {
|
|
12950
|
+
namespace Content {
|
|
12951
|
+
type Empty = unknown;
|
|
12952
|
+
}
|
|
12953
|
+
}
|
|
12954
|
+
namespace $400 {
|
|
12955
|
+
namespace Content {
|
|
12956
|
+
interface ApplicationJson {
|
|
12957
|
+
[k: string]: unknown;
|
|
12958
|
+
}
|
|
12959
|
+
}
|
|
12960
|
+
}
|
|
12961
|
+
namespace $412 {
|
|
12962
|
+
namespace Content {
|
|
12963
|
+
interface ApplicationJson {
|
|
12964
|
+
[k: string]: unknown;
|
|
12965
|
+
}
|
|
12966
|
+
}
|
|
12967
|
+
}
|
|
12968
|
+
namespace $429 {
|
|
12969
|
+
namespace Content {
|
|
12970
|
+
interface ApplicationJson {
|
|
12971
|
+
[k: string]: unknown;
|
|
12972
|
+
}
|
|
12973
|
+
}
|
|
12974
|
+
}
|
|
12975
|
+
namespace Default {
|
|
12976
|
+
namespace Content {
|
|
12977
|
+
interface ApplicationJson {
|
|
12978
|
+
[k: string]: unknown;
|
|
12979
|
+
}
|
|
12980
|
+
}
|
|
12981
|
+
}
|
|
12982
|
+
}
|
|
12983
|
+
}
|
|
12984
|
+
}
|
|
12935
12985
|
namespace V2CustomerInvitesCustomerInviteIdActionsAccept {
|
|
12936
12986
|
namespace Post {
|
|
12937
12987
|
namespace Parameters {
|
|
@@ -15362,10 +15412,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15362
15412
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15363
15413
|
type Query = {
|
|
15364
15414
|
projectId?: string;
|
|
15365
|
-
page?: number;
|
|
15366
|
-
limit?: number;
|
|
15367
15415
|
domainSearchName?: string;
|
|
15368
15416
|
contactHash?: string;
|
|
15417
|
+
limit?: number;
|
|
15418
|
+
skip?: number;
|
|
15419
|
+
page?: number;
|
|
15369
15420
|
};
|
|
15370
15421
|
}
|
|
15371
15422
|
namespace Responses {
|
|
@@ -29217,54 +29268,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29217
29268
|
}
|
|
29218
29269
|
}
|
|
29219
29270
|
}
|
|
29220
|
-
namespace V2CronjobsCronjobIdAppInstallationId {
|
|
29221
|
-
namespace Put {
|
|
29222
|
-
namespace Parameters {
|
|
29223
|
-
type Path = {
|
|
29224
|
-
cronjobId: string;
|
|
29225
|
-
};
|
|
29226
|
-
interface RequestBody {
|
|
29227
|
-
appInstallationId: string;
|
|
29228
|
-
}
|
|
29229
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29230
|
-
type Query = {};
|
|
29231
|
-
}
|
|
29232
|
-
namespace Responses {
|
|
29233
|
-
namespace $204 {
|
|
29234
|
-
namespace Content {
|
|
29235
|
-
type Empty = unknown;
|
|
29236
|
-
}
|
|
29237
|
-
}
|
|
29238
|
-
namespace $400 {
|
|
29239
|
-
namespace Content {
|
|
29240
|
-
interface ApplicationJson {
|
|
29241
|
-
[k: string]: unknown;
|
|
29242
|
-
}
|
|
29243
|
-
}
|
|
29244
|
-
}
|
|
29245
|
-
namespace $412 {
|
|
29246
|
-
namespace Content {
|
|
29247
|
-
interface ApplicationJson {
|
|
29248
|
-
[k: string]: unknown;
|
|
29249
|
-
}
|
|
29250
|
-
}
|
|
29251
|
-
}
|
|
29252
|
-
namespace $429 {
|
|
29253
|
-
namespace Content {
|
|
29254
|
-
interface ApplicationJson {
|
|
29255
|
-
[k: string]: unknown;
|
|
29256
|
-
}
|
|
29257
|
-
}
|
|
29258
|
-
}
|
|
29259
|
-
namespace Default {
|
|
29260
|
-
namespace Content {
|
|
29261
|
-
interface ApplicationJson {
|
|
29262
|
-
[k: string]: unknown;
|
|
29263
|
-
}
|
|
29264
|
-
}
|
|
29265
|
-
}
|
|
29266
|
-
}
|
|
29267
|
-
}
|
|
29268
|
-
}
|
|
29269
29271
|
}
|
|
29270
29272
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.292.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "0.0.0-development-
|
|
3
|
+
"version": "0.0.0-development-2f042ce-20260202",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^0.0.0-development-
|
|
49
|
+
"@mittwald/api-client-commons": "^0.0.0-development-2f042ce-20260202",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^0.0.0-development-
|
|
53
|
+
"@mittwald/api-code-generator": "^0.0.0-development-2f042ce-20260202",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "d70e106dd76653ca0f02d60ad9f6422d3201bba7"
|
|
84
84
|
}
|