@mittwald/api-client 3.0.13 → 3.0.15

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. */
@@ -1099,6 +1100,12 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1099
1100
  projectId: string;
1100
1101
  txtRecord: string;
1101
1102
  }>;
1103
+ /** List all supported top level domains. */
1104
+ getSupportedTlds: (conf?: {
1105
+ headers?: {
1106
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1107
+ } | undefined;
1108
+ } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
1102
1109
  /** List all domain ownerships of a project. */
1103
1110
  listDomainOwnerships: (conf: {
1104
1111
  projectId: string;
@@ -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
  };
@@ -158,6 +158,8 @@ const buildDomainApi = (baseClient) => ({
158
158
  getScreenshotForDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetScreenshotForDomain, baseClient.domain.getScreenshotForDomain).getApiResource,
159
159
  /** Get a domain ownership. */
160
160
  getSpecificDomainOwnership: new ApiCallAsyncResourceFactory(descriptors.domainGetSpecificDomainOwnership, baseClient.domain.getSpecificDomainOwnership).getApiResource,
161
+ /** List all supported top level domains. */
162
+ getSupportedTlds: new ApiCallAsyncResourceFactory(descriptors.domainGetSupportedTlds, baseClient.domain.getSupportedTlds).getApiResource,
161
163
  /** List all domain ownerships of a project. */
162
164
  listDomainOwnerships: new ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
163
165
  /** List Domains belonging to a Project. */
@@ -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;
@@ -1898,8 +1892,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1898
1892
  diskspaceInGiB: number;
1899
1893
  machineType: string;
1900
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;
1901
1903
  } | undefined;
1902
- orderType?: "server" | "domain" | "projectHosting" | undefined;
1904
+ orderType?: "domain" | "server" | "projectHosting" | undefined;
1903
1905
  } | undefined;
1904
1906
  headers?: {
1905
1907
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1907,8 +1909,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1907
1909
  } | undefined;
1908
1910
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
1909
1911
  data: {
1910
- orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrder | undefined;
1911
- 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;
1912
1914
  };
1913
1915
  } & {
1914
1916
  headers?: Partial<{
@@ -2091,10 +2093,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2091
2093
  orderPreviewOrder: (request?: {
2092
2094
  data?: {
2093
2095
  orderData?: {
2094
- domain: string;
2095
- authCode?: string | undefined;
2096
- projectId?: string | undefined;
2097
- } | {
2098
2096
  diskspaceInGiB: number;
2099
2097
  spec: {
2100
2098
  ram?: number | undefined;
@@ -2109,16 +2107,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2109
2107
  machineType: string;
2110
2108
  customerId?: string | undefined;
2111
2109
  description?: string | undefined;
2110
+ } | {
2111
+ domain: string;
2112
+ authCode?: string | undefined;
2113
+ projectId?: string | undefined;
2112
2114
  } | undefined;
2113
- orderType?: "server" | "domain" | "projectHosting" | undefined;
2115
+ orderType?: "domain" | "server" | "projectHosting" | undefined;
2114
2116
  } | undefined;
2115
2117
  headers?: {
2116
2118
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2117
2119
  } | undefined;
2118
2120
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2119
2121
  data: {
2120
- orderData?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | import("./types.js").MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | undefined;
2121
- 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;
2122
2124
  };
2123
2125
  } & {
2124
2126
  headers?: Partial<{
@@ -2314,7 +2316,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2314
2316
  relations?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[] | undefined;
2315
2317
  sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
2316
2318
  shortId: string;
2317
- status: "open" | "closed" | "answered";
2319
+ status: "open" | "answered" | "closed";
2318
2320
  title: string;
2319
2321
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2320
2322
  [x: string]: unknown;
@@ -2410,7 +2412,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2410
2412
  /** Update the status of a conversation. */
2411
2413
  setConversationStatus: (request: {
2412
2414
  data: {
2413
- status: "open" | "closed" | "answered";
2415
+ status: "open" | "answered" | "closed";
2414
2416
  };
2415
2417
  conversationId: string;
2416
2418
  headers?: {
@@ -2418,7 +2420,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2418
2420
  } | undefined;
2419
2421
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2420
2422
  data: {
2421
- status: "open" | "closed" | "answered";
2423
+ status: "open" | "answered" | "closed";
2422
2424
  };
2423
2425
  } & {
2424
2426
  pathParameters: {
@@ -4736,7 +4738,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4736
4738
  } | undefined;
4737
4739
  queryParameters?: {
4738
4740
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4739
- status?: "read" | "unread" | undefined;
4741
+ status?: "unread" | "read" | undefined;
4740
4742
  } | undefined;
4741
4743
  } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4742
4744
  headers?: Partial<{
@@ -4744,7 +4746,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4744
4746
  }> | undefined;
4745
4747
  } & {
4746
4748
  queryParameters: {
4747
- status?: "read" | "unread" | undefined;
4749
+ status?: "unread" | "read" | undefined;
4748
4750
  } & Partial<{
4749
4751
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4750
4752
  }>;
@@ -5168,7 +5170,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5168
5170
  combinedARecords: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
5169
5171
  mx: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordMX;
5170
5172
  srv: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRV;
5171
- /** Enable or disable the catchAll flag for a specific mail address */
5172
5173
  txt: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordTXT;
5173
5174
  };
5174
5175
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5679,6 +5680,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5679
5680
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5680
5681
  [x: string]: unknown;
5681
5682
  }, 404, "application/json">>>;
5683
+ /** List all supported top level domains. */
5684
+ getSupportedTlds: (request?: {
5685
+ headers?: {
5686
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5687
+ } | undefined;
5688
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5689
+ headers?: Partial<{
5690
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5691
+ }> | undefined;
5692
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[], 200, "application/json">>>;
5682
5693
  /** List all domain ownerships of a project. */
5683
5694
  listDomainOwnerships: (request: {
5684
5695
  projectId: string;
@@ -6358,12 +6369,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6358
6369
  mailaddressCreate: (request: {
6359
6370
  data: {
6360
6371
  address: string;
6361
- isCatchAll: boolean;
6362
- mailbox: {
6363
- enableSpamProtection: boolean;
6364
- password: string;
6365
- quotaInBytes: number;
6366
- };
6372
+ forwardAddresses: string[];
6367
6373
  };
6368
6374
  projectId: string;
6369
6375
  headers?: {
@@ -6373,7 +6379,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6373
6379
  } | {
6374
6380
  data: {
6375
6381
  address: string;
6376
- forwardAddresses: string[];
6382
+ isCatchAll: boolean;
6383
+ mailbox: {
6384
+ enableSpamProtection: boolean;
6385
+ password: string;
6386
+ quotaInBytes: number;
6387
+ };
6377
6388
  };
6378
6389
  projectId: string;
6379
6390
  headers?: {
@@ -6381,6 +6392,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6381
6392
  "x-access-token"?: string | undefined;
6382
6393
  } | undefined;
6383
6394
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6395
+ data: {
6396
+ address: string;
6397
+ forwardAddresses: string[];
6398
+ };
6399
+ } | {
6384
6400
  data: {
6385
6401
  address: string;
6386
6402
  isCatchAll: boolean;
@@ -6390,11 +6406,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6390
6406
  quotaInBytes: number;
6391
6407
  };
6392
6408
  };
6393
- } | {
6394
- data: {
6395
- address: string;
6396
- forwardAddresses: string[];
6397
- };
6398
6409
  }) & {
6399
6410
  pathParameters: {
6400
6411
  projectId: string;
@@ -7975,7 +7986,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7975
7986
  };
7976
7987
  description: string;
7977
7988
  directories: [string, ...string[]];
7978
- accessLevel?: "full" | "read" | undefined;
7989
+ accessLevel?: "read" | "full" | undefined;
7979
7990
  expiresAt?: string | undefined;
7980
7991
  };
7981
7992
  projectId: string;
@@ -7985,7 +7996,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7985
7996
  } | undefined;
7986
7997
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7987
7998
  data: {
7988
- accessLevel?: "full" | "read" | undefined;
7999
+ accessLevel?: "read" | "full" | undefined;
7989
8000
  authentication: import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserAuthentication;
7990
8001
  description: string;
7991
8002
  directories: [string, ...string[]];
@@ -8086,7 +8097,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8086
8097
  sftpUserUpdateSftpUser: (request: {
8087
8098
  sftpUserId: string;
8088
8099
  data?: {
8089
- accessLevel?: "full" | "read" | undefined;
8100
+ accessLevel?: "read" | "full" | undefined;
8090
8101
  active?: boolean | undefined;
8091
8102
  description?: string | undefined;
8092
8103
  directories?: [string, ...string[]] | undefined;
@@ -8100,7 +8111,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8100
8111
  } | undefined;
8101
8112
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8102
8113
  data: {
8103
- accessLevel?: "full" | "read" | undefined;
8114
+ accessLevel?: "read" | "full" | undefined;
8104
8115
  active?: boolean | undefined;
8105
8116
  description?: string | undefined;
8106
8117
  directories?: [string, ...string[]] | undefined;
@@ -363,6 +363,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
363
363
  getSpecificDomainOwnership: this.requestFunctionFactory(descriptors.domainGetSpecificDomainOwnership),
364
364
  /** Verify a domain ownership. */
365
365
  verifyDomainOwnership: this.requestFunctionFactory(descriptors.domainVerifyDomainOwnership),
366
+ /** List all supported top level domains. */
367
+ getSupportedTlds: this.requestFunctionFactory(descriptors.domainGetSupportedTlds),
366
368
  /** List all domain ownerships of a project. */
367
369
  listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
368
370
  /** List Domains belonging to a Project. */
@@ -299,6 +299,8 @@ export declare const domainGetScreenshotForDomain: OpenAPIOperation<RequestType<
299
299
  export declare const domainGetSpecificDomainOwnership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
300
300
  /** Verify a domain ownership. */
301
301
  export declare const domainVerifyDomainOwnership: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
302
+ /** List all supported top level domains. */
303
+ 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">>;
302
304
  /** List all domain ownerships of a project. */
303
305
  export declare const domainListDomainOwnerships: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
304
306
  /** List Domains belonging to a Project. */
@@ -886,6 +886,12 @@ export const domainVerifyDomainOwnership = {
886
886
  method: "POST",
887
887
  operationId: "domain-verify-domain-ownership",
888
888
  };
889
+ /** List all supported top level domains. */
890
+ export const domainGetSupportedTlds = {
891
+ path: "/v2/domains/supported-tlds",
892
+ method: "GET",
893
+ operationId: "domain-get-supported-tlds",
894
+ };
889
895
  /** List all domain ownerships of a project. */
890
896
  export const domainListDomainOwnerships = {
891
897
  path: "/v2/projects/{projectId}/domain-ownerships",