@mittwald/api-client 0.0.0-development-5fa3f27-20260129 → 0.0.0-development-39d23c6-20260203
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/client-react.js +2 -0
- package/dist/esm/generated/v2/client.js +2 -0
- package/dist/esm/generated/v2/descriptors.js +11 -5
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +19 -2
- package/dist/types/generated/v2/client.d.ts +101 -12
- package/dist/types/generated/v2/descriptors.d.ts +4 -2
- package/dist/types/generated/v2/types.d.ts +103 -44
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -132,6 +132,8 @@ const buildContractApi = (baseClient) => ({
|
|
|
132
132
|
orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
|
|
133
133
|
/** Get list of Orders of a Project. */
|
|
134
134
|
orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource,
|
|
135
|
+
/** Return the Contract for the given License. */
|
|
136
|
+
getDetailOfContractByLicense: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLicense, baseClient.contract.getDetailOfContractByLicense).getApiResource,
|
|
135
137
|
});
|
|
136
138
|
const buildMarketplaceApi = (baseClient) => ({
|
|
137
139
|
/** Get a Contributor. */
|
|
@@ -235,6 +235,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
235
235
|
orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
|
|
236
236
|
/** Preview TariffChange. */
|
|
237
237
|
orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
|
|
238
|
+
/** Return the Contract for the given License. */
|
|
239
|
+
getDetailOfContractByLicense: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLicense),
|
|
238
240
|
};
|
|
239
241
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
240
242
|
marketplace = {
|
|
@@ -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,9 @@ export const verificationVerifyCompany = {
|
|
|
2734
2740
|
method: "POST",
|
|
2735
2741
|
operationId: "verification-verify-company",
|
|
2736
2742
|
};
|
|
2737
|
-
/**
|
|
2738
|
-
export const
|
|
2739
|
-
path: "/v2/
|
|
2740
|
-
method: "
|
|
2741
|
-
operationId: "
|
|
2743
|
+
/** Return the Contract for the given License. */
|
|
2744
|
+
export const contractGetDetailOfContractByLicense = {
|
|
2745
|
+
path: "/v2/licenses/{licenseId}/contract",
|
|
2746
|
+
method: "GET",
|
|
2747
|
+
operationId: "contract-get-detail-of-contract-by-license",
|
|
2742
2748
|
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '0.0.0-development-
|
|
1
|
+
export const MittwaldAPIClientVersion = '0.0.0-development-2f042ce-20260202';
|
|
@@ -1023,6 +1023,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1023
1023
|
templateNames?: string[] | undefined;
|
|
1024
1024
|
} | undefined;
|
|
1025
1025
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
1026
|
+
/** Return the Contract for the given License. */
|
|
1027
|
+
getDetailOfContractByLicense: (conf: {
|
|
1028
|
+
licenseId: string;
|
|
1029
|
+
headers?: {
|
|
1030
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1031
|
+
"x-access-token"?: string | undefined;
|
|
1032
|
+
} | undefined;
|
|
1033
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1034
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
1035
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
1036
|
+
contractId: string;
|
|
1037
|
+
contractNumber: string;
|
|
1038
|
+
customerId: string;
|
|
1039
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
1040
|
+
}>;
|
|
1026
1041
|
};
|
|
1027
1042
|
declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1028
1043
|
/** Get a Contributor. */
|
|
@@ -1754,6 +1769,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1754
1769
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
1755
1770
|
isBanned?: boolean | undefined;
|
|
1756
1771
|
isInDefaultOfPayment?: boolean | undefined;
|
|
1772
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
1757
1773
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
1758
1774
|
memberCount: number;
|
|
1759
1775
|
name: string;
|
|
@@ -1986,10 +2002,11 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1986
2002
|
queryParameters?: {
|
|
1987
2003
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1988
2004
|
projectId?: string | undefined;
|
|
1989
|
-
page?: number | undefined;
|
|
1990
|
-
limit?: number | undefined;
|
|
1991
2005
|
domainSearchName?: string | undefined;
|
|
1992
2006
|
contactHash?: string | undefined;
|
|
2007
|
+
limit?: number | undefined;
|
|
2008
|
+
skip?: number | undefined;
|
|
2009
|
+
page?: number | undefined;
|
|
1993
2010
|
} | undefined;
|
|
1994
2011
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainDomain[]>;
|
|
1995
2012
|
/** Get a DNSZone. */
|
|
@@ -7394,6 +7394,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7394
7394
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7395
7395
|
[x: string]: unknown;
|
|
7396
7396
|
}, 429, "application/json">>>;
|
|
7397
|
+
/** Return the Contract for the given License. */
|
|
7398
|
+
getDetailOfContractByLicense: (request: {
|
|
7399
|
+
licenseId: string;
|
|
7400
|
+
headers?: {
|
|
7401
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7402
|
+
"x-access-token"?: string | undefined;
|
|
7403
|
+
} | undefined;
|
|
7404
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7405
|
+
headers?: Partial<{
|
|
7406
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7407
|
+
}>;
|
|
7408
|
+
} & {
|
|
7409
|
+
pathParameters: {
|
|
7410
|
+
licenseId: string;
|
|
7411
|
+
};
|
|
7412
|
+
} & {
|
|
7413
|
+
headers: {
|
|
7414
|
+
"x-access-token"?: string | undefined;
|
|
7415
|
+
} & Partial<{
|
|
7416
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7417
|
+
}>;
|
|
7418
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7419
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
7420
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
7421
|
+
contractId: string;
|
|
7422
|
+
contractNumber: string;
|
|
7423
|
+
customerId: string;
|
|
7424
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
7425
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7426
|
+
[x: string]: unknown;
|
|
7427
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7428
|
+
[x: string]: unknown;
|
|
7429
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7430
|
+
[x: string]: unknown;
|
|
7431
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7432
|
+
headers?: Partial<{
|
|
7433
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7434
|
+
}>;
|
|
7435
|
+
} & {
|
|
7436
|
+
pathParameters: {
|
|
7437
|
+
licenseId: string;
|
|
7438
|
+
};
|
|
7439
|
+
} & {
|
|
7440
|
+
headers: {
|
|
7441
|
+
"x-access-token"?: string | undefined;
|
|
7442
|
+
} & Partial<{
|
|
7443
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7444
|
+
}>;
|
|
7445
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7446
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
7447
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
7448
|
+
contractId: string;
|
|
7449
|
+
contractNumber: string;
|
|
7450
|
+
customerId: string;
|
|
7451
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
7452
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7453
|
+
[x: string]: unknown;
|
|
7454
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7455
|
+
[x: string]: unknown;
|
|
7456
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7457
|
+
[x: string]: unknown;
|
|
7458
|
+
}, 429, "application/json">>>;
|
|
7397
7459
|
};
|
|
7398
7460
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
7399
7461
|
readonly marketplace: {
|
|
@@ -14248,6 +14310,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14248
14310
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14249
14311
|
isBanned?: boolean | undefined;
|
|
14250
14312
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14313
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
14251
14314
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14252
14315
|
memberCount: number;
|
|
14253
14316
|
name: string;
|
|
@@ -14292,6 +14355,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14292
14355
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14293
14356
|
isBanned?: boolean | undefined;
|
|
14294
14357
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14358
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
14295
14359
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14296
14360
|
memberCount: number;
|
|
14297
14361
|
name: string;
|
|
@@ -16480,10 +16544,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16480
16544
|
queryParameters?: {
|
|
16481
16545
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16482
16546
|
projectId?: string | undefined;
|
|
16483
|
-
page?: number | undefined;
|
|
16484
|
-
limit?: number | undefined;
|
|
16485
16547
|
domainSearchName?: string | undefined;
|
|
16486
16548
|
contactHash?: string | undefined;
|
|
16549
|
+
limit?: number | undefined;
|
|
16550
|
+
skip?: number | undefined;
|
|
16551
|
+
page?: number | undefined;
|
|
16487
16552
|
} | undefined;
|
|
16488
16553
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16489
16554
|
headers?: Partial<{
|
|
@@ -16492,10 +16557,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16492
16557
|
} & {
|
|
16493
16558
|
queryParameters: {
|
|
16494
16559
|
projectId?: string | undefined;
|
|
16495
|
-
page?: number | undefined;
|
|
16496
|
-
limit?: number | undefined;
|
|
16497
16560
|
domainSearchName?: string | undefined;
|
|
16498
16561
|
contactHash?: string | undefined;
|
|
16562
|
+
limit?: number | undefined;
|
|
16563
|
+
skip?: number | undefined;
|
|
16564
|
+
page?: number | undefined;
|
|
16499
16565
|
} & Partial<{
|
|
16500
16566
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16501
16567
|
}>;
|
|
@@ -16516,10 +16582,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16516
16582
|
} & {
|
|
16517
16583
|
queryParameters: {
|
|
16518
16584
|
projectId?: string | undefined;
|
|
16519
|
-
page?: number | undefined;
|
|
16520
|
-
limit?: number | undefined;
|
|
16521
16585
|
domainSearchName?: string | undefined;
|
|
16522
16586
|
contactHash?: string | undefined;
|
|
16587
|
+
limit?: number | undefined;
|
|
16588
|
+
skip?: number | undefined;
|
|
16589
|
+
page?: number | undefined;
|
|
16523
16590
|
} & Partial<{
|
|
16524
16591
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16525
16592
|
}>;
|
|
@@ -18417,16 +18484,34 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18417
18484
|
skip?: number | undefined;
|
|
18418
18485
|
page?: number | undefined;
|
|
18419
18486
|
} | undefined;
|
|
18420
|
-
}
|
|
18487
|
+
} | {
|
|
18488
|
+
data: {
|
|
18489
|
+
certificateId: string;
|
|
18490
|
+
};
|
|
18491
|
+
headers?: {
|
|
18492
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18493
|
+
"x-access-token"?: string | undefined;
|
|
18494
|
+
} | undefined;
|
|
18495
|
+
queryParameters?: {
|
|
18496
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
18497
|
+
limit?: number | undefined;
|
|
18498
|
+
skip?: number | undefined;
|
|
18499
|
+
page?: number | undefined;
|
|
18500
|
+
} | undefined;
|
|
18501
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
18421
18502
|
data: {
|
|
18422
18503
|
certificate: string;
|
|
18423
18504
|
projectId: string;
|
|
18424
18505
|
};
|
|
18425
|
-
}
|
|
18506
|
+
} | {
|
|
18507
|
+
data: {
|
|
18508
|
+
certificateId: string;
|
|
18509
|
+
};
|
|
18510
|
+
}) & {
|
|
18426
18511
|
headers?: Partial<{
|
|
18427
18512
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18428
18513
|
}>;
|
|
18429
|
-
} & {
|
|
18514
|
+
}) & {
|
|
18430
18515
|
queryParameters: {
|
|
18431
18516
|
limit?: number | undefined;
|
|
18432
18517
|
skip?: number | undefined;
|
|
@@ -18446,16 +18531,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18446
18531
|
[x: string]: unknown;
|
|
18447
18532
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18448
18533
|
[x: string]: unknown;
|
|
18449
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
18534
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
|
|
18450
18535
|
data: {
|
|
18451
18536
|
certificate: string;
|
|
18452
18537
|
projectId: string;
|
|
18453
18538
|
};
|
|
18454
|
-
}
|
|
18539
|
+
} | {
|
|
18540
|
+
data: {
|
|
18541
|
+
certificateId: string;
|
|
18542
|
+
};
|
|
18543
|
+
}) & {
|
|
18455
18544
|
headers?: Partial<{
|
|
18456
18545
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
18457
18546
|
}>;
|
|
18458
|
-
} & {
|
|
18547
|
+
}) & {
|
|
18459
18548
|
queryParameters: {
|
|
18460
18549
|
limit?: number | undefined;
|
|
18461
18550
|
skip?: number | undefined;
|
|
@@ -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,5 @@ 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
|
-
/**
|
|
919
|
-
export declare const
|
|
920
|
+
/** Return the Contract for the given License. */
|
|
921
|
+
export declare const contractGetDetailOfContractByLicense: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseIdContract.Get.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,9 +1830,9 @@ 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
|
|
1830
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
1831
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
1833
|
+
namespace ContractGetDetailOfContractByLicense {
|
|
1834
|
+
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLicense>;
|
|
1835
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLicense, TStatus>;
|
|
1832
1836
|
}
|
|
1833
1837
|
}
|
|
1834
1838
|
namespace Components {
|
|
@@ -3114,6 +3118,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3114
3118
|
isAllowedToPlaceOrders?: boolean;
|
|
3115
3119
|
isBanned?: boolean;
|
|
3116
3120
|
isInDefaultOfPayment?: boolean;
|
|
3121
|
+
isMailAddressInvalid?: boolean;
|
|
3117
3122
|
levelOfUndeliverableDunningNotice?: "first" | "second";
|
|
3118
3123
|
memberCount: number;
|
|
3119
3124
|
name: string;
|
|
@@ -4949,6 +4954,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4949
4954
|
reservationLimit: number;
|
|
4950
4955
|
unlockLimit: number;
|
|
4951
4956
|
}
|
|
4957
|
+
type OrderLicenseOrderPreview = {
|
|
4958
|
+
/**
|
|
4959
|
+
* Describe for which typo3 instance the license will be used.
|
|
4960
|
+
*/
|
|
4961
|
+
description?: string;
|
|
4962
|
+
licenseType: "typo3";
|
|
4963
|
+
/**
|
|
4964
|
+
* The major version for which a license should be purchased.
|
|
4965
|
+
*/
|
|
4966
|
+
majorVersion: number;
|
|
4967
|
+
};
|
|
4968
|
+
type OrderLicenseOrder = {
|
|
4969
|
+
/**
|
|
4970
|
+
* Describe for which typo3 instance the license will be used.
|
|
4971
|
+
*/
|
|
4972
|
+
description: string;
|
|
4973
|
+
licenseType: "typo3";
|
|
4974
|
+
/**
|
|
4975
|
+
* The major version for which a license should be purchased.
|
|
4976
|
+
*/
|
|
4977
|
+
majorVersion: number;
|
|
4978
|
+
projectId: string;
|
|
4979
|
+
};
|
|
4952
4980
|
interface OrderMachineTypeSpec {
|
|
4953
4981
|
machineType?: string;
|
|
4954
4982
|
}
|
|
@@ -4998,6 +5026,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4998
5026
|
interface OrderLeadFyndrOrderPreviewResponse {
|
|
4999
5027
|
totalPrice: number;
|
|
5000
5028
|
}
|
|
5029
|
+
interface OrderLicenseOrderPreviewResponse {
|
|
5030
|
+
totalPrice: number;
|
|
5031
|
+
}
|
|
5001
5032
|
interface OrderDomainOrderPreviewResponse {
|
|
5002
5033
|
/**
|
|
5003
5034
|
* Contract duration in months.
|
|
@@ -5762,31 +5793,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5762
5793
|
}
|
|
5763
5794
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5764
5795
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5765
|
-
|
|
5796
|
+
interface IngressListIngressesCompatibleWithCertificateRequest {
|
|
5766
5797
|
/**
|
|
5767
|
-
*
|
|
5798
|
+
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
5799
|
+
* .
|
|
5768
5800
|
*/
|
|
5769
|
-
|
|
5770
|
-
licenseType: "typo3";
|
|
5771
|
-
/**
|
|
5772
|
-
* The major version for which a license should be purchased.
|
|
5773
|
-
*/
|
|
5774
|
-
majorVersion: number;
|
|
5775
|
-
};
|
|
5776
|
-
type OrderLicenseOrder = {
|
|
5801
|
+
certificate: string;
|
|
5777
5802
|
/**
|
|
5778
|
-
*
|
|
5803
|
+
* The projects UUID.
|
|
5779
5804
|
*/
|
|
5780
|
-
|
|
5781
|
-
|
|
5805
|
+
projectId: string;
|
|
5806
|
+
}
|
|
5807
|
+
interface IngressListIngressesCompatibleWithCertificateIDRequest {
|
|
5782
5808
|
/**
|
|
5783
|
-
* The
|
|
5809
|
+
* The certificates UUID.
|
|
5784
5810
|
*/
|
|
5785
|
-
|
|
5786
|
-
projectId: string;
|
|
5787
|
-
};
|
|
5788
|
-
interface OrderLicenseOrderPreviewResponse {
|
|
5789
|
-
totalPrice: number;
|
|
5811
|
+
certificateId: string;
|
|
5790
5812
|
}
|
|
5791
5813
|
interface CommonsAddress {
|
|
5792
5814
|
street: string;
|
|
@@ -12932,6 +12954,55 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12932
12954
|
}
|
|
12933
12955
|
}
|
|
12934
12956
|
}
|
|
12957
|
+
namespace V2CronjobsCronjobIdAppInstallationId {
|
|
12958
|
+
namespace Put {
|
|
12959
|
+
namespace Parameters {
|
|
12960
|
+
type Path = {
|
|
12961
|
+
cronjobId: string;
|
|
12962
|
+
};
|
|
12963
|
+
interface RequestBody {
|
|
12964
|
+
appInstallationId: string;
|
|
12965
|
+
}
|
|
12966
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12967
|
+
type Query = {};
|
|
12968
|
+
}
|
|
12969
|
+
namespace Responses {
|
|
12970
|
+
namespace $204 {
|
|
12971
|
+
namespace Content {
|
|
12972
|
+
type Empty = unknown;
|
|
12973
|
+
}
|
|
12974
|
+
}
|
|
12975
|
+
namespace $400 {
|
|
12976
|
+
namespace Content {
|
|
12977
|
+
interface ApplicationJson {
|
|
12978
|
+
[k: string]: unknown;
|
|
12979
|
+
}
|
|
12980
|
+
}
|
|
12981
|
+
}
|
|
12982
|
+
namespace $412 {
|
|
12983
|
+
namespace Content {
|
|
12984
|
+
interface ApplicationJson {
|
|
12985
|
+
[k: string]: unknown;
|
|
12986
|
+
}
|
|
12987
|
+
}
|
|
12988
|
+
}
|
|
12989
|
+
namespace $429 {
|
|
12990
|
+
namespace Content {
|
|
12991
|
+
interface ApplicationJson {
|
|
12992
|
+
[k: string]: unknown;
|
|
12993
|
+
}
|
|
12994
|
+
}
|
|
12995
|
+
}
|
|
12996
|
+
namespace Default {
|
|
12997
|
+
namespace Content {
|
|
12998
|
+
interface ApplicationJson {
|
|
12999
|
+
[k: string]: unknown;
|
|
13000
|
+
}
|
|
13001
|
+
}
|
|
13002
|
+
}
|
|
13003
|
+
}
|
|
13004
|
+
}
|
|
13005
|
+
}
|
|
12935
13006
|
namespace V2CustomerInvitesCustomerInviteIdActionsAccept {
|
|
12936
13007
|
namespace Post {
|
|
12937
13008
|
namespace Parameters {
|
|
@@ -15362,10 +15433,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
15362
15433
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
15363
15434
|
type Query = {
|
|
15364
15435
|
projectId?: string;
|
|
15365
|
-
page?: number;
|
|
15366
|
-
limit?: number;
|
|
15367
15436
|
domainSearchName?: string;
|
|
15368
15437
|
contactHash?: string;
|
|
15438
|
+
limit?: number;
|
|
15439
|
+
skip?: number;
|
|
15440
|
+
page?: number;
|
|
15369
15441
|
};
|
|
15370
15442
|
}
|
|
15371
15443
|
namespace Responses {
|
|
@@ -20062,17 +20134,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20062
20134
|
namespace Post {
|
|
20063
20135
|
namespace Parameters {
|
|
20064
20136
|
type Path = {};
|
|
20065
|
-
|
|
20066
|
-
/**
|
|
20067
|
-
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
20068
|
-
* .
|
|
20069
|
-
*/
|
|
20070
|
-
certificate: string;
|
|
20071
|
-
/**
|
|
20072
|
-
* The projects UUID.
|
|
20073
|
-
*/
|
|
20074
|
-
projectId: string;
|
|
20075
|
-
}
|
|
20137
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.IngressListIngressesCompatibleWithCertificateRequest | MittwaldAPIV2.Components.Schemas.IngressListIngressesCompatibleWithCertificateIDRequest;
|
|
20076
20138
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20077
20139
|
type Query = {
|
|
20078
20140
|
limit?: number;
|
|
@@ -29217,22 +29279,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29217
29279
|
}
|
|
29218
29280
|
}
|
|
29219
29281
|
}
|
|
29220
|
-
namespace
|
|
29221
|
-
namespace
|
|
29282
|
+
namespace V2LicensesLicenseIdContract {
|
|
29283
|
+
namespace Get {
|
|
29222
29284
|
namespace Parameters {
|
|
29223
29285
|
type Path = {
|
|
29224
|
-
|
|
29286
|
+
licenseId: string;
|
|
29225
29287
|
};
|
|
29226
|
-
interface RequestBody {
|
|
29227
|
-
appInstallationId: string;
|
|
29228
|
-
}
|
|
29229
29288
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29230
29289
|
type Query = {};
|
|
29231
29290
|
}
|
|
29232
29291
|
namespace Responses {
|
|
29233
|
-
namespace $
|
|
29292
|
+
namespace $200 {
|
|
29234
29293
|
namespace Content {
|
|
29235
|
-
type
|
|
29294
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
|
|
29236
29295
|
}
|
|
29237
29296
|
}
|
|
29238
29297
|
namespace $400 {
|
|
@@ -29242,7 +29301,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29242
29301
|
}
|
|
29243
29302
|
}
|
|
29244
29303
|
}
|
|
29245
|
-
namespace $
|
|
29304
|
+
namespace $404 {
|
|
29246
29305
|
namespace Content {
|
|
29247
29306
|
interface ApplicationJson {
|
|
29248
29307
|
[k: string]: unknown;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '0.0.0-development-
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '0.0.0-development-2f042ce-20260202';
|
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-39d23c6-20260203",
|
|
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-39d23c6-20260203",
|
|
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-39d23c6-20260203",
|
|
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": "063f28a03a64eb649e7871e5ab1b769fa86a4f92"
|
|
84
84
|
}
|