@mittwald/api-client 4.151.0 → 4.153.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 -2
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +8 -8
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +17 -15
- package/dist/types/generated/v2/client.d.ts +68 -62
- package/dist/types/generated/v2/descriptors.d.ts +4 -4
- package/dist/types/generated/v2/types.d.ts +79 -69
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -78,6 +78,8 @@ const buildContractApi = (baseClient) => ({
|
|
|
78
78
|
getDetailOfContractByCertificate: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByCertificate, baseClient.contract.getDetailOfContractByCertificate).getApiResource,
|
|
79
79
|
/** Return the Contract for the given Domain. */
|
|
80
80
|
getDetailOfContractByDomain: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByDomain, baseClient.contract.getDetailOfContractByDomain).getApiResource,
|
|
81
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
82
|
+
getDetailOfContractByLeadFyndr: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByLeadFyndr, baseClient.contract.getDetailOfContractByLeadFyndr).getApiResource,
|
|
81
83
|
/** Return the Contract for the given Project. */
|
|
82
84
|
getDetailOfContractByProject: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByProject, baseClient.contract.getDetailOfContractByProject).getApiResource,
|
|
83
85
|
/** Return the Contract for the given Server. */
|
|
@@ -106,8 +108,6 @@ const buildContractApi = (baseClient) => ({
|
|
|
106
108
|
orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
|
|
107
109
|
/** Get list of Orders of a Project. */
|
|
108
110
|
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,
|
|
111
111
|
});
|
|
112
112
|
const buildConversationApi = (baseClient) => ({
|
|
113
113
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -156,6 +156,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
156
156
|
getDetailOfContractByCertificate: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByCertificate),
|
|
157
157
|
/** Return the Contract for the given Domain. */
|
|
158
158
|
getDetailOfContractByDomain: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByDomain),
|
|
159
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
160
|
+
getDetailOfContractByLeadFyndr: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLeadFyndr),
|
|
159
161
|
/** Return the Contract for the given Project. */
|
|
160
162
|
getDetailOfContractByProject: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByProject),
|
|
161
163
|
/** Return the Contract for the given Server. */
|
|
@@ -194,8 +196,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
194
196
|
orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
|
|
195
197
|
/** Preview TariffChange. */
|
|
196
198
|
orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
|
|
197
|
-
/** Return the Contract for the given LeadFyndrProfile. */
|
|
198
|
-
getDetailOfContractByLeadFyndr: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByLeadFyndr),
|
|
199
199
|
};
|
|
200
200
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
201
201
|
marketplace = {
|
|
@@ -54,7 +54,7 @@ export const appGetSystemsoftware = {
|
|
|
54
54
|
};
|
|
55
55
|
/** Get a SystemSoftwareVersion. */
|
|
56
56
|
export const appGetSystemsoftwareversion = {
|
|
57
|
-
path: "/v2/system-
|
|
57
|
+
path: "/v2/system-softwares/{systemSoftwareId}/versions/{systemSoftwareVersionId}",
|
|
58
58
|
method: "GET",
|
|
59
59
|
operationId: "app-get-systemsoftwareversion",
|
|
60
60
|
};
|
|
@@ -102,7 +102,7 @@ export const appListSystemsoftwares = {
|
|
|
102
102
|
};
|
|
103
103
|
/** List SystemSoftwareVersions belonging to a SystemSoftware. */
|
|
104
104
|
export const appListSystemsoftwareversions = {
|
|
105
|
-
path: "/v2/system-
|
|
105
|
+
path: "/v2/system-softwares/{systemSoftwareId}/versions",
|
|
106
106
|
method: "GET",
|
|
107
107
|
operationId: "app-list-systemsoftwareversions",
|
|
108
108
|
};
|
|
@@ -412,6 +412,12 @@ export const contractGetDetailOfContractByDomain = {
|
|
|
412
412
|
method: "GET",
|
|
413
413
|
operationId: "contract-get-detail-of-contract-by-domain",
|
|
414
414
|
};
|
|
415
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
416
|
+
export const contractGetDetailOfContractByLeadFyndr = {
|
|
417
|
+
path: "/v2/customers/{customerId}/lead-fyndr-profile/contract",
|
|
418
|
+
method: "GET",
|
|
419
|
+
operationId: "contract-get-detail-of-contract-by-lead-fyndr",
|
|
420
|
+
};
|
|
415
421
|
/** Return the Contract for the given Project. */
|
|
416
422
|
export const contractGetDetailOfContractByProject = {
|
|
417
423
|
path: "/v2/projects/{projectId}/contract",
|
|
@@ -2326,9 +2332,3 @@ export const verificationVerifyCompany = {
|
|
|
2326
2332
|
method: "POST",
|
|
2327
2333
|
operationId: "verification-verify-company",
|
|
2328
2334
|
};
|
|
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.152.0';
|
|
@@ -566,6 +566,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
566
566
|
customerId: string;
|
|
567
567
|
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
568
568
|
}>;
|
|
569
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
570
|
+
getDetailOfContractByLeadFyndr: (conf: {
|
|
571
|
+
customerId: string;
|
|
572
|
+
headers?: {
|
|
573
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
574
|
+
"x-access-token"?: string | undefined;
|
|
575
|
+
} | undefined;
|
|
576
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
577
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
578
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
579
|
+
contractId: string;
|
|
580
|
+
contractNumber: string;
|
|
581
|
+
customerId: string;
|
|
582
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
583
|
+
}>;
|
|
569
584
|
/** Return the Contract for the given Project. */
|
|
570
585
|
getDetailOfContractByProject: (conf: {
|
|
571
586
|
projectId: string;
|
|
@@ -818,21 +833,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
818
833
|
templateNames?: string[] | undefined;
|
|
819
834
|
} | undefined;
|
|
820
835
|
}) => 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
|
-
}>;
|
|
836
836
|
};
|
|
837
837
|
declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
838
838
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -1986,6 +1986,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1986
1986
|
salesVolumeMin?: number | undefined;
|
|
1987
1987
|
salesVolumeMax?: number | undefined;
|
|
1988
1988
|
technologies?: string[] | undefined;
|
|
1989
|
+
businessFields?: string[] | undefined;
|
|
1989
1990
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
1990
1991
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
1991
1992
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -2019,6 +2020,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2019
2020
|
salesVolumeMin?: number | undefined;
|
|
2020
2021
|
salesVolumeMax?: number | undefined;
|
|
2021
2022
|
technologies?: string[] | undefined;
|
|
2023
|
+
businessFields?: string[] | undefined;
|
|
2022
2024
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
2023
2025
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
2024
2026
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -4566,6 +4566,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4566
4566
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4567
4567
|
[x: string]: unknown;
|
|
4568
4568
|
}, 429, "application/json">>>;
|
|
4569
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
4570
|
+
getDetailOfContractByLeadFyndr: (request: {
|
|
4571
|
+
customerId: string;
|
|
4572
|
+
headers?: {
|
|
4573
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4574
|
+
"x-access-token"?: string | undefined;
|
|
4575
|
+
} | undefined;
|
|
4576
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4577
|
+
headers?: Partial<{
|
|
4578
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4579
|
+
}>;
|
|
4580
|
+
} & {
|
|
4581
|
+
pathParameters: {
|
|
4582
|
+
customerId: string;
|
|
4583
|
+
};
|
|
4584
|
+
} & {
|
|
4585
|
+
headers: {
|
|
4586
|
+
"x-access-token"?: string | undefined;
|
|
4587
|
+
} & Partial<{
|
|
4588
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4589
|
+
}>;
|
|
4590
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4591
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
4592
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
4593
|
+
contractId: string;
|
|
4594
|
+
contractNumber: string;
|
|
4595
|
+
customerId: string;
|
|
4596
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
4597
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4598
|
+
[x: string]: unknown;
|
|
4599
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4600
|
+
[x: string]: unknown;
|
|
4601
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4602
|
+
[x: string]: unknown;
|
|
4603
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4604
|
+
headers?: Partial<{
|
|
4605
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4606
|
+
}>;
|
|
4607
|
+
} & {
|
|
4608
|
+
pathParameters: {
|
|
4609
|
+
customerId: string;
|
|
4610
|
+
};
|
|
4611
|
+
} & {
|
|
4612
|
+
headers: {
|
|
4613
|
+
"x-access-token"?: string | undefined;
|
|
4614
|
+
} & Partial<{
|
|
4615
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4616
|
+
}>;
|
|
4617
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4618
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
4619
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
4620
|
+
contractId: string;
|
|
4621
|
+
contractNumber: string;
|
|
4622
|
+
customerId: string;
|
|
4623
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
4624
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4625
|
+
[x: string]: unknown;
|
|
4626
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4627
|
+
[x: string]: unknown;
|
|
4628
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4629
|
+
[x: string]: unknown;
|
|
4630
|
+
}, 429, "application/json">>>;
|
|
4569
4631
|
/** Return the Contract for the given Project. */
|
|
4570
4632
|
getDetailOfContractByProject: (request: {
|
|
4571
4633
|
projectId: string;
|
|
@@ -5969,68 +6031,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5969
6031
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5970
6032
|
[x: string]: unknown;
|
|
5971
6033
|
}, 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">>>;
|
|
6034
6034
|
};
|
|
6035
6035
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
6036
6036
|
readonly marketplace: {
|
|
@@ -20996,6 +20996,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
20996
20996
|
salesVolumeMin?: number | undefined;
|
|
20997
20997
|
salesVolumeMax?: number | undefined;
|
|
20998
20998
|
technologies?: string[] | undefined;
|
|
20999
|
+
businessFields?: string[] | undefined;
|
|
20999
21000
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
21000
21001
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
21001
21002
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -21025,6 +21026,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21025
21026
|
salesVolumeMin?: number | undefined;
|
|
21026
21027
|
salesVolumeMax?: number | undefined;
|
|
21027
21028
|
technologies?: string[] | undefined;
|
|
21029
|
+
businessFields?: string[] | undefined;
|
|
21028
21030
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
21029
21031
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
21030
21032
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -21063,6 +21065,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21063
21065
|
salesVolumeMin?: number | undefined;
|
|
21064
21066
|
salesVolumeMax?: number | undefined;
|
|
21065
21067
|
technologies?: string[] | undefined;
|
|
21068
|
+
businessFields?: string[] | undefined;
|
|
21066
21069
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
21067
21070
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
21068
21071
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -21100,6 +21103,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21100
21103
|
salesVolumeMin?: number | undefined;
|
|
21101
21104
|
salesVolumeMax?: number | undefined;
|
|
21102
21105
|
technologies?: string[] | undefined;
|
|
21106
|
+
businessFields?: string[] | undefined;
|
|
21103
21107
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
21104
21108
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
21105
21109
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -21130,6 +21134,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21130
21134
|
salesVolumeMin?: number | undefined;
|
|
21131
21135
|
salesVolumeMax?: number | undefined;
|
|
21132
21136
|
technologies?: string[] | undefined;
|
|
21137
|
+
businessFields?: string[] | undefined;
|
|
21133
21138
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
21134
21139
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
21135
21140
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -21169,6 +21174,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21169
21174
|
salesVolumeMin?: number | undefined;
|
|
21170
21175
|
salesVolumeMax?: number | undefined;
|
|
21171
21176
|
technologies?: string[] | undefined;
|
|
21177
|
+
businessFields?: string[] | undefined;
|
|
21172
21178
|
"basic:timeToFirstByteMs:min"?: number | undefined;
|
|
21173
21179
|
"basic:timeToFirstByteMs:max"?: number | undefined;
|
|
21174
21180
|
"basic:desktop:performance:min"?: number | undefined;
|
|
@@ -22,7 +22,7 @@ export declare const appGetMissingDependenciesForAppinstallation: OpenAPIOperati
|
|
|
22
22
|
/** Get a SystemSoftware. */
|
|
23
23
|
export declare const appGetSystemsoftware: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
24
24
|
/** Get a SystemSoftwareVersion. */
|
|
25
|
-
export declare const appGetSystemsoftwareversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.
|
|
25
|
+
export declare const appGetSystemsoftwareversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
26
26
|
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
27
27
|
export declare const appLinkDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdDatabase.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
28
28
|
/** List AppInstallations that a user has access to. */
|
|
@@ -38,7 +38,7 @@ export declare const appListAppversions: OpenAPIOperation<RequestType<Simplify<n
|
|
|
38
38
|
/** List SystemSoftwares. */
|
|
39
39
|
export declare const appListSystemsoftwares: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwares.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwares.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwares.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwares.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwares.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwares.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
40
40
|
/** List SystemSoftwareVersions belonging to a SystemSoftware. */
|
|
41
|
-
export declare const appListSystemsoftwareversions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.
|
|
41
|
+
export declare const appListSystemsoftwareversions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwaresSystemSoftwareIdVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
42
42
|
/** List update candidates belonging to an AppVersion. */
|
|
43
43
|
export declare const appListUpdateCandidatesForAppversion: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppsAppIdVersionsBaseAppVersionIdUpdateCandidates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
44
44
|
/** Replace a MySQL Database with another MySQL Database. */
|
|
@@ -141,6 +141,8 @@ export declare const contractGetBaseItemOfContract: OpenAPIOperation<RequestType
|
|
|
141
141
|
export declare const contractGetDetailOfContractByCertificate: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
142
142
|
/** Return the Contract for the given Domain. */
|
|
143
143
|
export declare const contractGetDetailOfContractByDomain: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
144
|
+
/** Return the Contract for the given LeadFyndrProfile. */
|
|
145
|
+
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">>;
|
|
144
146
|
/** Return the Contract for the given Project. */
|
|
145
147
|
export declare const contractGetDetailOfContractByProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
146
148
|
/** Return the Contract for the given Server. */
|
|
@@ -779,5 +781,3 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
|
|
|
779
781
|
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
782
|
/** Check if a company exists. */
|
|
781
783
|
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">>;
|
|
@@ -278,6 +278,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
278
278
|
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByDomain>;
|
|
279
279
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByDomain, TStatus>;
|
|
280
280
|
}
|
|
281
|
+
namespace ContractGetDetailOfContractByLeadFyndr {
|
|
282
|
+
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLeadFyndr>;
|
|
283
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLeadFyndr, TStatus>;
|
|
284
|
+
}
|
|
281
285
|
namespace ContractGetDetailOfContractByProject {
|
|
282
286
|
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByProject>;
|
|
283
287
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByProject, TStatus>;
|
|
@@ -1554,10 +1558,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1554
1558
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1555
1559
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1556
1560
|
}
|
|
1557
|
-
namespace ContractGetDetailOfContractByLeadFyndr {
|
|
1558
|
-
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByLeadFyndr>;
|
|
1559
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByLeadFyndr, TStatus>;
|
|
1560
|
-
}
|
|
1561
1561
|
}
|
|
1562
1562
|
namespace Components {
|
|
1563
1563
|
namespace Schemas {
|
|
@@ -4143,6 +4143,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4143
4143
|
ram?: number;
|
|
4144
4144
|
vcpu?: number;
|
|
4145
4145
|
}
|
|
4146
|
+
interface OrderLeadFyndrOrderPreview {
|
|
4147
|
+
reservationLimit: number;
|
|
4148
|
+
unlockLimit: number;
|
|
4149
|
+
}
|
|
4150
|
+
interface OrderLeadFyndrOrder {
|
|
4151
|
+
customerId: string;
|
|
4152
|
+
reservationLimit: number;
|
|
4153
|
+
unlockLimit: number;
|
|
4154
|
+
}
|
|
4155
|
+
interface OrderLeadFyndrTariffChange {
|
|
4156
|
+
contractId: string;
|
|
4157
|
+
reservationLimit: number;
|
|
4158
|
+
unlockLimit: number;
|
|
4159
|
+
}
|
|
4146
4160
|
interface OrderMachineTypeSpec {
|
|
4147
4161
|
machineType?: string;
|
|
4148
4162
|
}
|
|
@@ -4173,6 +4187,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4173
4187
|
summary: number;
|
|
4174
4188
|
}
|
|
4175
4189
|
type OrderOrderType = "NEW_ORDER" | "CONTRACT_CHANGE";
|
|
4190
|
+
interface OrderLeadFyndrOrderPreviewResponse {
|
|
4191
|
+
totalPrice: number;
|
|
4192
|
+
}
|
|
4176
4193
|
interface OrderDomainOrderPreviewResponse {
|
|
4177
4194
|
/**
|
|
4178
4195
|
* Contract duration in months.
|
|
@@ -4882,23 +4899,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4882
4899
|
name: string;
|
|
4883
4900
|
value: string;
|
|
4884
4901
|
}
|
|
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
|
-
}
|
|
4902
4902
|
interface CommonsAddress {
|
|
4903
4903
|
street: string;
|
|
4904
4904
|
houseNumber: string;
|
|
@@ -5463,7 +5463,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5463
5463
|
}
|
|
5464
5464
|
}
|
|
5465
5465
|
namespace V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId { }
|
|
5466
|
-
namespace V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId {
|
|
5466
|
+
namespace V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId { }
|
|
5467
|
+
namespace V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId {
|
|
5467
5468
|
namespace Get {
|
|
5468
5469
|
namespace Parameters {
|
|
5469
5470
|
type Path = {
|
|
@@ -5786,8 +5787,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5786
5787
|
}
|
|
5787
5788
|
}
|
|
5788
5789
|
}
|
|
5790
|
+
namespace V2SystemSoftwareSystemSoftwareIdVersions { }
|
|
5789
5791
|
namespace V2SystemsoftwareSystemSoftwareIdVersions { }
|
|
5790
|
-
namespace
|
|
5792
|
+
namespace V2SystemSoftwaresSystemSoftwareIdVersions {
|
|
5791
5793
|
namespace Get {
|
|
5792
5794
|
namespace Parameters {
|
|
5793
5795
|
type Path = {
|
|
@@ -8666,6 +8668,52 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8666
8668
|
}
|
|
8667
8669
|
}
|
|
8668
8670
|
}
|
|
8671
|
+
namespace V2CustomersCustomerIdLeadFyndrProfileContract {
|
|
8672
|
+
namespace Get {
|
|
8673
|
+
namespace Parameters {
|
|
8674
|
+
type Path = {
|
|
8675
|
+
customerId: string;
|
|
8676
|
+
};
|
|
8677
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8678
|
+
type Query = {};
|
|
8679
|
+
}
|
|
8680
|
+
namespace Responses {
|
|
8681
|
+
namespace $200 {
|
|
8682
|
+
namespace Content {
|
|
8683
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
|
|
8684
|
+
}
|
|
8685
|
+
}
|
|
8686
|
+
namespace $400 {
|
|
8687
|
+
namespace Content {
|
|
8688
|
+
interface ApplicationJson {
|
|
8689
|
+
[k: string]: unknown;
|
|
8690
|
+
}
|
|
8691
|
+
}
|
|
8692
|
+
}
|
|
8693
|
+
namespace $404 {
|
|
8694
|
+
namespace Content {
|
|
8695
|
+
interface ApplicationJson {
|
|
8696
|
+
[k: string]: unknown;
|
|
8697
|
+
}
|
|
8698
|
+
}
|
|
8699
|
+
}
|
|
8700
|
+
namespace $429 {
|
|
8701
|
+
namespace Content {
|
|
8702
|
+
interface ApplicationJson {
|
|
8703
|
+
[k: string]: unknown;
|
|
8704
|
+
}
|
|
8705
|
+
}
|
|
8706
|
+
}
|
|
8707
|
+
namespace Default {
|
|
8708
|
+
namespace Content {
|
|
8709
|
+
interface ApplicationJson {
|
|
8710
|
+
[k: string]: unknown;
|
|
8711
|
+
}
|
|
8712
|
+
}
|
|
8713
|
+
}
|
|
8714
|
+
}
|
|
8715
|
+
}
|
|
8716
|
+
}
|
|
8669
8717
|
namespace V2ProjectsProjectIdContract {
|
|
8670
8718
|
namespace Get {
|
|
8671
8719
|
namespace Parameters {
|
|
@@ -17130,6 +17178,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17130
17178
|
salesVolumeMin?: number;
|
|
17131
17179
|
salesVolumeMax?: number;
|
|
17132
17180
|
technologies?: string[];
|
|
17181
|
+
/**
|
|
17182
|
+
* @maxItems 15
|
|
17183
|
+
*/
|
|
17184
|
+
businessFields?: string[];
|
|
17133
17185
|
"basic:timeToFirstByteMs:min"?: number;
|
|
17134
17186
|
"basic:timeToFirstByteMs:max"?: number;
|
|
17135
17187
|
"basic:desktop:performance:min"?: number;
|
|
@@ -17187,6 +17239,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17187
17239
|
salesVolumeMin?: number;
|
|
17188
17240
|
salesVolumeMax?: number;
|
|
17189
17241
|
technologies?: string[];
|
|
17242
|
+
/**
|
|
17243
|
+
* @maxItems 15
|
|
17244
|
+
*/
|
|
17245
|
+
businessFields?: string[];
|
|
17190
17246
|
"basic:timeToFirstByteMs:min"?: number;
|
|
17191
17247
|
"basic:timeToFirstByteMs:max"?: number;
|
|
17192
17248
|
"basic:desktop:performance:min"?: number;
|
|
@@ -24444,51 +24500,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24444
24500
|
}
|
|
24445
24501
|
}
|
|
24446
24502
|
}
|
|
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
|
-
}
|
|
24493
24503
|
}
|
|
24494
24504
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.152.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.153.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": "46e30aeef9bc51440075481f13ce4945bf66afbe"
|
|
84
84
|
}
|