@mittwald/api-client 4.86.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.85.0';
1
+ export const MittwaldAPIClientVersion = '4.87.0';
@@ -1099,7 +1099,6 @@ declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1099
1099
  listMysqlCharsets: (conf?: {
1100
1100
  headers?: {
1101
1101
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1102
- "x-access-token"?: string | undefined;
1103
1102
  } | undefined;
1104
1103
  queryParameters?: {
1105
1104
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -9355,7 +9355,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9355
9355
  listMysqlCharsets: (request?: {
9356
9356
  headers?: {
9357
9357
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9358
- "x-access-token"?: string | undefined;
9359
9358
  } | undefined;
9360
9359
  queryParameters?: {
9361
9360
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -9371,12 +9370,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9371
9370
  } & Partial<{
9372
9371
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9373
9372
  }>;
9374
- } & {
9375
- headers: {
9376
- "x-access-token"?: string | undefined;
9377
- } & Partial<{
9378
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9379
- }>;
9380
9373
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseMySqlCharacterSettings[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9381
9374
  [x: string]: unknown;
9382
9375
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9393,12 +9386,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9393
9386
  } & Partial<{
9394
9387
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9395
9388
  }>;
9396
- } & {
9397
- headers: {
9398
- "x-access-token"?: string | undefined;
9399
- } & Partial<{
9400
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9401
- }>;
9402
9389
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseMySqlCharacterSettings[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9403
9390
  [x: string]: unknown;
9404
9391
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -20359,6 +20346,94 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20359
20346
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
20360
20347
  [x: string]: unknown;
20361
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">>>;
20362
20437
  };
20363
20438
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
20364
20439
  readonly sshsftpUser: {
@@ -9779,7 +9779,7 @@ export declare namespace MittwaldAPIV2 {
9779
9779
  namespace Get {
9780
9780
  namespace Parameters {
9781
9781
  type Path = {};
9782
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9782
+ type Header = {};
9783
9783
  type Query = {
9784
9784
  version?: string;
9785
9785
  };
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.85.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.86.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": "02386c647939a8a2d8f6219074a3f27d9635a3bf"
83
+ "gitHead": "77e56046e77881ff002a6f4ee67641f1117d9b46"
84
84
  }