@mittwald/api-client 4.153.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. */
@@ -266,6 +266,8 @@ const buildLeadFyndrApi = (baseClient) => ({
266
266
  leadfyndrListLeadsExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListLeadsExperimental, baseClient.leadFyndr.leadfyndrListLeadsExperimental).getApiResource,
267
267
  /** Get all unlocked leads. Organisation can unlock leads. */
268
268
  leadfyndrListUnlockedLeadsExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeadsExperimental, baseClient.leadFyndr.leadfyndrListUnlockedLeadsExperimental).getApiResource,
269
+ /** Get cities in DACH. */
270
+ leadfyndrGetCitiesExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetCitiesExperimental, baseClient.leadFyndr.leadfyndrGetCitiesExperimental).getApiResource,
269
271
  });
270
272
  const buildMailApi = (baseClient) => ({
271
273
  /** List DeliveryBoxes belonging to a Project. */
@@ -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 = {
@@ -719,6 +719,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
719
719
  leadfyndrReserveUnlockedLeadExperimental: this.requestFunctionFactory(descriptors.leadfyndrReserveUnlockedLeadExperimental),
720
720
  /** Removes a reservation on a unlocked lead for the given customerId. */
721
721
  leadfyndrRemoveUnlockedLeadReservationExperimental: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservationExperimental),
722
+ /** Get cities in DACH. */
723
+ leadfyndrGetCitiesExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetCitiesExperimental),
722
724
  };
723
725
  /** The page insights API allows you to get page insights information. */
724
726
  pageInsights = {
@@ -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,3 +2326,15 @@ 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
+ /** Get cities in DACH. */
2336
+ export const leadfyndrGetCitiesExperimental = {
2337
+ path: "/v2-experimental/cities",
2338
+ method: "GET",
2339
+ operationId: "leadfyndr-get-cities-experimental",
2340
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.152.0';
1
+ export const MittwaldAPIClientVersion = '4.154.0';
@@ -457,6 +457,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
457
457
  shortId: string;
458
458
  stackId: string;
459
459
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
460
+ statusSetAt: string;
460
461
  }>;
461
462
  /** List Services belonging to a Project. */
462
463
  listServices: (conf: {
@@ -566,21 +567,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
566
567
  customerId: string;
567
568
  termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
568
569
  }>;
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
- }>;
584
570
  /** Return the Contract for the given Project. */
585
571
  getDetailOfContractByProject: (conf: {
586
572
  projectId: string;
@@ -833,6 +819,21 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
833
819
  templateNames?: string[] | undefined;
834
820
  } | undefined;
835
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
+ }>;
836
837
  };
837
838
  declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
838
839
  /** Get all conversation the authenticated user has created or has access to. */
@@ -1987,6 +1988,9 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
1987
1988
  salesVolumeMax?: number | undefined;
1988
1989
  technologies?: string[] | undefined;
1989
1990
  businessFields?: string[] | undefined;
1991
+ locationCity?: string | undefined;
1992
+ locationPostCode?: string | undefined;
1993
+ locationRadiusInKm?: number | undefined;
1990
1994
  "basic:timeToFirstByteMs:min"?: number | undefined;
1991
1995
  "basic:timeToFirstByteMs:max"?: number | undefined;
1992
1996
  "basic:desktop:performance:min"?: number | undefined;
@@ -2021,6 +2025,9 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2021
2025
  salesVolumeMax?: number | undefined;
2022
2026
  technologies?: string[] | undefined;
2023
2027
  businessFields?: string[] | undefined;
2028
+ locationCity?: string | undefined;
2029
+ locationPostCode?: string | undefined;
2030
+ locationRadiusInKm?: number | undefined;
2024
2031
  "basic:timeToFirstByteMs:min"?: number | undefined;
2025
2032
  "basic:timeToFirstByteMs:max"?: number | undefined;
2026
2033
  "basic:desktop:performance:min"?: number | undefined;
@@ -2040,6 +2047,16 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2040
2047
  skip: number;
2041
2048
  totalCount: number;
2042
2049
  }>;
2050
+ /** Get cities in DACH. */
2051
+ leadfyndrGetCitiesExperimental: (conf: {
2052
+ queryParameters: {
2053
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2054
+ input: string;
2055
+ };
2056
+ headers?: {
2057
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2058
+ } | undefined;
2059
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[]>;
2043
2060
  };
2044
2061
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2045
2062
  /** List DeliveryBoxes belonging to a Project. */
@@ -3292,6 +3292,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3292
3292
  shortId: string;
3293
3293
  stackId: string;
3294
3294
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
3295
+ statusSetAt: string;
3295
3296
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3296
3297
  [x: string]: unknown;
3297
3298
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -3330,6 +3331,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3330
3331
  shortId: string;
3331
3332
  stackId: string;
3332
3333
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
3334
+ statusSetAt: string;
3333
3335
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3334
3336
  [x: string]: unknown;
3335
3337
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -4566,68 +4568,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4566
4568
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4567
4569
  [x: string]: unknown;
4568
4570
  }, 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">>>;
4631
4571
  /** Return the Contract for the given Project. */
4632
4572
  getDetailOfContractByProject: (request: {
4633
4573
  projectId: string;
@@ -6031,6 +5971,68 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6031
5971
  }, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
6032
5972
  [x: string]: unknown;
6033
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">>>;
6034
6036
  };
6035
6037
  /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
6036
6038
  readonly marketplace: {
@@ -20997,6 +20999,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20997
20999
  salesVolumeMax?: number | undefined;
20998
21000
  technologies?: string[] | undefined;
20999
21001
  businessFields?: string[] | undefined;
21002
+ locationCity?: string | undefined;
21003
+ locationPostCode?: string | undefined;
21004
+ locationRadiusInKm?: number | undefined;
21000
21005
  "basic:timeToFirstByteMs:min"?: number | undefined;
21001
21006
  "basic:timeToFirstByteMs:max"?: number | undefined;
21002
21007
  "basic:desktop:performance:min"?: number | undefined;
@@ -21027,6 +21032,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21027
21032
  salesVolumeMax?: number | undefined;
21028
21033
  technologies?: string[] | undefined;
21029
21034
  businessFields?: string[] | undefined;
21035
+ locationCity?: string | undefined;
21036
+ locationPostCode?: string | undefined;
21037
+ locationRadiusInKm?: number | undefined;
21030
21038
  "basic:timeToFirstByteMs:min"?: number | undefined;
21031
21039
  "basic:timeToFirstByteMs:max"?: number | undefined;
21032
21040
  "basic:desktop:performance:min"?: number | undefined;
@@ -21066,6 +21074,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21066
21074
  salesVolumeMax?: number | undefined;
21067
21075
  technologies?: string[] | undefined;
21068
21076
  businessFields?: string[] | undefined;
21077
+ locationCity?: string | undefined;
21078
+ locationPostCode?: string | undefined;
21079
+ locationRadiusInKm?: number | undefined;
21069
21080
  "basic:timeToFirstByteMs:min"?: number | undefined;
21070
21081
  "basic:timeToFirstByteMs:max"?: number | undefined;
21071
21082
  "basic:desktop:performance:min"?: number | undefined;
@@ -21104,6 +21115,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21104
21115
  salesVolumeMax?: number | undefined;
21105
21116
  technologies?: string[] | undefined;
21106
21117
  businessFields?: string[] | undefined;
21118
+ locationCity?: string | undefined;
21119
+ locationPostCode?: string | undefined;
21120
+ locationRadiusInKm?: number | undefined;
21107
21121
  "basic:timeToFirstByteMs:min"?: number | undefined;
21108
21122
  "basic:timeToFirstByteMs:max"?: number | undefined;
21109
21123
  "basic:desktop:performance:min"?: number | undefined;
@@ -21135,6 +21149,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21135
21149
  salesVolumeMax?: number | undefined;
21136
21150
  technologies?: string[] | undefined;
21137
21151
  businessFields?: string[] | undefined;
21152
+ locationCity?: string | undefined;
21153
+ locationPostCode?: string | undefined;
21154
+ locationRadiusInKm?: number | undefined;
21138
21155
  "basic:timeToFirstByteMs:min"?: number | undefined;
21139
21156
  "basic:timeToFirstByteMs:max"?: number | undefined;
21140
21157
  "basic:desktop:performance:min"?: number | undefined;
@@ -21175,6 +21192,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21175
21192
  salesVolumeMax?: number | undefined;
21176
21193
  technologies?: string[] | undefined;
21177
21194
  businessFields?: string[] | undefined;
21195
+ locationCity?: string | undefined;
21196
+ locationPostCode?: string | undefined;
21197
+ locationRadiusInKm?: number | undefined;
21178
21198
  "basic:timeToFirstByteMs:min"?: number | undefined;
21179
21199
  "basic:timeToFirstByteMs:max"?: number | undefined;
21180
21200
  "basic:desktop:performance:min"?: number | undefined;
@@ -21298,6 +21318,52 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21298
21318
  }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
21299
21319
  [x: string]: unknown;
21300
21320
  }, 429, "application/json">>>;
21321
+ /** Get cities in DACH. */
21322
+ leadfyndrGetCitiesExperimental: (request: {
21323
+ queryParameters: {
21324
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
21325
+ input: string;
21326
+ };
21327
+ headers?: {
21328
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
21329
+ } | undefined;
21330
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
21331
+ headers?: Partial<{
21332
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21333
+ }>;
21334
+ } & {
21335
+ queryParameters: {
21336
+ input: string;
21337
+ } & Partial<{
21338
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21339
+ }>;
21340
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
21341
+ [x: string]: unknown;
21342
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
21343
+ [x: string]: unknown;
21344
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
21345
+ [x: string]: unknown;
21346
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
21347
+ [x: string]: unknown;
21348
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
21349
+ headers?: Partial<{
21350
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21351
+ }>;
21352
+ } & {
21353
+ queryParameters: {
21354
+ input: string;
21355
+ } & Partial<{
21356
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21357
+ }>;
21358
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
21359
+ [x: string]: unknown;
21360
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
21361
+ [x: string]: unknown;
21362
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
21363
+ [x: string]: unknown;
21364
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
21365
+ [x: string]: unknown;
21366
+ }, 429, "application/json">>>;
21301
21367
  };
21302
21368
  /** The page insights API allows you to get page insights information. */
21303
21369
  readonly pageInsights: {
@@ -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,3 +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
+ /** Get cities in DACH. */
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,14 @@ 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
+ namespace LeadfyndrGetCitiesExperimental {
1562
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetCitiesExperimental>;
1563
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetCitiesExperimental, TStatus>;
1564
+ }
1561
1565
  }
1562
1566
  namespace Components {
1563
1567
  namespace Schemas {
@@ -2011,6 +2015,7 @@ export declare namespace MittwaldAPIV2 {
2011
2015
  shortId: string;
2012
2016
  stackId: string;
2013
2017
  status: MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
2018
+ statusSetAt: string;
2014
2019
  }
2015
2020
  interface ContainerServiceState {
2016
2021
  command?: string[];
@@ -4143,20 +4148,6 @@ export declare namespace MittwaldAPIV2 {
4143
4148
  ram?: number;
4144
4149
  vcpu?: number;
4145
4150
  }
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
- }
4160
4151
  interface OrderMachineTypeSpec {
4161
4152
  machineType?: string;
4162
4153
  }
@@ -4187,9 +4178,6 @@ export declare namespace MittwaldAPIV2 {
4187
4178
  summary: number;
4188
4179
  }
4189
4180
  type OrderOrderType = "NEW_ORDER" | "CONTRACT_CHANGE";
4190
- interface OrderLeadFyndrOrderPreviewResponse {
4191
- totalPrice: number;
4192
- }
4193
4181
  interface OrderDomainOrderPreviewResponse {
4194
4182
  /**
4195
4183
  * Contract duration in months.
@@ -4899,6 +4887,28 @@ export declare namespace MittwaldAPIV2 {
4899
4887
  name: string;
4900
4888
  value: string;
4901
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
+ interface LeadfyndrCity {
4908
+ city: string;
4909
+ country: string;
4910
+ postCode: string;
4911
+ }
4902
4912
  interface CommonsAddress {
4903
4913
  street: string;
4904
4914
  houseNumber: string;
@@ -8668,52 +8678,6 @@ export declare namespace MittwaldAPIV2 {
8668
8678
  }
8669
8679
  }
8670
8680
  }
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
- }
8717
8681
  namespace V2ProjectsProjectIdContract {
8718
8682
  namespace Get {
8719
8683
  namespace Parameters {
@@ -15740,7 +15704,7 @@ export declare namespace MittwaldAPIV2 {
15740
15704
  */
15741
15705
  published: boolean;
15742
15706
  /**
15743
- * When setting withdrawing an extension a reason is required.
15707
+ * When withdrawing an extension a reason is required.
15744
15708
  */
15745
15709
  reason?: string;
15746
15710
  }
@@ -17182,6 +17146,9 @@ export declare namespace MittwaldAPIV2 {
17182
17146
  * @maxItems 15
17183
17147
  */
17184
17148
  businessFields?: string[];
17149
+ locationCity?: string;
17150
+ locationPostCode?: string;
17151
+ locationRadiusInKm?: number;
17185
17152
  "basic:timeToFirstByteMs:min"?: number;
17186
17153
  "basic:timeToFirstByteMs:max"?: number;
17187
17154
  "basic:desktop:performance:min"?: number;
@@ -17243,6 +17210,9 @@ export declare namespace MittwaldAPIV2 {
17243
17210
  * @maxItems 15
17244
17211
  */
17245
17212
  businessFields?: string[];
17213
+ locationCity?: string;
17214
+ locationPostCode?: string;
17215
+ locationRadiusInKm?: number;
17246
17216
  "basic:timeToFirstByteMs:min"?: number;
17247
17217
  "basic:timeToFirstByteMs:max"?: number;
17248
17218
  "basic:desktop:performance:min"?: number;
@@ -24500,5 +24470,105 @@ export declare namespace MittwaldAPIV2 {
24500
24470
  }
24501
24471
  }
24502
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
+ namespace V2Cities { }
24520
+ namespace V2ExperimentalCities {
24521
+ namespace Get {
24522
+ namespace Parameters {
24523
+ type Path = {};
24524
+ type Header = {};
24525
+ type Query = {
24526
+ input: string;
24527
+ };
24528
+ }
24529
+ namespace Responses {
24530
+ namespace $200 {
24531
+ namespace Content {
24532
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrCity[];
24533
+ }
24534
+ }
24535
+ namespace $400 {
24536
+ namespace Content {
24537
+ interface ApplicationJson {
24538
+ [k: string]: unknown;
24539
+ }
24540
+ }
24541
+ }
24542
+ namespace $403 {
24543
+ namespace Content {
24544
+ interface ApplicationJson {
24545
+ [k: string]: unknown;
24546
+ }
24547
+ }
24548
+ }
24549
+ namespace $404 {
24550
+ namespace Content {
24551
+ interface ApplicationJson {
24552
+ [k: string]: unknown;
24553
+ }
24554
+ }
24555
+ }
24556
+ namespace $429 {
24557
+ namespace Content {
24558
+ interface ApplicationJson {
24559
+ [k: string]: unknown;
24560
+ }
24561
+ }
24562
+ }
24563
+ namespace Default {
24564
+ namespace Content {
24565
+ interface ApplicationJson {
24566
+ [k: string]: unknown;
24567
+ }
24568
+ }
24569
+ }
24570
+ }
24571
+ }
24572
+ }
24503
24573
  }
24504
24574
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.152.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.153.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": "46e30aeef9bc51440075481f13ce4945bf66afbe"
83
+ "gitHead": "549b3053cd195e18cf66a16c373147838d4961ca"
84
84
  }