@mittwald/api-client 4.154.0 → 4.156.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.
@@ -254,6 +254,8 @@ const buildFileApi = (baseClient) => ({
254
254
  const buildLeadFyndrApi = (baseClient) => ({
255
255
  /** Get your LeadFyndr request. */
256
256
  leadfyndrGetLeadFyndrProfileRequestExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadFyndrProfileRequestExperimental, baseClient.leadFyndr.leadfyndrGetLeadFyndrProfileRequestExperimental).getApiResource,
257
+ /** Get cities in DACH. */
258
+ leadfyndrGetCitiesExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetCitiesExperimental, baseClient.leadFyndr.leadfyndrGetCitiesExperimental).getApiResource,
257
259
  /** Get a simple lead. Use the unlocked route for more detail leads. */
258
260
  leadfyndrGetLeadExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetLeadExperimental, baseClient.leadFyndr.leadfyndrGetLeadExperimental).getApiResource,
259
261
  /** Get your LeadFyndr profile. */
@@ -266,8 +268,6 @@ const buildLeadFyndrApi = (baseClient) => ({
266
268
  leadfyndrListLeadsExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListLeadsExperimental, baseClient.leadFyndr.leadfyndrListLeadsExperimental).getApiResource,
267
269
  /** Get all unlocked leads. Organisation can unlock leads. */
268
270
  leadfyndrListUnlockedLeadsExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrListUnlockedLeadsExperimental, baseClient.leadFyndr.leadfyndrListUnlockedLeadsExperimental).getApiResource,
269
- /** Get cities in DACH. */
270
- leadfyndrGetCitiesExperimental: new ApiCallAsyncResourceFactory(descriptors.leadfyndrGetCitiesExperimental, baseClient.leadFyndr.leadfyndrGetCitiesExperimental).getApiResource,
271
271
  });
272
272
  const buildMailApi = (baseClient) => ({
273
273
  /** List DeliveryBoxes belonging to a Project. */
@@ -701,6 +701,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
701
701
  leadfyndrGetLeadFyndrProfileRequestExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetLeadFyndrProfileRequestExperimental),
702
702
  /** Create a new access request for LeadFyndr. */
703
703
  leadfyndrCreateLeadFyndrAccessRequestExperimental: this.requestFunctionFactory(descriptors.leadfyndrCreateLeadFyndrAccessRequestExperimental),
704
+ /** Get cities in DACH. */
705
+ leadfyndrGetCitiesExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetCitiesExperimental),
704
706
  /** Get a simple lead. Use the unlocked route for more detail leads. */
705
707
  leadfyndrGetLeadExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetLeadExperimental),
706
708
  /** Get your LeadFyndr profile. */
@@ -719,8 +721,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
719
721
  leadfyndrReserveUnlockedLeadExperimental: this.requestFunctionFactory(descriptors.leadfyndrReserveUnlockedLeadExperimental),
720
722
  /** Removes a reservation on a unlocked lead for the given customerId. */
721
723
  leadfyndrRemoveUnlockedLeadReservationExperimental: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservationExperimental),
722
- /** Get cities in DACH. */
723
- leadfyndrGetCitiesExperimental: this.requestFunctionFactory(descriptors.leadfyndrGetCitiesExperimental),
724
724
  };
725
725
  /** The page insights API allows you to get page insights information. */
726
726
  pageInsights = {
@@ -1408,6 +1408,12 @@ export const leadfyndrCreateLeadFyndrAccessRequestExperimental = {
1408
1408
  method: "POST",
1409
1409
  operationId: "leadfyndr-create-lead-fyndr-access-request-experimental",
1410
1410
  };
1411
+ /** Get cities in DACH. */
1412
+ export const leadfyndrGetCitiesExperimental = {
1413
+ path: "/v2-experimental/cities",
1414
+ method: "GET",
1415
+ operationId: "leadfyndr-get-cities-experimental",
1416
+ };
1411
1417
  /** Get a simple lead. Use the unlocked route for more detail leads. */
1412
1418
  export const leadfyndrGetLeadExperimental = {
1413
1419
  path: "/v2-experimental/customers/{customerId}/leads/{leadId}",
@@ -2332,9 +2338,3 @@ export const verificationVerifyCompany = {
2332
2338
  method: "POST",
2333
2339
  operationId: "verification-verify-company",
2334
2340
  };
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.153.0';
1
+ export const MittwaldAPIClientVersion = '4.155.0';
@@ -1892,6 +1892,16 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
1892
1892
  resultOn?: string | undefined;
1893
1893
  status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
1894
1894
  }>;
1895
+ /** Get cities in DACH. */
1896
+ leadfyndrGetCitiesExperimental: (conf: {
1897
+ queryParameters: {
1898
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1899
+ input: string;
1900
+ };
1901
+ headers?: {
1902
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1903
+ } | undefined;
1904
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[]>;
1895
1905
  /** Get a simple lead. Use the unlocked route for more detail leads. */
1896
1906
  leadfyndrGetLeadExperimental: (conf: {
1897
1907
  leadId: string;
@@ -2047,16 +2057,6 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
2047
2057
  skip: number;
2048
2058
  totalCount: number;
2049
2059
  }>;
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[]>;
2060
2060
  };
2061
2061
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2062
2062
  /** List DeliveryBoxes belonging to a Project. */
@@ -20675,6 +20675,52 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20675
20675
  }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
20676
20676
  [x: string]: unknown;
20677
20677
  }, 429, "application/json">>>;
20678
+ /** Get cities in DACH. */
20679
+ leadfyndrGetCitiesExperimental: (request: {
20680
+ queryParameters: {
20681
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
20682
+ input: string;
20683
+ };
20684
+ headers?: {
20685
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
20686
+ } | undefined;
20687
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
20688
+ headers?: Partial<{
20689
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20690
+ }>;
20691
+ } & {
20692
+ queryParameters: {
20693
+ input: string;
20694
+ } & Partial<{
20695
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20696
+ }>;
20697
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
20698
+ [x: string]: unknown;
20699
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
20700
+ [x: string]: unknown;
20701
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
20702
+ [x: string]: unknown;
20703
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
20704
+ [x: string]: unknown;
20705
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
20706
+ headers?: Partial<{
20707
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20708
+ }>;
20709
+ } & {
20710
+ queryParameters: {
20711
+ input: string;
20712
+ } & Partial<{
20713
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20714
+ }>;
20715
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrCity[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
20716
+ [x: string]: unknown;
20717
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
20718
+ [x: string]: unknown;
20719
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
20720
+ [x: string]: unknown;
20721
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
20722
+ [x: string]: unknown;
20723
+ }, 429, "application/json">>>;
20678
20724
  /** Get a simple lead. Use the unlocked route for more detail leads. */
20679
20725
  leadfyndrGetLeadExperimental: (request: {
20680
20726
  leadId: string;
@@ -21318,52 +21364,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21318
21364
  }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
21319
21365
  [x: string]: unknown;
21320
21366
  }, 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">>>;
21367
21367
  };
21368
21368
  /** The page insights API allows you to get page insights information. */
21369
21369
  readonly pageInsights: {
@@ -473,6 +473,8 @@ export declare const invoiceListCustomerInvoices: OpenAPIOperation<RequestType<S
473
473
  export declare const leadfyndrGetLeadFyndrProfileRequestExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
474
474
  /** Create a new access request for LeadFyndr. */
475
475
  export declare const leadfyndrCreateLeadFyndrAccessRequestExperimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadFyndrProfileRequest.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
476
+ /** Get cities in DACH. */
477
+ 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">>;
476
478
  /** Get a simple lead. Use the unlocked route for more detail leads. */
477
479
  export declare const leadfyndrGetLeadExperimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExperimentalCustomersCustomerIdLeadsLeadId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
478
480
  /** Get your LeadFyndr profile. */
@@ -781,5 +783,3 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
781
783
  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
784
  /** Check if a company exists. */
783
785
  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">>;
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">>;
@@ -942,6 +942,10 @@ export declare namespace MittwaldAPIV2 {
942
942
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequestExperimental>;
943
943
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequestExperimental, TStatus>;
944
944
  }
945
+ namespace LeadfyndrGetCitiesExperimental {
946
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetCitiesExperimental>;
947
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetCitiesExperimental, TStatus>;
948
+ }
945
949
  namespace LeadfyndrGetLeadExperimental {
946
950
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadExperimental>;
947
951
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadExperimental, TStatus>;
@@ -1558,10 +1562,6 @@ export declare namespace MittwaldAPIV2 {
1558
1562
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1559
1563
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1560
1564
  }
1561
- namespace LeadfyndrGetCitiesExperimental {
1562
- type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetCitiesExperimental>;
1563
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetCitiesExperimental, TStatus>;
1564
- }
1565
1565
  }
1566
1566
  namespace Components {
1567
1567
  namespace Schemas {
@@ -3545,6 +3545,11 @@ export declare namespace MittwaldAPIV2 {
3545
3545
  mobile: MittwaldAPIV2.Components.Schemas.LeadfyndrLighthouse;
3546
3546
  timeToFirstByteMs?: number;
3547
3547
  }
3548
+ interface LeadfyndrCity {
3549
+ city: string;
3550
+ country: string;
3551
+ postCode: string;
3552
+ }
3548
3553
  interface LeadfyndrContact {
3549
3554
  address?: {
3550
3555
  address_prefix?: string;
@@ -4904,11 +4909,6 @@ export declare namespace MittwaldAPIV2 {
4904
4909
  name: string;
4905
4910
  value: string;
4906
4911
  }
4907
- interface LeadfyndrCity {
4908
- city: string;
4909
- country: string;
4910
- postCode: string;
4911
- }
4912
4912
  interface CommonsAddress {
4913
4913
  street: string;
4914
4914
  houseNumber: string;
@@ -16898,6 +16898,60 @@ export declare namespace MittwaldAPIV2 {
16898
16898
  }
16899
16899
  }
16900
16900
  }
16901
+ namespace V2Cities { }
16902
+ namespace V2ExperimentalCities {
16903
+ namespace Get {
16904
+ namespace Parameters {
16905
+ type Path = {};
16906
+ type Header = {};
16907
+ type Query = {
16908
+ input: string;
16909
+ };
16910
+ }
16911
+ namespace Responses {
16912
+ namespace $200 {
16913
+ namespace Content {
16914
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrCity[];
16915
+ }
16916
+ }
16917
+ namespace $400 {
16918
+ namespace Content {
16919
+ interface ApplicationJson {
16920
+ [k: string]: unknown;
16921
+ }
16922
+ }
16923
+ }
16924
+ namespace $403 {
16925
+ namespace Content {
16926
+ interface ApplicationJson {
16927
+ [k: string]: unknown;
16928
+ }
16929
+ }
16930
+ }
16931
+ namespace $404 {
16932
+ namespace Content {
16933
+ interface ApplicationJson {
16934
+ [k: string]: unknown;
16935
+ }
16936
+ }
16937
+ }
16938
+ namespace $429 {
16939
+ namespace Content {
16940
+ interface ApplicationJson {
16941
+ [k: string]: unknown;
16942
+ }
16943
+ }
16944
+ }
16945
+ namespace Default {
16946
+ namespace Content {
16947
+ interface ApplicationJson {
16948
+ [k: string]: unknown;
16949
+ }
16950
+ }
16951
+ }
16952
+ }
16953
+ }
16954
+ }
16901
16955
  namespace V2CustomersCustomerIdLeadsLeadId { }
16902
16956
  namespace V2ExperimentalCustomersCustomerIdLeadsLeadId {
16903
16957
  namespace Get {
@@ -24516,59 +24570,5 @@ export declare namespace MittwaldAPIV2 {
24516
24570
  }
24517
24571
  }
24518
24572
  }
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
- }
24573
24573
  }
24574
24574
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.153.0';
1
+ export declare const MittwaldAPIClientVersion = '4.155.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.156.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": "60a24ba11e2f89bf3c1c0b9b1a2a138e22e70d54"
84
84
  }