@mittwald/api-client 3.0.12 → 3.0.14

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.
@@ -212,7 +212,7 @@ declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
212
212
  } | undefined;
213
213
  modifierArticles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableModifierArticleOptions[] | undefined;
214
214
  name: string;
215
- orderable: "forbidden" | "internal" | "beta_testing" | "full" | "deprecated";
215
+ orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
216
216
  picture?: string | undefined;
217
217
  possibleArticleChanges?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[] | undefined;
218
218
  price?: number | undefined;
@@ -233,7 +233,7 @@ declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
233
233
  tags?: string[] | undefined;
234
234
  templateNames?: string[] | undefined;
235
235
  articleIds?: string[] | undefined;
236
- orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[] | undefined;
236
+ orderable?: ("full" | "forbidden" | "internal" | "beta_testing" | "deprecated")[] | undefined;
237
237
  name?: string | undefined;
238
238
  } | undefined;
239
239
  } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableArticle[]>;
@@ -498,6 +498,7 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
498
498
  printedInvoices?: boolean | undefined;
499
499
  recipient?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient | undefined;
500
500
  recipientSameAsOwner?: boolean | undefined;
501
+ status?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoiceSettingsStatus[] | undefined;
501
502
  targetDay?: number | undefined;
502
503
  }>;
503
504
  /** List Invoices of a Customer. */
@@ -613,7 +614,7 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
613
614
  relations?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[] | undefined;
614
615
  sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
615
616
  shortId: string;
616
- status: "open" | "closed" | "answered";
617
+ status: "open" | "answered" | "closed";
617
618
  title: string;
618
619
  }>;
619
620
  /** Get all conversation categories. */
@@ -1156,6 +1157,12 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1156
1157
  "x-access-token"?: string | undefined;
1157
1158
  } | undefined;
1158
1159
  }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
1160
+ /** List all supported top level domains. */
1161
+ getSupportedTlds: (conf?: {
1162
+ headers?: {
1163
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1164
+ } | undefined;
1165
+ } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
1159
1166
  };
1160
1167
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1161
1168
  /** Get a File's meta. */
@@ -1345,7 +1352,7 @@ declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
1345
1352
  } | undefined;
1346
1353
  queryParameters?: {
1347
1354
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1348
- status?: "read" | "unread" | undefined;
1355
+ status?: "unread" | "read" | undefined;
1349
1356
  } | undefined;
1350
1357
  } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MessagingNotification[]>;
1351
1358
  };
@@ -168,6 +168,8 @@ const buildDomainApi = (baseClient) => ({
168
168
  ingressListAccessible: new ApiCallAsyncResourceFactory(descriptors.ingressListAccessible, baseClient.domain.ingressListAccessible).getApiResource,
169
169
  /** List Ingresses belonging to a project. */
170
170
  ingressListForProject: new ApiCallAsyncResourceFactory(descriptors.ingressListForProject, baseClient.domain.ingressListForProject).getApiResource,
171
+ /** List all supported top level domains. */
172
+ getSupportedTlds: new ApiCallAsyncResourceFactory(descriptors.domainGetSupportedTlds, baseClient.domain.getSupportedTlds).getApiResource,
171
173
  });
172
174
  const buildFileApi = (baseClient) => ({
173
175
  /** Get a File's meta. */
@@ -729,7 +729,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
729
729
  } | undefined;
730
730
  modifierArticles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableModifierArticleOptions[] | undefined;
731
731
  name: string;
732
- orderable: "forbidden" | "internal" | "beta_testing" | "full" | "deprecated";
732
+ orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
733
733
  picture?: string | undefined;
734
734
  possibleArticleChanges?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[] | undefined;
735
735
  price?: number | undefined;
@@ -752,7 +752,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
752
752
  tags?: string[] | undefined;
753
753
  templateNames?: string[] | undefined;
754
754
  articleIds?: string[] | undefined;
755
- orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[] | undefined;
755
+ orderable?: ("full" | "forbidden" | "internal" | "beta_testing" | "deprecated")[] | undefined;
756
756
  name?: string | undefined;
757
757
  } | undefined;
758
758
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -768,7 +768,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
768
768
  tags?: string[] | undefined;
769
769
  templateNames?: string[] | undefined;
770
770
  articleIds?: string[] | undefined;
771
- orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[] | undefined;
771
+ orderable?: ("full" | "forbidden" | "internal" | "beta_testing" | "deprecated")[] | undefined;
772
772
  name?: string | undefined;
773
773
  } & Partial<{
774
774
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -1743,6 +1743,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1743
1743
  printedInvoices?: boolean | undefined;
1744
1744
  recipient?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient | undefined;
1745
1745
  recipientSameAsOwner?: boolean | undefined;
1746
+ status?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoiceSettingsStatus[] | undefined;
1746
1747
  targetDay?: number | undefined;
1747
1748
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
1748
1749
  [x: string]: unknown;
@@ -1755,9 +1756,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1755
1756
  invoicePeriod: number;
1756
1757
  paymentSettings: {
1757
1758
  accountHolder: string;
1758
- bic: string;
1759
1759
  iban: string;
1760
1760
  method: "debit";
1761
+ bic?: string | undefined;
1761
1762
  } | {
1762
1763
  method: "invoice";
1763
1764
  };
@@ -1821,6 +1822,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1821
1822
  printedInvoices?: boolean | undefined;
1822
1823
  recipient?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient | undefined;
1823
1824
  recipientSameAsOwner?: boolean | undefined;
1825
+ status?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoiceSettingsStatus[] | undefined;
1824
1826
  targetDay?: number | undefined;
1825
1827
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
1826
1828
  [x: string]: unknown;
@@ -1873,14 +1875,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1873
1875
  orderCreateOrder: (request?: {
1874
1876
  data?: {
1875
1877
  orderData?: {
1876
- domain: string;
1877
- handleData: {
1878
- ownerC: [import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainHandleField[]];
1879
- adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainHandleField[] | undefined;
1880
- };
1881
- projectId: string;
1882
- authCode?: string | undefined;
1883
- } | {
1884
1878
  customerId: string;
1885
1879
  description: string;
1886
1880
  diskspaceInGiB: number;
@@ -1890,6 +1884,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1890
1884
  } | {
1891
1885
  machineType?: string | undefined;
1892
1886
  };
1887
+ promotionCode?: string | undefined;
1893
1888
  useFreeTrial?: boolean | undefined;
1894
1889
  } | {
1895
1890
  customerId: string;
@@ -1897,8 +1892,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1897
1892
  diskspaceInGiB: number;
1898
1893
  machineType: string;
1899
1894
  useFreeTrial?: boolean | undefined;
1895
+ } | {
1896
+ domain: string;
1897
+ handleData: {
1898
+ ownerC: [import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainHandleField[]];
1899
+ adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainHandleField[] | undefined;
1900
+ };
1901
+ projectId: string;
1902
+ authCode?: string | undefined;
1900
1903
  } | undefined;
1901
- orderType?: "server" | "domain" | "projectHosting" | undefined;
1904
+ orderType?: "domain" | "server" | "projectHosting" | undefined;
1902
1905
  } | undefined;
1903
1906
  headers?: {
1904
1907
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1906,8 +1909,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1906
1909
  } | undefined;
1907
1910
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
1908
1911
  data: {
1909
- orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | undefined;
1910
- orderType?: "server" | "domain" | "projectHosting" | undefined;
1912
+ orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | undefined;
1913
+ orderType?: "domain" | "server" | "projectHosting" | undefined;
1911
1914
  };
1912
1915
  } & {
1913
1916
  headers?: Partial<{
@@ -2090,10 +2093,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2090
2093
  orderPreviewOrder: (request?: {
2091
2094
  data?: {
2092
2095
  orderData?: {
2093
- domain: string;
2094
- authCode?: string | undefined;
2095
- projectId?: string | undefined;
2096
- } | {
2097
2096
  diskspaceInGiB: number;
2098
2097
  spec: {
2099
2098
  ram?: number | undefined;
@@ -2108,16 +2107,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2108
2107
  machineType: string;
2109
2108
  customerId?: string | undefined;
2110
2109
  description?: string | undefined;
2110
+ } | {
2111
+ domain: string;
2112
+ authCode?: string | undefined;
2113
+ projectId?: string | undefined;
2111
2114
  } | undefined;
2112
- orderType?: "server" | "domain" | "projectHosting" | undefined;
2115
+ orderType?: "domain" | "server" | "projectHosting" | undefined;
2113
2116
  } | undefined;
2114
2117
  headers?: {
2115
2118
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2116
2119
  } | undefined;
2117
2120
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2118
2121
  data: {
2119
- orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | undefined;
2120
- orderType?: "server" | "domain" | "projectHosting" | undefined;
2122
+ orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | undefined;
2123
+ orderType?: "domain" | "server" | "projectHosting" | undefined;
2121
2124
  };
2122
2125
  } & {
2123
2126
  headers?: Partial<{
@@ -2313,7 +2316,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2313
2316
  relations?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[] | undefined;
2314
2317
  sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
2315
2318
  shortId: string;
2316
- status: "open" | "closed" | "answered";
2319
+ status: "open" | "answered" | "closed";
2317
2320
  title: string;
2318
2321
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2319
2322
  [x: string]: unknown;
@@ -2409,7 +2412,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2409
2412
  /** Update the status of a conversation. */
2410
2413
  setConversationStatus: (request: {
2411
2414
  data: {
2412
- status: "open" | "closed" | "answered";
2415
+ status: "open" | "answered" | "closed";
2413
2416
  };
2414
2417
  conversationId: string;
2415
2418
  headers?: {
@@ -2417,7 +2420,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2417
2420
  } | undefined;
2418
2421
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2419
2422
  data: {
2420
- status: "open" | "closed" | "answered";
2423
+ status: "open" | "answered" | "closed";
2421
2424
  };
2422
2425
  } & {
2423
2426
  pathParameters: {
@@ -4735,7 +4738,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4735
4738
  } | undefined;
4736
4739
  queryParameters?: {
4737
4740
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4738
- status?: "read" | "unread" | undefined;
4741
+ status?: "unread" | "read" | undefined;
4739
4742
  } | undefined;
4740
4743
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4741
4744
  headers?: Partial<{
@@ -4743,7 +4746,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4743
4746
  }> | undefined;
4744
4747
  } & {
4745
4748
  queryParameters: {
4746
- status?: "read" | "unread" | undefined;
4749
+ status?: "unread" | "read" | undefined;
4747
4750
  } & Partial<{
4748
4751
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4749
4752
  }>;
@@ -5167,7 +5170,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5167
5170
  combinedARecords: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
5168
5171
  mx: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordMX;
5169
5172
  srv: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRV;
5170
- /** Enable or disable the catchAll flag for a specific mail address */
5171
5173
  txt: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordTXT;
5172
5174
  };
5173
5175
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -6005,6 +6007,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6005
6007
  }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6006
6008
  [x: string]: unknown;
6007
6009
  }, 404, "application/json">>>;
6010
+ /** List all supported top level domains. */
6011
+ getSupportedTlds: (request?: {
6012
+ headers?: {
6013
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6014
+ } | undefined;
6015
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6016
+ headers?: Partial<{
6017
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6018
+ }> | undefined;
6019
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[], 200, "application/json">>>;
6008
6020
  };
6009
6021
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
6010
6022
  readonly file: {
@@ -6357,12 +6369,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6357
6369
  mailaddressCreate: (request: {
6358
6370
  data: {
6359
6371
  address: string;
6360
- isCatchAll: boolean;
6361
- mailbox: {
6362
- enableSpamProtection: boolean;
6363
- password: string;
6364
- quotaInBytes: number;
6365
- };
6372
+ forwardAddresses: string[];
6366
6373
  };
6367
6374
  projectId: string;
6368
6375
  headers?: {
@@ -6372,7 +6379,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6372
6379
  } | {
6373
6380
  data: {
6374
6381
  address: string;
6375
- forwardAddresses: string[];
6382
+ isCatchAll: boolean;
6383
+ mailbox: {
6384
+ enableSpamProtection: boolean;
6385
+ password: string;
6386
+ quotaInBytes: number;
6387
+ };
6376
6388
  };
6377
6389
  projectId: string;
6378
6390
  headers?: {
@@ -6380,6 +6392,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6380
6392
  "x-access-token"?: string | undefined;
6381
6393
  } | undefined;
6382
6394
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6395
+ data: {
6396
+ address: string;
6397
+ forwardAddresses: string[];
6398
+ };
6399
+ } | {
6383
6400
  data: {
6384
6401
  address: string;
6385
6402
  isCatchAll: boolean;
@@ -6389,11 +6406,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6389
6406
  quotaInBytes: number;
6390
6407
  };
6391
6408
  };
6392
- } | {
6393
- data: {
6394
- address: string;
6395
- forwardAddresses: string[];
6396
- };
6397
6409
  }) & {
6398
6410
  pathParameters: {
6399
6411
  projectId: string;
@@ -7974,7 +7986,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7974
7986
  };
7975
7987
  description: string;
7976
7988
  directories: [string, ...string[]];
7977
- accessLevel?: "full" | "read" | undefined;
7989
+ accessLevel?: "read" | "full" | undefined;
7978
7990
  expiresAt?: string | undefined;
7979
7991
  };
7980
7992
  projectId: string;
@@ -7984,7 +7996,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7984
7996
  } | undefined;
7985
7997
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7986
7998
  data: {
7987
- accessLevel?: "full" | "read" | undefined;
7999
+ accessLevel?: "read" | "full" | undefined;
7988
8000
  authentication: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAuthentication;
7989
8001
  description: string;
7990
8002
  directories: [string, ...string[]];
@@ -8085,7 +8097,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8085
8097
  sftpUserUpdateSftpUser: (request: {
8086
8098
  sftpUserId: string;
8087
8099
  data?: {
8088
- accessLevel?: "full" | "read" | undefined;
8100
+ accessLevel?: "read" | "full" | undefined;
8089
8101
  active?: boolean | undefined;
8090
8102
  description?: string | undefined;
8091
8103
  directories?: [string, ...string[]] | undefined;
@@ -8099,7 +8111,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8099
8111
  } | undefined;
8100
8112
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8101
8113
  data: {
8102
- accessLevel?: "full" | "read" | undefined;
8114
+ accessLevel?: "read" | "full" | undefined;
8103
8115
  active?: boolean | undefined;
8104
8116
  description?: string | undefined;
8105
8117
  directories?: [string, ...string[]] | undefined;
@@ -385,6 +385,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
385
385
  ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
386
386
  /** Update an Ingresses tls settings. */
387
387
  ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
388
+ /** List all supported top level domains. */
389
+ getSupportedTlds: this.requestFunctionFactory(descriptors.domainGetSupportedTlds),
388
390
  };
389
391
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
390
392
  file = {
@@ -599,3 +599,5 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
599
599
  export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
600
600
  /** Verify your registration. */
601
601
  export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
602
+ /** List all supported top level domains. */
603
+ export declare const domainGetSupportedTlds: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsSupportedTlds.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1786,3 +1786,9 @@ export const userVerifyRegistration = {
1786
1786
  method: "POST",
1787
1787
  operationId: "user-verify-registration",
1788
1788
  };
1789
+ /** List all supported top level domains. */
1790
+ export const domainGetSupportedTlds = {
1791
+ path: "/v2/domains/supported-tlds",
1792
+ method: "GET",
1793
+ operationId: "domain-get-supported-tlds",
1794
+ };