@mittwald/api-client 4.150.0 → 4.152.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,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. */
@@ -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. */
@@ -54,7 +54,7 @@ export const appGetSystemsoftware = {
54
54
  };
55
55
  /** Get a SystemSoftwareVersion. */
56
56
  export const appGetSystemsoftwareversion = {
57
- path: "/v2/system-software/{systemSoftwareId}/versions/{systemSoftwareVersionId}",
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-software/{systemSoftwareId}/versions",
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",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.149.0';
1
+ export const MittwaldAPIClientVersion = '4.151.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;
@@ -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;
@@ -5494,8 +5556,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5494
5556
  } | {
5495
5557
  certificateRequestId: string;
5496
5558
  projectId: string;
5559
+ } | {
5560
+ customerId: string;
5561
+ reservationLimit: number;
5562
+ unlockLimit: number;
5497
5563
  } | undefined;
5498
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
5564
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
5499
5565
  } | undefined;
5500
5566
  headers?: {
5501
5567
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5503,8 +5569,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5503
5569
  } | undefined;
5504
5570
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5505
5571
  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;
5572
+ 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;
5573
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
5508
5574
  };
5509
5575
  } & {
5510
5576
  headers?: Partial<{
@@ -5524,8 +5590,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5524
5590
  [x: string]: unknown;
5525
5591
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5526
5592
  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;
5593
+ 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;
5594
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
5529
5595
  };
5530
5596
  } & {
5531
5597
  headers?: Partial<{
@@ -5560,8 +5626,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5560
5626
  contractId: string;
5561
5627
  diskspaceInGiB: number;
5562
5628
  machineType: string;
5629
+ } | {
5630
+ contractId: string;
5631
+ reservationLimit: number;
5632
+ unlockLimit: number;
5563
5633
  } | undefined;
5564
- tariffChangeType?: "projectHosting" | "server" | undefined;
5634
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
5565
5635
  } | undefined;
5566
5636
  headers?: {
5567
5637
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5569,8 +5639,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5569
5639
  } | undefined;
5570
5640
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5571
5641
  data: {
5572
- tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
5573
- tariffChangeType?: "projectHosting" | "server" | undefined;
5642
+ tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
5643
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
5574
5644
  };
5575
5645
  } & {
5576
5646
  headers?: Partial<{
@@ -5590,8 +5660,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5590
5660
  [x: string]: unknown;
5591
5661
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5592
5662
  data: {
5593
- tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
5594
- tariffChangeType?: "projectHosting" | "server" | undefined;
5663
+ tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
5664
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
5595
5665
  };
5596
5666
  } & {
5597
5667
  headers?: Partial<{
@@ -5843,16 +5913,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5843
5913
  } | {
5844
5914
  certificateRequestId: string;
5845
5915
  projectId: string;
5916
+ } | {
5917
+ reservationLimit: number;
5918
+ unlockLimit: number;
5846
5919
  } | undefined;
5847
- orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | undefined;
5920
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
5848
5921
  } | undefined;
5849
5922
  headers?: {
5850
5923
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5851
5924
  } | undefined;
5852
5925
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5853
5926
  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;
5927
+ 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;
5928
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
5856
5929
  };
5857
5930
  } & {
5858
5931
  headers?: Partial<{
@@ -5866,8 +5939,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5866
5939
  [x: string]: unknown;
5867
5940
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5868
5941
  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;
5942
+ 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;
5943
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | undefined;
5871
5944
  };
5872
5945
  } & {
5873
5946
  headers?: Partial<{
@@ -5896,8 +5969,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5896
5969
  contractId: string;
5897
5970
  diskspaceInGiB: number;
5898
5971
  machineType: string;
5972
+ } | {
5973
+ contractId: string;
5974
+ reservationLimit: number;
5975
+ unlockLimit: number;
5899
5976
  } | undefined;
5900
- tariffChangeType?: "projectHosting" | "server" | undefined;
5977
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
5901
5978
  } | undefined;
5902
5979
  headers?: {
5903
5980
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5905,8 +5982,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5905
5982
  } | undefined;
5906
5983
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5907
5984
  data: {
5908
- tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
5909
- tariffChangeType?: "projectHosting" | "server" | undefined;
5985
+ tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
5986
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
5910
5987
  };
5911
5988
  } & {
5912
5989
  headers?: Partial<{
@@ -5930,8 +6007,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5930
6007
  [x: string]: unknown;
5931
6008
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5932
6009
  data: {
5933
- tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange) | undefined;
5934
- tariffChangeType?: "projectHosting" | "server" | undefined;
6010
+ tariffChangeData?: (import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange) | undefined;
6011
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | undefined;
5935
6012
  };
5936
6013
  } & {
5937
6014
  headers?: Partial<{
@@ -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.V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
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.V2SystemSoftwareSystemSoftwareIdVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
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. */
@@ -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>;
@@ -4139,6 +4143,20 @@ export declare namespace MittwaldAPIV2 {
4139
4143
  ram?: number;
4140
4144
  vcpu?: number;
4141
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
+ }
4142
4160
  interface OrderMachineTypeSpec {
4143
4161
  machineType?: string;
4144
4162
  }
@@ -4169,6 +4187,9 @@ export declare namespace MittwaldAPIV2 {
4169
4187
  summary: number;
4170
4188
  }
4171
4189
  type OrderOrderType = "NEW_ORDER" | "CONTRACT_CHANGE";
4190
+ interface OrderLeadFyndrOrderPreviewResponse {
4191
+ totalPrice: number;
4192
+ }
4172
4193
  interface OrderDomainOrderPreviewResponse {
4173
4194
  /**
4174
4195
  * Contract duration in months.
@@ -5442,7 +5463,8 @@ export declare namespace MittwaldAPIV2 {
5442
5463
  }
5443
5464
  }
5444
5465
  namespace V2SystemsoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId { }
5445
- namespace V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId {
5466
+ namespace V2SystemSoftwareSystemSoftwareIdVersionsSystemSoftwareVersionId { }
5467
+ namespace V2SystemSoftwaresSystemSoftwareIdVersionsSystemSoftwareVersionId {
5446
5468
  namespace Get {
5447
5469
  namespace Parameters {
5448
5470
  type Path = {
@@ -5765,8 +5787,9 @@ export declare namespace MittwaldAPIV2 {
5765
5787
  }
5766
5788
  }
5767
5789
  }
5790
+ namespace V2SystemSoftwareSystemSoftwareIdVersions { }
5768
5791
  namespace V2SystemsoftwareSystemSoftwareIdVersions { }
5769
- namespace V2SystemSoftwareSystemSoftwareIdVersions {
5792
+ namespace V2SystemSoftwaresSystemSoftwareIdVersions {
5770
5793
  namespace Get {
5771
5794
  namespace Parameters {
5772
5795
  type Path = {
@@ -8645,6 +8668,52 @@ export declare namespace MittwaldAPIV2 {
8645
8668
  }
8646
8669
  }
8647
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
+ }
8648
8717
  namespace V2ProjectsProjectIdContract {
8649
8718
  namespace Get {
8650
8719
  namespace Parameters {
@@ -18583,8 +18652,8 @@ export declare namespace MittwaldAPIV2 {
18583
18652
  namespace Parameters {
18584
18653
  type Path = {};
18585
18654
  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";
18655
+ orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder;
18656
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr";
18588
18657
  }
18589
18658
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
18590
18659
  type Query = {};
@@ -18626,8 +18695,8 @@ export declare namespace MittwaldAPIV2 {
18626
18695
  namespace Parameters {
18627
18696
  type Path = {};
18628
18697
  interface RequestBody {
18629
- tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange;
18630
- tariffChangeType?: "projectHosting" | "server";
18698
+ tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange;
18699
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr";
18631
18700
  }
18632
18701
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
18633
18702
  type Query = {};
@@ -18779,8 +18848,8 @@ export declare namespace MittwaldAPIV2 {
18779
18848
  namespace Parameters {
18780
18849
  type Path = {};
18781
18850
  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";
18851
+ orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview;
18852
+ orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr";
18784
18853
  }
18785
18854
  type Header = {};
18786
18855
  type Query = {};
@@ -18788,7 +18857,7 @@ export declare namespace MittwaldAPIV2 {
18788
18857
  namespace Responses {
18789
18858
  namespace $200 {
18790
18859
  namespace Content {
18791
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse;
18860
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse;
18792
18861
  }
18793
18862
  }
18794
18863
  namespace $400 {
@@ -18827,8 +18896,8 @@ export declare namespace MittwaldAPIV2 {
18827
18896
  namespace Parameters {
18828
18897
  type Path = {};
18829
18898
  interface RequestBody {
18830
- tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange;
18831
- tariffChangeType?: "projectHosting" | "server";
18899
+ tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange;
18900
+ tariffChangeType?: "projectHosting" | "server" | "leadFyndr";
18832
18901
  }
18833
18902
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
18834
18903
  type Query = {};
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.149.0';
1
+ export declare const MittwaldAPIClientVersion = '4.151.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.150.0",
3
+ "version": "4.152.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": "317870b389e9b82cd807c960480d494ef9d2bf24"
83
+ "gitHead": "c14d8e96912392d4cdb99f462926e5f08dc766b9"
84
84
  }