@mittwald/api-client 3.0.9 → 3.0.11

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.
@@ -922,7 +922,6 @@ declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
922
922
  isShared: boolean;
923
923
  name: string;
924
924
  projectId: string;
925
- size: number;
926
925
  updatedAt: string;
927
926
  version: string;
928
927
  }>;
@@ -4058,7 +4058,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4058
4058
  isShared: boolean;
4059
4059
  name: string;
4060
4060
  projectId: string;
4061
- size: number;
4062
4061
  updatedAt: string;
4063
4062
  version: string;
4064
4063
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -4633,6 +4632,183 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4633
4632
  [x: string]: unknown;
4634
4633
  }, 404, "application/json">>>;
4635
4634
  };
4635
+ /** The notification API allows you to manage your notifications. */
4636
+ readonly notification: {
4637
+ /** Subscribe a user to the mStudio newsletter. */
4638
+ newsletterSubscribeUser: (request?: {
4639
+ data?: {
4640
+ firstName?: string | undefined;
4641
+ lastName?: string | undefined;
4642
+ } | undefined;
4643
+ headers?: {
4644
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4645
+ "x-access-token"?: string | undefined;
4646
+ } | undefined;
4647
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4648
+ data: {
4649
+ firstName?: string | undefined;
4650
+ lastName?: string | undefined;
4651
+ };
4652
+ } & {
4653
+ headers?: Partial<{
4654
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4655
+ }> | undefined;
4656
+ } & {
4657
+ headers: {
4658
+ "x-access-token"?: string | undefined;
4659
+ } & Partial<{
4660
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4661
+ }>;
4662
+ }, import("@mittwald/api-client-commons").Response<{
4663
+ active: boolean;
4664
+ email: string;
4665
+ registered: boolean;
4666
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4667
+ [x: string]: unknown;
4668
+ }, 400, "application/json">>>;
4669
+ /** Getting the subscription status of the subscription. */
4670
+ newsletterGetInfo: (request?: {
4671
+ headers?: {
4672
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4673
+ "x-access-token"?: string | undefined;
4674
+ } | undefined;
4675
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4676
+ headers?: Partial<{
4677
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4678
+ }> | undefined;
4679
+ } & {
4680
+ headers: {
4681
+ "x-access-token"?: string | undefined;
4682
+ } & Partial<{
4683
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4684
+ }>;
4685
+ }, import("@mittwald/api-client-commons").Response<{
4686
+ active: boolean;
4687
+ email: string;
4688
+ registered: boolean;
4689
+ }, 200, "application/json">>>;
4690
+ /** Unsubscribe a user from the mStudio newsletter. */
4691
+ newsletterUnsubscribeUser: (request?: {
4692
+ headers?: {
4693
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4694
+ "x-access-token"?: string | undefined;
4695
+ } | undefined;
4696
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4697
+ headers?: Partial<{
4698
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4699
+ }> | undefined;
4700
+ } & {
4701
+ headers: {
4702
+ "x-access-token"?: string | undefined;
4703
+ } & Partial<{
4704
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4705
+ }>;
4706
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
4707
+ /** Get the counts for unread notifications of the user. */
4708
+ scountUnreadNotifications: (request?: {
4709
+ headers?: {
4710
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4711
+ "x-access-token"?: string | undefined;
4712
+ } | undefined;
4713
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4714
+ headers?: Partial<{
4715
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4716
+ }> | undefined;
4717
+ } & {
4718
+ headers: {
4719
+ "x-access-token"?: string | undefined;
4720
+ } & Partial<{
4721
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4722
+ }>;
4723
+ }, import("@mittwald/api-client-commons").Response<{
4724
+ error: number;
4725
+ info: number;
4726
+ success: number;
4727
+ total: number;
4728
+ warning: number;
4729
+ }, 200, "application/json">>>;
4730
+ /** List all unread notifications */
4731
+ slistNotifications: (request?: {
4732
+ headers?: {
4733
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4734
+ "x-access-token"?: string | undefined;
4735
+ } | undefined;
4736
+ queryParameters?: {
4737
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4738
+ status?: "read" | "unread" | undefined;
4739
+ } | undefined;
4740
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4741
+ headers?: Partial<{
4742
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4743
+ }> | undefined;
4744
+ } & {
4745
+ queryParameters: {
4746
+ status?: "read" | "unread" | undefined;
4747
+ } & Partial<{
4748
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4749
+ }>;
4750
+ } & {
4751
+ headers: {
4752
+ "x-access-token"?: string | undefined;
4753
+ } & Partial<{
4754
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4755
+ }>;
4756
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotification[], 200, "application/json">>>;
4757
+ /** Mark all notifications as read. */
4758
+ sreadAllNotifications: (request?: {
4759
+ headers?: {
4760
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4761
+ "x-access-token"?: string | undefined;
4762
+ } | undefined;
4763
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4764
+ headers?: Partial<{
4765
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4766
+ }> | undefined;
4767
+ } & {
4768
+ headers: {
4769
+ "x-access-token"?: string | undefined;
4770
+ } & Partial<{
4771
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4772
+ }>;
4773
+ }, import("@mittwald/api-client-commons").Response<{
4774
+ status: "read";
4775
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4776
+ [x: string]: unknown;
4777
+ }, 403, "application/json">>>;
4778
+ /** Mark notification as read. */
4779
+ sreadNotification: (request: {
4780
+ data: {
4781
+ status: "read";
4782
+ };
4783
+ messageId: string;
4784
+ headers?: {
4785
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4786
+ "x-access-token"?: string | undefined;
4787
+ } | undefined;
4788
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4789
+ data: {
4790
+ status: "read";
4791
+ };
4792
+ } & {
4793
+ pathParameters: {
4794
+ messageId: string;
4795
+ };
4796
+ } & {
4797
+ headers?: Partial<{
4798
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4799
+ }> | undefined;
4800
+ } & {
4801
+ headers: {
4802
+ "x-access-token"?: string | undefined;
4803
+ } & Partial<{
4804
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4805
+ }>;
4806
+ }, import("@mittwald/api-client-commons").Response<{
4807
+ status: "read";
4808
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4809
+ [x: string]: unknown;
4810
+ }, 404, "application/json">>>;
4811
+ };
4636
4812
  /** The domain API allows you to manage your domains, DNS records and ingress resources. */
4637
4813
  readonly domain: {
4638
4814
  /** updates a-records for a specific zone */
@@ -4991,6 +5167,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4991
5167
  combinedARecords: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
4992
5168
  mx: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordMX;
4993
5169
  srv: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRV;
5170
+ /** Enable or disable the catchAll flag for a specific mail address */
4994
5171
  txt: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordTXT;
4995
5172
  };
4996
5173
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5908,7 +6085,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5908
6085
  imageDimensions?: {
5909
6086
  max?: {
5910
6087
  height?: number | undefined;
5911
- width?: number | undefined; /** Request a Server avatar upload. */
6088
+ width?: number | undefined;
5912
6089
  } | undefined;
5913
6090
  min?: {
5914
6091
  height?: number | undefined;
@@ -5942,7 +6119,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5942
6119
  imageDimensions?: {
5943
6120
  max?: {
5944
6121
  height?: number | undefined;
5945
- width?: number | undefined; /** Request a Server avatar upload. */
6122
+ width?: number | undefined;
5946
6123
  } | undefined;
5947
6124
  min?: {
5948
6125
  height?: number | undefined;
@@ -6262,7 +6439,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6262
6439
  autoResponder: {
6263
6440
  active: boolean;
6264
6441
  expiresAt?: string | undefined;
6265
- message: string; /** Get a specific ApiToken. */
6442
+ message: string;
6266
6443
  startsAt?: string | undefined;
6267
6444
  };
6268
6445
  forwardAddresses: string[];
@@ -6274,7 +6451,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6274
6451
  sendingEnabled: boolean;
6275
6452
  spamProtection: {
6276
6453
  active: boolean;
6277
- autoDeleteSpam: boolean; /** Get a specific stored ssh-key. */
6454
+ autoDeleteSpam: boolean;
6278
6455
  folder: "spam" | "inbox";
6279
6456
  relocationMinSpamScore: number;
6280
6457
  };
@@ -6282,7 +6459,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6282
6459
  current: {
6283
6460
  updatedAt: string;
6284
6461
  value: number;
6285
- }; /** Remove a ssh-key. */
6462
+ };
6286
6463
  limit: number;
6287
6464
  };
6288
6465
  } | undefined;
@@ -6622,181 +6799,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6622
6799
  }>;
6623
6800
  }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6624
6801
  };
6625
- /** The notification API allows you to manage your notifications. */
6626
- readonly notification: {
6627
- /** Getting the subscription status of the subscription. */
6628
- newsletterGetInfo: (request?: {
6629
- headers?: {
6630
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6631
- "x-access-token"?: string | undefined;
6632
- } | undefined;
6633
- } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6634
- headers?: Partial<{
6635
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6636
- }> | undefined;
6637
- } & {
6638
- headers: {
6639
- "x-access-token"?: string | undefined;
6640
- } & Partial<{
6641
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6642
- }>;
6643
- }, import("@mittwald/api-client-commons").Response<{
6644
- active: boolean;
6645
- email: string;
6646
- registered: boolean;
6647
- }, 200, "application/json">>>;
6648
- /** Unsubscribe a user from the mStudio newsletter. */
6649
- newsletterUnsubscribeUser: (request?: {
6650
- headers?: {
6651
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6652
- "x-access-token"?: string | undefined;
6653
- } | undefined;
6654
- } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6655
- headers?: Partial<{
6656
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6657
- }> | undefined;
6658
- } & {
6659
- headers: {
6660
- "x-access-token"?: string | undefined;
6661
- } & Partial<{
6662
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6663
- }>;
6664
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty">>>;
6665
- /** Subscribe a user to the mStudio newsletter. */
6666
- newsletterSubscribeUser: (request: {
6667
- data: {
6668
- email: string;
6669
- };
6670
- headers?: {
6671
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6672
- "x-access-token"?: string | undefined;
6673
- } | undefined;
6674
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6675
- data: {
6676
- email: string;
6677
- };
6678
- } & {
6679
- headers?: Partial<{
6680
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6681
- }> | undefined;
6682
- } & {
6683
- headers: {
6684
- "x-access-token"?: string | undefined;
6685
- } & Partial<{
6686
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6687
- }>;
6688
- }, import("@mittwald/api-client-commons").Response<{
6689
- active: boolean;
6690
- email: string;
6691
- registered: boolean;
6692
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6693
- [x: string]: unknown;
6694
- }, 400, "application/json">>>;
6695
- /** Get the counts for unread notifications of the user. */
6696
- scountUnreadNotifications: (request?: {
6697
- headers?: {
6698
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6699
- "x-access-token"?: string | undefined;
6700
- } | undefined;
6701
- } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6702
- headers?: Partial<{
6703
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6704
- }> | undefined;
6705
- } & {
6706
- headers: {
6707
- "x-access-token"?: string | undefined;
6708
- } & Partial<{
6709
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6710
- }>;
6711
- }, import("@mittwald/api-client-commons").Response<{
6712
- error: number;
6713
- info: number;
6714
- success: number;
6715
- total: number;
6716
- warning: number;
6717
- }, 200, "application/json">>>;
6718
- /** List all unread notifications */
6719
- slistNotifications: (request?: {
6720
- headers?: {
6721
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6722
- "x-access-token"?: string | undefined;
6723
- } | undefined;
6724
- queryParameters?: {
6725
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6726
- status?: "read" | "unread" | undefined;
6727
- } | undefined;
6728
- } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6729
- headers?: Partial<{
6730
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6731
- }> | undefined;
6732
- } & {
6733
- queryParameters: {
6734
- status?: "read" | "unread" | undefined;
6735
- } & Partial<{
6736
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6737
- }>;
6738
- } & {
6739
- headers: {
6740
- "x-access-token"?: string | undefined;
6741
- } & Partial<{
6742
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6743
- }>;
6744
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotification[], 200, "application/json">>>;
6745
- /** Mark all notifications as read. */
6746
- sreadAllNotifications: (request?: {
6747
- headers?: {
6748
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6749
- "x-access-token"?: string | undefined;
6750
- } | undefined;
6751
- } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6752
- headers?: Partial<{
6753
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6754
- }> | undefined;
6755
- } & {
6756
- headers: {
6757
- "x-access-token"?: string | undefined;
6758
- } & Partial<{
6759
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6760
- }>;
6761
- }, import("@mittwald/api-client-commons").Response<{
6762
- status: "read";
6763
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6764
- [x: string]: unknown;
6765
- }, 403, "application/json">>>;
6766
- /** Mark notification as read. */
6767
- sreadNotification: (request: {
6768
- data: {
6769
- status: "read";
6770
- };
6771
- messageId: string;
6772
- headers?: {
6773
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6774
- "x-access-token"?: string | undefined;
6775
- } | undefined;
6776
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6777
- data: {
6778
- status: "read";
6779
- };
6780
- } & {
6781
- pathParameters: {
6782
- messageId: string;
6783
- };
6784
- } & {
6785
- headers?: Partial<{
6786
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6787
- }> | undefined;
6788
- } & {
6789
- headers: {
6790
- "x-access-token"?: string | undefined;
6791
- } & Partial<{
6792
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6793
- }>;
6794
- }, import("@mittwald/api-client-commons").Response<{
6795
- status: "read";
6796
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6797
- [x: string]: unknown;
6798
- }, 404, "application/json">>>;
6799
- };
6800
6802
  /** The project API allows you to manage your projects, and also any kinds of user memberships concerning these projects. */
6801
6803
  readonly project: {
6802
6804
  /** Accept a ProjectInvite. */
@@ -322,6 +322,23 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
322
322
  /** Update a RedisDatabase's description. */
323
323
  updateRedisDatabaseDescription: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseDescription),
324
324
  };
325
+ /** The notification API allows you to manage your notifications. */
326
+ this.notification = {
327
+ /** Subscribe a user to the mStudio newsletter. */
328
+ newsletterSubscribeUser: this.requestFunctionFactory(descriptors.newsletterSubscribeUser),
329
+ /** Getting the subscription status of the subscription. */
330
+ newsletterGetInfo: this.requestFunctionFactory(descriptors.newsletterGetInfo),
331
+ /** Unsubscribe a user from the mStudio newsletter. */
332
+ newsletterUnsubscribeUser: this.requestFunctionFactory(descriptors.newsletterUnsubscribeUser),
333
+ /** Get the counts for unread notifications of the user. */
334
+ scountUnreadNotifications: this.requestFunctionFactory(descriptors.notificationsCountUnreadNotifications),
335
+ /** List all unread notifications */
336
+ slistNotifications: this.requestFunctionFactory(descriptors.notificationsListNotifications),
337
+ /** Mark all notifications as read. */
338
+ sreadAllNotifications: this.requestFunctionFactory(descriptors.notificationsReadAllNotifications),
339
+ /** Mark notification as read. */
340
+ sreadNotification: this.requestFunctionFactory(descriptors.notificationsReadNotification),
341
+ };
325
342
  /** The domain API allows you to manage your domains, DNS records and ingress resources. */
326
343
  this.domain = {
327
344
  /** updates a-records for a specific zone */
@@ -453,23 +470,6 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
453
470
  /** Update whitelist for a given project ID */
454
471
  projectsettingUpdateWhitelist: this.requestFunctionFactory(descriptors.mailProjectsettingUpdateWhitelist),
455
472
  };
456
- /** The notification API allows you to manage your notifications. */
457
- this.notification = {
458
- /** Getting the subscription status of the subscription. */
459
- newsletterGetInfo: this.requestFunctionFactory(descriptors.newsletterGetInfo),
460
- /** Unsubscribe a user from the mStudio newsletter. */
461
- newsletterUnsubscribeUser: this.requestFunctionFactory(descriptors.newsletterUnsubscribeUser),
462
- /** Subscribe a user to the mStudio newsletter. */
463
- newsletterSubscribeUser: this.requestFunctionFactory(descriptors.newsletterSubscribeUser),
464
- /** Get the counts for unread notifications of the user. */
465
- scountUnreadNotifications: this.requestFunctionFactory(descriptors.notificationsCountUnreadNotifications),
466
- /** List all unread notifications */
467
- slistNotifications: this.requestFunctionFactory(descriptors.notificationsListNotifications),
468
- /** Mark all notifications as read. */
469
- sreadAllNotifications: this.requestFunctionFactory(descriptors.notificationsReadAllNotifications),
470
- /** Mark notification as read. */
471
- sreadNotification: this.requestFunctionFactory(descriptors.notificationsReadNotification),
472
- };
473
473
  /** The project API allows you to manage your projects, and also any kinds of user memberships concerning these projects. */
474
474
  this.project = {
475
475
  /** Accept a ProjectInvite. */
@@ -247,6 +247,8 @@ export declare const databaseUpdateMysqlUserPassword: OpenAPIOperation<RequestTy
247
247
  export declare const databaseUpdateRedisDatabaseConfiguration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdConfiguration.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
248
248
  /** Update a RedisDatabase's description. */
249
249
  export declare const databaseUpdateRedisDatabaseDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisDatabasesIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
250
+ /** Subscribe a user to the mStudio newsletter. */
251
+ export declare const newsletterSubscribeUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
250
252
  /** updates a-records for a specific zone */
251
253
  export declare const dnsRecordAsetCustom: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetAcombinedCustom.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
252
254
  /** set a-records managed by ingress for a specific zone */
@@ -377,14 +379,10 @@ export declare const mailProjectsettingGetSpecific: OpenAPIOperation<RequestType
377
379
  export declare const mailProjectsettingUpdateBlacklist: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Responses.$403.Content.Empty>, 403, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Responses.$404.Content.Empty>, 404, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsBlacklist.Put.Responses.$503.Content.Empty>, 503, "empty">>;
378
380
  /** Update whitelist for a given project ID */
379
381
  export declare const mailProjectsettingUpdateWhitelist: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Responses.$403.Content.Empty>, 403, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Responses.$404.Content.Empty>, 404, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailsettingsWhitelist.Put.Responses.$503.Content.Empty>, 503, "empty">>;
380
- /** List Metrics. */
381
- export declare const metricsListMetricsInternal: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.InternalV2Metrics.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.InternalV2Metrics.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.InternalV2Metrics.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.InternalV2Metrics.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2Metrics.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2Metrics.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
382
382
  /** Getting the subscription status of the subscription. */
383
383
  export declare const newsletterGetInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
384
384
  /** Unsubscribe a user from the mStudio newsletter. */
385
385
  export declare const newsletterUnsubscribeUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
386
- /** Subscribe a user to the mStudio newsletter. */
387
- export declare const newsletterSubscribeUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptions.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
388
386
  /** Get the counts for unread notifications of the user. */
389
387
  export declare const notificationsCountUnreadNotifications: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NotificationsUnreadCounts.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
390
388
  /** List all unread notifications */
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appReconcileDetectedApps = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetMissingDependenciesForAppinstallation = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
4
4
  exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = exports.conversationCreateConversation = void 0;
5
- exports.domainResendDomainEmail = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainVerifyDomainOwnership = exports.domainGetSpecificDomainOwnership = exports.domainGetScreenshotForDomain = exports.domainGetHandleFields = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainDeclareProcessChangeHandles = exports.domainDeclareProcessChangeAuthcode = exports.domainDeclareNameservers = exports.domainCreateAuthcode2ForDomain = exports.domainCreateAuthcodeForDomain = exports.domainCheckDomainAvailability = exports.domainChangeProjectOfDomain = exports.domainChangeOwnercOfDomain = exports.domainAbortDeclareProcess = exports.dnsZonesForProject = exports.dnsZoneGetSpecific = exports.dnsSubZoneCreate = exports.dnsRecordTxtSet = exports.dnsRecordSrvSet = exports.dnsRecordMxSetManaged = exports.dnsRecordMxSetCustom = exports.dnsRecordCnameSet = exports.dnsRecordAsetManagedByIngress = exports.dnsRecordAsetCustom = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
- exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterSubscribeUser = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.metricsListMetricsInternal = exports.mailProjectsettingUpdateWhitelist = exports.mailProjectsettingUpdateBlacklist = exports.mailProjectsettingGetSpecific = exports.mailMailaddressUpdateSpamprotection = exports.mailMailaddressUpdateQuota = exports.mailMailaddressUpdatePassword = exports.mailMailaddressUpdateForwardaddresses = exports.mailMailaddressUpdateCatchall = exports.mailMailaddressUpdateAutoresponder = exports.mailMailaddressUpdateAddress = exports.mailMailaddressDelete = exports.mailMailaddressGetSpecific = exports.mailMailaddressCreate = exports.mailMailaddressList = exports.mailDeliveryboxUpdatePassword = exports.mailDeliveryboxUpdateDescription = exports.mailDeliveryboxDelete = exports.mailDeliveryboxGetSpecific = exports.mailDeliveryboxCreate = exports.mailDeliveryboxList = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressTls = exports.ingressRequestAcmeCertificateIssuance = exports.ingressPaths = exports.ingressListForProject = exports.ingressListAccessible = exports.ingressDelete = exports.ingressGetSpecific = exports.ingressCreate = exports.fileGetFile = exports.fileGetFileTypeRules = exports.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = void 0;
7
- exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateLegacyTariffChange = exports.redirectusCreateRelocation = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = void 0;
8
- exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = void 0;
5
+ exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainVerifyDomainOwnership = exports.domainGetSpecificDomainOwnership = exports.domainGetScreenshotForDomain = exports.domainGetHandleFields = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainDeclareProcessChangeHandles = exports.domainDeclareProcessChangeAuthcode = exports.domainDeclareNameservers = exports.domainCreateAuthcode2ForDomain = exports.domainCreateAuthcodeForDomain = exports.domainCheckDomainAvailability = exports.domainChangeProjectOfDomain = exports.domainChangeOwnercOfDomain = exports.domainAbortDeclareProcess = exports.dnsZonesForProject = exports.dnsZoneGetSpecific = exports.dnsSubZoneCreate = exports.dnsRecordTxtSet = exports.dnsRecordSrvSet = exports.dnsRecordMxSetManaged = exports.dnsRecordMxSetCustom = exports.dnsRecordCnameSet = exports.dnsRecordAsetManagedByIngress = exports.dnsRecordAsetCustom = exports.newsletterSubscribeUser = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
+ exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailProjectsettingUpdateWhitelist = exports.mailProjectsettingUpdateBlacklist = exports.mailProjectsettingGetSpecific = exports.mailMailaddressUpdateSpamprotection = exports.mailMailaddressUpdateQuota = exports.mailMailaddressUpdatePassword = exports.mailMailaddressUpdateForwardaddresses = exports.mailMailaddressUpdateCatchall = exports.mailMailaddressUpdateAutoresponder = exports.mailMailaddressUpdateAddress = exports.mailMailaddressDelete = exports.mailMailaddressGetSpecific = exports.mailMailaddressCreate = exports.mailMailaddressList = exports.mailDeliveryboxUpdatePassword = exports.mailDeliveryboxUpdateDescription = exports.mailDeliveryboxDelete = exports.mailDeliveryboxGetSpecific = exports.mailDeliveryboxCreate = exports.mailDeliveryboxList = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressTls = exports.ingressRequestAcmeCertificateIssuance = exports.ingressPaths = exports.ingressListForProject = exports.ingressListAccessible = exports.ingressDelete = exports.ingressGetSpecific = exports.ingressCreate = exports.fileGetFile = exports.fileGetFileTypeRules = exports.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainResendDomainEmail = void 0;
7
+ exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateLegacyTariffChange = exports.redirectusCreateRelocation = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = void 0;
8
+ exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = void 0;
9
9
  /** execute a runtime concerning action on a specific `AppInstallation` */
10
10
  exports.appExecuteAction = {
11
11
  path: "/v2/appinstallations/{appInstallationId}/actions/{action}",
@@ -738,6 +738,12 @@ exports.databaseUpdateRedisDatabaseDescription = {
738
738
  method: "PATCH",
739
739
  operationId: "database-update-redis-database-description",
740
740
  };
741
+ /** Subscribe a user to the mStudio newsletter. */
742
+ exports.newsletterSubscribeUser = {
743
+ path: "/v2/newsletter-subscriptions",
744
+ method: "POST",
745
+ operationId: "newsletter-subscribe-user",
746
+ };
741
747
  /** updates a-records for a specific zone */
742
748
  exports.dnsRecordAsetCustom = {
743
749
  path: "/v2/dns/zones/{zoneId}/recordset/acombined/custom",
@@ -1128,12 +1134,6 @@ exports.mailProjectsettingUpdateWhitelist = {
1128
1134
  method: "PUT",
1129
1135
  operationId: "mail-projectsetting-update-whitelist",
1130
1136
  };
1131
- /** List Metrics. */
1132
- exports.metricsListMetricsInternal = {
1133
- path: "/internal-v2/metrics",
1134
- method: "GET",
1135
- operationId: "metrics-list-metrics-internal",
1136
- };
1137
1137
  /** Getting the subscription status of the subscription. */
1138
1138
  exports.newsletterGetInfo = {
1139
1139
  path: "/v2/newsletter-subscriptions/self",
@@ -1146,12 +1146,6 @@ exports.newsletterUnsubscribeUser = {
1146
1146
  method: "DELETE",
1147
1147
  operationId: "newsletter-unsubscribe-user",
1148
1148
  };
1149
- /** Subscribe a user to the mStudio newsletter. */
1150
- exports.newsletterSubscribeUser = {
1151
- path: "/v2/newsletter-subscriptions",
1152
- method: "POST",
1153
- operationId: "newsletter-subscribe-user",
1154
- };
1155
1149
  /** Get the counts for unread notifications of the user. */
1156
1150
  exports.notificationsCountUnreadNotifications = {
1157
1151
  path: "/v2/notifications/unread-counts",