@mittwald/api-client 4.87.0 → 4.88.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.
@@ -716,6 +716,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
716
716
  misc = {
717
717
  /** Obtain a service token. */
718
718
  servicetokenAuthenticateService: this.requestFunctionFactory(descriptors.servicetokenAuthenticateService),
719
+ /** Check if an address exists. */
720
+ verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
721
+ /** Check if a company exists. */
722
+ verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
719
723
  };
720
724
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
721
725
  sshsftpUser = {
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.86.0';
1
+ export const MittwaldAPIClientVersion = '4.87.0';
@@ -20346,6 +20346,94 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20346
20346
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
20347
20347
  [x: string]: unknown;
20348
20348
  }, 429, "application/json">>>;
20349
+ /** Check if an address exists. */
20350
+ verificationVerifyAddress: (request: {
20351
+ data: {
20352
+ city: string;
20353
+ country: string;
20354
+ street: string;
20355
+ zip: string;
20356
+ };
20357
+ headers?: {
20358
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
20359
+ } | undefined;
20360
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
20361
+ data: {
20362
+ city: string;
20363
+ country: string;
20364
+ street: string;
20365
+ zip: string;
20366
+ };
20367
+ } & {
20368
+ headers?: Partial<{
20369
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20370
+ }>;
20371
+ }, import("@mittwald/api-client-commons").Response<{
20372
+ exists: boolean;
20373
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
20374
+ [x: string]: unknown;
20375
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
20376
+ data: {
20377
+ city: string;
20378
+ country: string;
20379
+ street: string;
20380
+ zip: string;
20381
+ };
20382
+ } & {
20383
+ headers?: Partial<{
20384
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20385
+ }>;
20386
+ }, import("@mittwald/api-client-commons").Response<{
20387
+ exists: boolean;
20388
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
20389
+ [x: string]: unknown;
20390
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
20391
+ /** Check if a company exists. */
20392
+ verificationVerifyCompany: (request: {
20393
+ data: {
20394
+ name: string;
20395
+ };
20396
+ headers?: {
20397
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
20398
+ "x-access-token"?: string | undefined;
20399
+ } | undefined;
20400
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
20401
+ data: {
20402
+ name: string;
20403
+ };
20404
+ } & {
20405
+ headers?: Partial<{
20406
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20407
+ }>;
20408
+ } & {
20409
+ headers: {
20410
+ "x-access-token"?: string | undefined;
20411
+ } & Partial<{
20412
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20413
+ }>;
20414
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
20415
+ exists: boolean;
20416
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
20417
+ [x: string]: unknown;
20418
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
20419
+ data: {
20420
+ name: string;
20421
+ };
20422
+ } & {
20423
+ headers?: Partial<{
20424
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20425
+ }>;
20426
+ } & {
20427
+ headers: {
20428
+ "x-access-token"?: string | undefined;
20429
+ } & Partial<{
20430
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
20431
+ }>;
20432
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
20433
+ exists: boolean;
20434
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
20435
+ [x: string]: unknown;
20436
+ }, 429, "application/json">>>;
20349
20437
  };
20350
20438
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
20351
20439
  readonly sshsftpUser: {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.86.0';
1
+ export declare const MittwaldAPIClientVersion = '4.87.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.87.0",
3
+ "version": "4.88.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": "48d666d3d0dfba46e56f7b4cebb3944494e04fa4"
83
+ "gitHead": "77e56046e77881ff002a6f4ee67641f1117d9b46"
84
84
  }