@mittwald/api-client 4.150.0 → 4.151.0
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 +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +15 -0
- package/dist/types/generated/v2/client.d.ts +97 -20
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +76 -9
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -106,6 +106,8 @@ const buildContractApi = (baseClient) => ({
|
|
|
106
106
|
orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
|
|
107
107
|
/** Get list of Orders of a Project. */
|
|
108
108
|
orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource,
|
|
109
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
110
|
+
getDetailOfContractByLeadFyndr: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLeadFyndr, baseClient.contract.getDetailOfContractByLeadFyndr).getApiResource,
|
|
109
111
|
});
|
|
110
112
|
const buildConversationApi = (baseClient) => ({
|
|
111
113
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -194,6 +194,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
194
194
|
orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
|
|
195
195
|
/** Preview TariffChange. */
|
|
196
196
|
orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
|
|
197
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
198
|
+
getDetailOfContractByLeadFyndr: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLeadFyndr),
|
|
197
199
|
};
|
|
198
200
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
199
201
|
marketplace = {
|
|
@@ -2326,3 +2326,9 @@ export const verificationVerifyCompany = {
|
|
|
2326
2326
|
method: "POST",
|
|
2327
2327
|
operationId: "verification-verify-company",
|
|
2328
2328
|
};
|
|
2329
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
2330
|
+
export const contractGetDetailOfContractByLeadFyndr = {
|
|
2331
|
+
path: "/v2/customers/{customerId}/lead-fyndr-profile/contract",
|
|
2332
|
+
method: "GET",
|
|
2333
|
+
operationId: "contract-get-detail-of-contract-by-lead-fyndr",
|
|
2334
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.150.0';
|
|
@@ -818,6 +818,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
818
818
|
templateNames?: string[] | undefined;
|
|
819
819
|
} | undefined;
|
|
820
820
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
821
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
822
|
+
getDetailOfContractByLeadFyndr: (conf: {
|
|
823
|
+
customerId: string;
|
|
824
|
+
headers?: {
|
|
825
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
826
|
+
"x-access-token"?: string | undefined;
|
|
827
|
+
} | undefined;
|
|
828
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
829
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
830
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
831
|
+
contractId: string;
|
|
832
|
+
contractNumber: string;
|
|
833
|
+
customerId: string;
|
|
834
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
835
|
+
}>;
|
|
821
836
|
};
|
|
822
837
|
declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
823
838
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -5494,8 +5494,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5494
5494
|
} | {
|
|
5495
5495
|
certificateRequestId: string;
|
|
5496
5496
|
projectId: string;
|
|
5497
|
+
} | {
|
|
5498
|
+
customerId: string;
|
|
5499
|
+
reservationLimit: number;
|
|
5500
|
+
unlockLimit: number;
|
|
5497
5501
|
} | undefined;
|
|
5498
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
|
|
5502
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5499
5503
|
} | undefined;
|
|
5500
5504
|
headers?: {
|
|
5501
5505
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -5503,8 +5507,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5503
5507
|
} | undefined;
|
|
5504
5508
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5505
5509
|
data: {
|
|
5506
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder) | undefined;
|
|
5507
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
|
|
5510
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder) | undefined;
|
|
5511
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5508
5512
|
};
|
|
5509
5513
|
} & {
|
|
5510
5514
|
headers?: Partial<{
|
|
@@ -5524,8 +5528,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5524
5528
|
[x: string]: unknown;
|
|
5525
5529
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5526
5530
|
data: {
|
|
5527
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder) | undefined;
|
|
5528
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
|
|
5531
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder) | undefined;
|
|
5532
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5529
5533
|
};
|
|
5530
5534
|
} & {
|
|
5531
5535
|
headers?: Partial<{
|
|
@@ -5560,8 +5564,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5560
5564
|
contractId: string;
|
|
5561
5565
|
diskspaceInGiB: number;
|
|
5562
5566
|
machineType: string;
|
|
5567
|
+
} | {
|
|
5568
|
+
contractId: string;
|
|
5569
|
+
reservationLimit: number;
|
|
5570
|
+
unlockLimit: number;
|
|
5563
5571
|
} | undefined;
|
|
5564
|
-
tariffChangeType?: "projectHosting" | "server" | undefined;
|
|
5572
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
5565
5573
|
} | undefined;
|
|
5566
5574
|
headers?: {
|
|
5567
5575
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -5569,8 +5577,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5569
5577
|
} | undefined;
|
|
5570
5578
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5571
5579
|
data: {
|
|
5572
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
|
|
5573
|
-
tariffChangeType?: "projectHosting" | "server" | undefined;
|
|
5580
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
5581
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
5574
5582
|
};
|
|
5575
5583
|
} & {
|
|
5576
5584
|
headers?: Partial<{
|
|
@@ -5590,8 +5598,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5590
5598
|
[x: string]: unknown;
|
|
5591
5599
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5592
5600
|
data: {
|
|
5593
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
|
|
5594
|
-
tariffChangeType?: "projectHosting" | "server" | undefined;
|
|
5601
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
5602
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
5595
5603
|
};
|
|
5596
5604
|
} & {
|
|
5597
5605
|
headers?: Partial<{
|
|
@@ -5843,16 +5851,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5843
5851
|
} | {
|
|
5844
5852
|
certificateRequestId: string;
|
|
5845
5853
|
projectId: string;
|
|
5854
|
+
} | {
|
|
5855
|
+
reservationLimit: number;
|
|
5856
|
+
unlockLimit: number;
|
|
5846
5857
|
} | undefined;
|
|
5847
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
|
|
5858
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5848
5859
|
} | undefined;
|
|
5849
5860
|
headers?: {
|
|
5850
5861
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5851
5862
|
} | undefined;
|
|
5852
5863
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5853
5864
|
data: {
|
|
5854
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview) | undefined;
|
|
5855
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
|
|
5865
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview) | undefined;
|
|
5866
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5856
5867
|
};
|
|
5857
5868
|
} & {
|
|
5858
5869
|
headers?: Partial<{
|
|
@@ -5866,8 +5877,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5866
5877
|
[x: string]: unknown;
|
|
5867
5878
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5868
5879
|
data: {
|
|
5869
|
-
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview) | undefined;
|
|
5870
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
|
|
5880
|
+
orderData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview) | undefined;
|
|
5881
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
|
|
5871
5882
|
};
|
|
5872
5883
|
} & {
|
|
5873
5884
|
headers?: Partial<{
|
|
@@ -5896,8 +5907,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5896
5907
|
contractId: string;
|
|
5897
5908
|
diskspaceInGiB: number;
|
|
5898
5909
|
machineType: string;
|
|
5910
|
+
} | {
|
|
5911
|
+
contractId: string;
|
|
5912
|
+
reservationLimit: number;
|
|
5913
|
+
unlockLimit: number;
|
|
5899
5914
|
} | undefined;
|
|
5900
|
-
tariffChangeType?: "projectHosting" | "server" | undefined;
|
|
5915
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
5901
5916
|
} | undefined;
|
|
5902
5917
|
headers?: {
|
|
5903
5918
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -5905,8 +5920,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5905
5920
|
} | undefined;
|
|
5906
5921
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5907
5922
|
data: {
|
|
5908
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
|
|
5909
|
-
tariffChangeType?: "projectHosting" | "server" | undefined;
|
|
5923
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
5924
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
5910
5925
|
};
|
|
5911
5926
|
} & {
|
|
5912
5927
|
headers?: Partial<{
|
|
@@ -5930,8 +5945,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5930
5945
|
[x: string]: unknown;
|
|
5931
5946
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5932
5947
|
data: {
|
|
5933
|
-
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
|
|
5934
|
-
tariffChangeType?: "projectHosting" | "server" | undefined;
|
|
5948
|
+
tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
|
|
5949
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
|
|
5935
5950
|
};
|
|
5936
5951
|
} & {
|
|
5937
5952
|
headers?: Partial<{
|
|
@@ -5954,6 +5969,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5954
5969
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5955
5970
|
[x: string]: unknown;
|
|
5956
5971
|
}, 429, "application/json">>>;
|
|
5972
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
5973
|
+
getDetailOfContractByLeadFyndr: (request: {
|
|
5974
|
+
customerId: string;
|
|
5975
|
+
headers?: {
|
|
5976
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5977
|
+
"x-access-token"?: string | undefined;
|
|
5978
|
+
} | undefined;
|
|
5979
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5980
|
+
headers?: Partial<{
|
|
5981
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5982
|
+
}>;
|
|
5983
|
+
} & {
|
|
5984
|
+
pathParameters: {
|
|
5985
|
+
customerId: string;
|
|
5986
|
+
};
|
|
5987
|
+
} & {
|
|
5988
|
+
headers: {
|
|
5989
|
+
"x-access-token"?: string | undefined;
|
|
5990
|
+
} & Partial<{
|
|
5991
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5992
|
+
}>;
|
|
5993
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5994
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
5995
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
5996
|
+
contractId: string;
|
|
5997
|
+
contractNumber: string;
|
|
5998
|
+
customerId: string;
|
|
5999
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
6000
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6001
|
+
[x: string]: unknown;
|
|
6002
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6003
|
+
[x: string]: unknown;
|
|
6004
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6005
|
+
[x: string]: unknown;
|
|
6006
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6007
|
+
headers?: Partial<{
|
|
6008
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6009
|
+
}>;
|
|
6010
|
+
} & {
|
|
6011
|
+
pathParameters: {
|
|
6012
|
+
customerId: string;
|
|
6013
|
+
};
|
|
6014
|
+
} & {
|
|
6015
|
+
headers: {
|
|
6016
|
+
"x-access-token"?: string | undefined;
|
|
6017
|
+
} & Partial<{
|
|
6018
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6019
|
+
}>;
|
|
6020
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6021
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
6022
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
6023
|
+
contractId: string;
|
|
6024
|
+
contractNumber: string;
|
|
6025
|
+
customerId: string;
|
|
6026
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
6027
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6028
|
+
[x: string]: unknown;
|
|
6029
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6030
|
+
[x: string]: unknown;
|
|
6031
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6032
|
+
[x: string]: unknown;
|
|
6033
|
+
}, 429, "application/json">>>;
|
|
5957
6034
|
};
|
|
5958
6035
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
5959
6036
|
readonly marketplace: {
|
|
@@ -779,3 +779,5 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
|
|
|
779
779
|
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">>;
|
|
780
780
|
/** Check if a company exists. */
|
|
781
781
|
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">>;
|
|
782
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
783
|
+
export declare const contractGetDetailOfContractByLeadFyndr: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLeadFyndrProfileContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1554,6 +1554,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1554
1554
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1555
1555
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1556
1556
|
}
|
|
1557
|
+
namespace ContractGetDetailOfContractByLeadFyndr {
|
|
1558
|
+
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLeadFyndr>;
|
|
1559
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLeadFyndr, TStatus>;
|
|
1560
|
+
}
|
|
1557
1561
|
}
|
|
1558
1562
|
namespace Components {
|
|
1559
1563
|
namespace Schemas {
|
|
@@ -4878,6 +4882,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4878
4882
|
name: string;
|
|
4879
4883
|
value: string;
|
|
4880
4884
|
}
|
|
4885
|
+
interface OrderLeadFyndrOrderPreview {
|
|
4886
|
+
reservationLimit: number;
|
|
4887
|
+
unlockLimit: number;
|
|
4888
|
+
}
|
|
4889
|
+
interface OrderLeadFyndrTariffChange {
|
|
4890
|
+
contractId: string;
|
|
4891
|
+
reservationLimit: number;
|
|
4892
|
+
unlockLimit: number;
|
|
4893
|
+
}
|
|
4894
|
+
interface OrderLeadFyndrOrderPreviewResponse {
|
|
4895
|
+
totalPrice: number;
|
|
4896
|
+
}
|
|
4897
|
+
interface OrderLeadFyndrOrder {
|
|
4898
|
+
customerId: string;
|
|
4899
|
+
reservationLimit: number;
|
|
4900
|
+
unlockLimit: number;
|
|
4901
|
+
}
|
|
4881
4902
|
interface CommonsAddress {
|
|
4882
4903
|
street: string;
|
|
4883
4904
|
houseNumber: string;
|
|
@@ -18583,8 +18604,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18583
18604
|
namespace Parameters {
|
|
18584
18605
|
type Path = {};
|
|
18585
18606
|
interface RequestBody {
|
|
18586
|
-
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder;
|
|
18587
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate";
|
|
18607
|
+
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder;
|
|
18608
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr";
|
|
18588
18609
|
}
|
|
18589
18610
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
18590
18611
|
type Query = {};
|
|
@@ -18626,8 +18647,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18626
18647
|
namespace Parameters {
|
|
18627
18648
|
type Path = {};
|
|
18628
18649
|
interface RequestBody {
|
|
18629
|
-
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange;
|
|
18630
|
-
tariffChangeType?: "projectHosting" | "server";
|
|
18650
|
+
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange;
|
|
18651
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr";
|
|
18631
18652
|
}
|
|
18632
18653
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
18633
18654
|
type Query = {};
|
|
@@ -18779,8 +18800,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18779
18800
|
namespace Parameters {
|
|
18780
18801
|
type Path = {};
|
|
18781
18802
|
interface RequestBody {
|
|
18782
|
-
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview;
|
|
18783
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate";
|
|
18803
|
+
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview;
|
|
18804
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr";
|
|
18784
18805
|
}
|
|
18785
18806
|
type Header = {};
|
|
18786
18807
|
type Query = {};
|
|
@@ -18788,7 +18809,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18788
18809
|
namespace Responses {
|
|
18789
18810
|
namespace $200 {
|
|
18790
18811
|
namespace Content {
|
|
18791
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse;
|
|
18812
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse;
|
|
18792
18813
|
}
|
|
18793
18814
|
}
|
|
18794
18815
|
namespace $400 {
|
|
@@ -18827,8 +18848,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18827
18848
|
namespace Parameters {
|
|
18828
18849
|
type Path = {};
|
|
18829
18850
|
interface RequestBody {
|
|
18830
|
-
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange;
|
|
18831
|
-
tariffChangeType?: "projectHosting" | "server";
|
|
18851
|
+
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange;
|
|
18852
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr";
|
|
18832
18853
|
}
|
|
18833
18854
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
18834
18855
|
type Query = {};
|
|
@@ -24423,5 +24444,51 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24423
24444
|
}
|
|
24424
24445
|
}
|
|
24425
24446
|
}
|
|
24447
|
+
namespace V2CustomersCustomerIdLeadFyndrProfileContract {
|
|
24448
|
+
namespace Get {
|
|
24449
|
+
namespace Parameters {
|
|
24450
|
+
type Path = {
|
|
24451
|
+
customerId: string;
|
|
24452
|
+
};
|
|
24453
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
24454
|
+
type Query = {};
|
|
24455
|
+
}
|
|
24456
|
+
namespace Responses {
|
|
24457
|
+
namespace $200 {
|
|
24458
|
+
namespace Content {
|
|
24459
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
|
|
24460
|
+
}
|
|
24461
|
+
}
|
|
24462
|
+
namespace $400 {
|
|
24463
|
+
namespace Content {
|
|
24464
|
+
interface ApplicationJson {
|
|
24465
|
+
[k: string]: unknown;
|
|
24466
|
+
}
|
|
24467
|
+
}
|
|
24468
|
+
}
|
|
24469
|
+
namespace $404 {
|
|
24470
|
+
namespace Content {
|
|
24471
|
+
interface ApplicationJson {
|
|
24472
|
+
[k: string]: unknown;
|
|
24473
|
+
}
|
|
24474
|
+
}
|
|
24475
|
+
}
|
|
24476
|
+
namespace $429 {
|
|
24477
|
+
namespace Content {
|
|
24478
|
+
interface ApplicationJson {
|
|
24479
|
+
[k: string]: unknown;
|
|
24480
|
+
}
|
|
24481
|
+
}
|
|
24482
|
+
}
|
|
24483
|
+
namespace Default {
|
|
24484
|
+
namespace Content {
|
|
24485
|
+
interface ApplicationJson {
|
|
24486
|
+
[k: string]: unknown;
|
|
24487
|
+
}
|
|
24488
|
+
}
|
|
24489
|
+
}
|
|
24490
|
+
}
|
|
24491
|
+
}
|
|
24492
|
+
}
|
|
24426
24493
|
}
|
|
24427
24494
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.150.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.151.0",
|
|
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",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "3be445d00cb4048b09e56847147e30ff7528287d"
|
|
84
84
|
}
|