@mittwald/api-client 4.154.0 → 4.155.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.
@@ -78,8 +78,6 @@ 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,
83
81
  /** Return the Contract for the given Project. */
84
82
  getDetailOfContractByProject: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByProject, baseClient.contract.getDetailOfContractByProject).getApiResource,
85
83
  /** Return the Contract for the given Server. */
@@ -108,6 +106,8 @@ const buildContractApi = (baseClient) => ({
108
106
  orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
109
107
  /** Get list of Orders of a Project. */
110
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,
111
111
  });
112
112
  const buildConversationApi = (baseClient) => ({
113
113
  /** Get all conversation the authenticated user has created or has access to. */
@@ -156,8 +156,6 @@ 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),
161
159
  /** Return the Contract for the given Project. */
162
160
  getDetailOfContractByProject: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByProject),
163
161
  /** Return the Contract for the given Server. */
@@ -196,6 +194,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
196
194
  orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
197
195
  /** Preview TariffChange. */
198
196
  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 = {
@@ -412,12 +412,6 @@ 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
- };
421
415
  /** Return the Contract for the given Project. */
422
416
  export const contractGetDetailOfContractByProject = {
423
417
  path: "/v2/projects/{projectId}/contract",
@@ -2332,6 +2326,12 @@ export const verificationVerifyCompany = {
2332
2326
  method: "POST",
2333
2327
  operationId: "verification-verify-company",
2334
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
+ };
2335
2335
  /** Get cities in DACH. */
2336
2336
  export const leadfyndrGetCitiesExperimental = {
2337
2337
  path: "/v2-experimental/cities",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.153.0';
1
+ export const MittwaldAPIClientVersion = '4.154.0';
@@ -567,21 +567,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
567
567
  customerId: string;
568
568
  termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
569
569
  }>;
570
- /** Return the Contract for the given LeadFyndrProfile. */
571
- getDetailOfContractByLeadFyndr: (conf: {
572
- customerId: string;
573
- headers?: {
574
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
575
- "x-access-token"?: string | undefined;
576
- } | undefined;
577
- }) => import("@mittwald/react-use-promise").AsyncResource<{
578
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
579
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
580
- contractId: string;
581
- contractNumber: string;
582
- customerId: string;
583
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
584
- }>;
585
570
  /** Return the Contract for the given Project. */
586
571
  getDetailOfContractByProject: (conf: {
587
572
  projectId: string;
@@ -834,6 +819,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
834
819
  templateNames?: string[] | undefined;
835
820
  } | undefined;
836
821
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
822
+ /** Return the Contract for the given LeadFyndrProfile. */
823
+ getDetailOfContractByLeadFyndr: (conf: {
824
+ customerId: string;
825
+ headers?: {
826
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
827
+ "x-access-token"?: string | undefined;
828
+ } | undefined;
829
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
830
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
831
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
832
+ contractId: string;
833
+ contractNumber: string;
834
+ customerId: string;
835
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
836
+ }>;
837
837
  };
838
838
  declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
839
839
  /** Get all conversation the authenticated user has created or has access to. */
@@ -4568,68 +4568,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4568
4568
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4569
4569
  [x: string]: unknown;
4570
4570
  }, 429, "application/json">>>;
4571
- /** Return the Contract for the given LeadFyndrProfile. */
4572
- getDetailOfContractByLeadFyndr: (request: {
4573
- customerId: string;
4574
- headers?: {
4575
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4576
- "x-access-token"?: string | undefined;
4577
- } | undefined;
4578
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4579
- headers?: Partial<{
4580
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4581
- }>;
4582
- } & {
4583
- pathParameters: {
4584
- customerId: string;
4585
- };
4586
- } & {
4587
- headers: {
4588
- "x-access-token"?: string | undefined;
4589
- } & Partial<{
4590
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4591
- }>;
4592
- }, import("@mittwald/api-client-commons").Response<{
4593
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
4594
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
4595
- contractId: string;
4596
- contractNumber: string;
4597
- customerId: string;
4598
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
4599
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4600
- [x: string]: unknown;
4601
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4602
- [x: string]: unknown;
4603
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4604
- [x: string]: unknown;
4605
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4606
- headers?: Partial<{
4607
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4608
- }>;
4609
- } & {
4610
- pathParameters: {
4611
- customerId: string;
4612
- };
4613
- } & {
4614
- headers: {
4615
- "x-access-token"?: string | undefined;
4616
- } & Partial<{
4617
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4618
- }>;
4619
- }, import("@mittwald/api-client-commons").Response<{
4620
- additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
4621
- baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
4622
- contractId: string;
4623
- contractNumber: string;
4624
- customerId: string;
4625
- termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
4626
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4627
- [x: string]: unknown;
4628
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4629
- [x: string]: unknown;
4630
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4631
- [x: string]: unknown;
4632
- }, 429, "application/json">>>;
4633
4571
  /** Return the Contract for the given Project. */
4634
4572
  getDetailOfContractByProject: (request: {
4635
4573
  projectId: string;
@@ -6033,6 +5971,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6033
5971
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
6034
5972
  [x: string]: unknown;
6035
5973
  }, 429, "application/json">>>;
5974
+ /** Return the Contract for the given LeadFyndrProfile. */
5975
+ getDetailOfContractByLeadFyndr: (request: {
5976
+ customerId: string;
5977
+ headers?: {
5978
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5979
+ "x-access-token"?: string | undefined;
5980
+ } | undefined;
5981
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5982
+ headers?: Partial<{
5983
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5984
+ }>;
5985
+ } & {
5986
+ pathParameters: {
5987
+ customerId: string;
5988
+ };
5989
+ } & {
5990
+ headers: {
5991
+ "x-access-token"?: string | undefined;
5992
+ } & Partial<{
5993
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5994
+ }>;
5995
+ }, import("@mittwald/api-client-commons").Response<{
5996
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
5997
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
5998
+ contractId: string;
5999
+ contractNumber: string;
6000
+ customerId: string;
6001
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6002
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6003
+ [x: string]: unknown;
6004
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6005
+ [x: string]: unknown;
6006
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6007
+ [x: string]: unknown;
6008
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6009
+ headers?: Partial<{
6010
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6011
+ }>;
6012
+ } & {
6013
+ pathParameters: {
6014
+ customerId: string;
6015
+ };
6016
+ } & {
6017
+ headers: {
6018
+ "x-access-token"?: string | undefined;
6019
+ } & Partial<{
6020
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6021
+ }>;
6022
+ }, import("@mittwald/api-client-commons").Response<{
6023
+ additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
6024
+ baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
6025
+ contractId: string;
6026
+ contractNumber: string;
6027
+ customerId: string;
6028
+ termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
6029
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6030
+ [x: string]: unknown;
6031
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6032
+ [x: string]: unknown;
6033
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6034
+ [x: string]: unknown;
6035
+ }, 429, "application/json">>>;
6036
6036
  };
6037
6037
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
6038
6038
  readonly marketplace: {
@@ -141,8 +141,6 @@ 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">>;
146
144
  /** Return the Contract for the given Project. */
147
145
  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">>;
148
146
  /** Return the Contract for the given Server. */
@@ -781,5 +779,7 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
781
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">>;
782
780
  /** Check if a company exists. */
783
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">>;
784
784
  /** Get cities in DACH. */
785
785
  export declare const leadfyndrGetCitiesExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCities.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -278,10 +278,6 @@ 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
- }
285
281
  namespace ContractGetDetailOfContractByProject {
286
282
  type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByProject>;
287
283
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByProject, TStatus>;
@@ -1558,6 +1554,10 @@ export declare namespace MittwaldAPIV2 {
1558
1554
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1559
1555
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1560
1556
  }
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
  namespace LeadfyndrGetCitiesExperimental {
1562
1562
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetCitiesExperimental>;
1563
1563
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetCitiesExperimental, TStatus>;
@@ -4148,20 +4148,6 @@ export declare namespace MittwaldAPIV2 {
4148
4148
  ram?: number;
4149
4149
  vcpu?: number;
4150
4150
  }
4151
- interface OrderLeadFyndrOrderPreview {
4152
- reservationLimit: number;
4153
- unlockLimit: number;
4154
- }
4155
- interface OrderLeadFyndrOrder {
4156
- customerId: string;
4157
- reservationLimit: number;
4158
- unlockLimit: number;
4159
- }
4160
- interface OrderLeadFyndrTariffChange {
4161
- contractId: string;
4162
- reservationLimit: number;
4163
- unlockLimit: number;
4164
- }
4165
4151
  interface OrderMachineTypeSpec {
4166
4152
  machineType?: string;
4167
4153
  }
@@ -4192,9 +4178,6 @@ export declare namespace MittwaldAPIV2 {
4192
4178
  summary: number;
4193
4179
  }
4194
4180
  type OrderOrderType = "NEW_ORDER" | "CONTRACT_CHANGE";
4195
- interface OrderLeadFyndrOrderPreviewResponse {
4196
- totalPrice: number;
4197
- }
4198
4181
  interface OrderDomainOrderPreviewResponse {
4199
4182
  /**
4200
4183
  * Contract duration in months.
@@ -4904,6 +4887,23 @@ export declare namespace MittwaldAPIV2 {
4904
4887
  name: string;
4905
4888
  value: string;
4906
4889
  }
4890
+ interface OrderLeadFyndrTariffChange {
4891
+ contractId: string;
4892
+ reservationLimit: number;
4893
+ unlockLimit: number;
4894
+ }
4895
+ interface OrderLeadFyndrOrderPreviewResponse {
4896
+ totalPrice: number;
4897
+ }
4898
+ interface OrderLeadFyndrOrder {
4899
+ customerId: string;
4900
+ reservationLimit: number;
4901
+ unlockLimit: number;
4902
+ }
4903
+ interface OrderLeadFyndrOrderPreview {
4904
+ reservationLimit: number;
4905
+ unlockLimit: number;
4906
+ }
4907
4907
  interface LeadfyndrCity {
4908
4908
  city: string;
4909
4909
  country: string;
@@ -8678,52 +8678,6 @@ export declare namespace MittwaldAPIV2 {
8678
8678
  }
8679
8679
  }
8680
8680
  }
8681
- namespace V2CustomersCustomerIdLeadFyndrProfileContract {
8682
- namespace Get {
8683
- namespace Parameters {
8684
- type Path = {
8685
- customerId: string;
8686
- };
8687
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8688
- type Query = {};
8689
- }
8690
- namespace Responses {
8691
- namespace $200 {
8692
- namespace Content {
8693
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
8694
- }
8695
- }
8696
- namespace $400 {
8697
- namespace Content {
8698
- interface ApplicationJson {
8699
- [k: string]: unknown;
8700
- }
8701
- }
8702
- }
8703
- namespace $404 {
8704
- namespace Content {
8705
- interface ApplicationJson {
8706
- [k: string]: unknown;
8707
- }
8708
- }
8709
- }
8710
- namespace $429 {
8711
- namespace Content {
8712
- interface ApplicationJson {
8713
- [k: string]: unknown;
8714
- }
8715
- }
8716
- }
8717
- namespace Default {
8718
- namespace Content {
8719
- interface ApplicationJson {
8720
- [k: string]: unknown;
8721
- }
8722
- }
8723
- }
8724
- }
8725
- }
8726
- }
8727
8681
  namespace V2ProjectsProjectIdContract {
8728
8682
  namespace Get {
8729
8683
  namespace Parameters {
@@ -24516,6 +24470,52 @@ export declare namespace MittwaldAPIV2 {
24516
24470
  }
24517
24471
  }
24518
24472
  }
24473
+ namespace V2CustomersCustomerIdLeadFyndrProfileContract {
24474
+ namespace Get {
24475
+ namespace Parameters {
24476
+ type Path = {
24477
+ customerId: string;
24478
+ };
24479
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24480
+ type Query = {};
24481
+ }
24482
+ namespace Responses {
24483
+ namespace $200 {
24484
+ namespace Content {
24485
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
24486
+ }
24487
+ }
24488
+ namespace $400 {
24489
+ namespace Content {
24490
+ interface ApplicationJson {
24491
+ [k: string]: unknown;
24492
+ }
24493
+ }
24494
+ }
24495
+ namespace $404 {
24496
+ namespace Content {
24497
+ interface ApplicationJson {
24498
+ [k: string]: unknown;
24499
+ }
24500
+ }
24501
+ }
24502
+ namespace $429 {
24503
+ namespace Content {
24504
+ interface ApplicationJson {
24505
+ [k: string]: unknown;
24506
+ }
24507
+ }
24508
+ }
24509
+ namespace Default {
24510
+ namespace Content {
24511
+ interface ApplicationJson {
24512
+ [k: string]: unknown;
24513
+ }
24514
+ }
24515
+ }
24516
+ }
24517
+ }
24518
+ }
24519
24519
  namespace V2Cities { }
24520
24520
  namespace V2ExperimentalCities {
24521
24521
  namespace Get {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.153.0';
1
+ export declare const MittwaldAPIClientVersion = '4.154.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.154.0",
3
+ "version": "4.155.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": "f5dd9212b6545fb78505c1c813ded5b92ef08275"
83
+ "gitHead": "549b3053cd195e18cf66a16c373147838d4961ca"
84
84
  }