@mittwald/api-client 4.153.0 → 4.154.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.
@@ -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. */
@@ -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 = {
@@ -2332,3 +2332,9 @@ export const verificationVerifyCompany = {
2332
2332
  method: "POST",
2333
2333
  operationId: "verification-verify-company",
2334
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.153.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: {
@@ -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<{
@@ -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: {
@@ -781,3 +781,5 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
781
781
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
782
782
  /** Check if a company exists. */
783
783
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
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">>;
@@ -1558,6 +1558,10 @@ export declare namespace MittwaldAPIV2 {
1558
1558
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1559
1559
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1560
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[];
@@ -4899,6 +4904,11 @@ export declare namespace MittwaldAPIV2 {
4899
4904
  name: string;
4900
4905
  value: string;
4901
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;
@@ -15740,7 +15750,7 @@ export declare namespace MittwaldAPIV2 {
15740
15750
  */
15741
15751
  published: boolean;
15742
15752
  /**
15743
- * When setting withdrawing an extension a reason is required.
15753
+ * When withdrawing an extension a reason is required.
15744
15754
  */
15745
15755
  reason?: string;
15746
15756
  }
@@ -17182,6 +17192,9 @@ export declare namespace MittwaldAPIV2 {
17182
17192
  * @maxItems 15
17183
17193
  */
17184
17194
  businessFields?: string[];
17195
+ locationCity?: string;
17196
+ locationPostCode?: string;
17197
+ locationRadiusInKm?: number;
17185
17198
  "basic:timeToFirstByteMs:min"?: number;
17186
17199
  "basic:timeToFirstByteMs:max"?: number;
17187
17200
  "basic:desktop:performance:min"?: number;
@@ -17243,6 +17256,9 @@ export declare namespace MittwaldAPIV2 {
17243
17256
  * @maxItems 15
17244
17257
  */
17245
17258
  businessFields?: string[];
17259
+ locationCity?: string;
17260
+ locationPostCode?: string;
17261
+ locationRadiusInKm?: number;
17246
17262
  "basic:timeToFirstByteMs:min"?: number;
17247
17263
  "basic:timeToFirstByteMs:max"?: number;
17248
17264
  "basic:desktop:performance:min"?: number;
@@ -24500,5 +24516,59 @@ export declare namespace MittwaldAPIV2 {
24500
24516
  }
24501
24517
  }
24502
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.153.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.154.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": "f5dd9212b6545fb78505c1c813ded5b92ef08275"
84
84
  }