@mittwald/api-client 2.0.18 → 2.0.19

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.
@@ -154,7 +154,7 @@ export const backupDeleteProjectBackupExport = {
154
154
  method: "DELETE",
155
155
  operationId: "backup-delete-project-backup-export",
156
156
  };
157
- /** List BackupSchedules belonging to a given Project. */
157
+ /** List BackupSchedules belonging to a Project. */
158
158
  export const backupListProjectBackupSchedules = {
159
159
  path: "/v2/projects/{projectId}/backup-schedules",
160
160
  method: "GET",
@@ -166,7 +166,7 @@ export const backupCreateProjectBackupSchedule = {
166
166
  method: "POST",
167
167
  operationId: "backup-create-project-backup-schedule",
168
168
  };
169
- /** List Backups for a given Project. */
169
+ /** List Backups belonging to a Project. */
170
170
  export const backupListProjectBackups = {
171
171
  path: "/v2/projects/{projectId}/backups",
172
172
  method: "GET",
@@ -544,25 +544,25 @@ export const customerLeaveCustomer = {
544
544
  method: "POST",
545
545
  operationId: "customer-leave-customer",
546
546
  };
547
- /** List all CustomerInvites for the executing user. */
547
+ /** List CustomerInvites belonging to the executing user. */
548
548
  export const customerListCustomerInvites = {
549
549
  path: "/v2/customer-invites",
550
550
  method: "GET",
551
551
  operationId: "customer-list-customer-invites",
552
552
  };
553
- /** List all CustomerMemberships for the executing user. */
553
+ /** List CustomerMemberships belonging to the executing user. */
554
554
  export const customerListCustomerMemberships = {
555
555
  path: "/v2/customer-memberships",
556
556
  method: "GET",
557
557
  operationId: "customer-list-customer-memberships",
558
558
  };
559
- /** List all invites for a Customer. */
559
+ /** List Invites belonging to a Customer. */
560
560
  export const customerListInvitesForCustomer = {
561
561
  path: "/v2/customers/{customerId}/invites",
562
562
  method: "GET",
563
563
  operationId: "customer-list-invites-for-customer",
564
564
  };
565
- /** List all memberships belonging to a Customer. */
565
+ /** List Memberships belonging to a Customer. */
566
566
  export const customerListMembershipsForCustomer = {
567
567
  path: "/v2/customers/{customerId}/memberships",
568
568
  method: "GET",
@@ -598,7 +598,7 @@ export const databaseCreateMysqlDatabase = {
598
598
  method: "POST",
599
599
  operationId: "database-create-mysql-database",
600
600
  };
601
- /** List MySQLUsers belonging to a database. */
601
+ /** List MySQLUsers belonging to a Database. */
602
602
  export const databaseListMysqlUsers = {
603
603
  path: "/v2/mysql-databases/{databaseId}/users",
604
604
  method: "GET",
@@ -868,12 +868,6 @@ export const domainVerifyDomainOwnership = {
868
868
  method: "POST",
869
869
  operationId: "domain-verify-domain-ownership",
870
870
  };
871
- /** Get a toplevel domain. */
872
- export const domainGetToplevelDomain = {
873
- path: "/v2/toplevel-domains/{tld}",
874
- method: "GET",
875
- operationId: "domain-get-toplevel-domain",
876
- };
877
871
  /** List all domain ownerships of a project. */
878
872
  export const domainListDomainOwnerships = {
879
873
  path: "/v2/projects/{projectId}/domain-ownerships",
@@ -886,12 +880,6 @@ export const domainListDomains = {
886
880
  method: "GET",
887
881
  operationId: "domain-list-domains",
888
882
  };
889
- /** List all supported toplevel domains. */
890
- export const domainListToplevelDomains = {
891
- path: "/v2/toplevel-domains",
892
- method: "GET",
893
- operationId: "domain-list-toplevel-domains",
894
- };
895
883
  /** Resend a domain email. */
896
884
  export const domainResendDomainEmail = {
897
885
  path: "/v2/domains/{domainId}/actions/resend-email",
@@ -1306,7 +1294,7 @@ export const projectDeleteServerAvatar = {
1306
1294
  method: "DELETE",
1307
1295
  operationId: "project-delete-server-avatar",
1308
1296
  };
1309
- /** List the directories of a Project. */
1297
+ /** List directories belonging to a Project. */
1310
1298
  export const projectFileSystemGetDirectories = {
1311
1299
  path: "/v2/projects/{projectId}/filesystem/directories",
1312
1300
  method: "GET",
@@ -1366,19 +1354,19 @@ export const projectLeaveProject = {
1366
1354
  method: "POST",
1367
1355
  operationId: "project-leave-project",
1368
1356
  };
1369
- /** List all invites belonging to a Project. */
1357
+ /** List Invites belonging to a Project. */
1370
1358
  export const projectListInvitesForProject = {
1371
1359
  path: "/v2/projects/{projectId}/invites",
1372
1360
  method: "GET",
1373
1361
  operationId: "project-list-invites-for-project",
1374
1362
  };
1375
- /** List all memberships for a Project. */
1363
+ /** List Memberships belonging to a Project. */
1376
1364
  export const projectListMembershipsForProject = {
1377
1365
  path: "/v2/projects/{projectId}/memberships",
1378
1366
  method: "GET",
1379
1367
  operationId: "project-list-memberships-for-project",
1380
1368
  };
1381
- /** List all ProjectInvites for the executing user. */
1369
+ /** List ProjectInvites belonging to the executing user. */
1382
1370
  export const projectListProjectInvites = {
1383
1371
  path: "/v2/project-invites",
1384
1372
  method: "GET",
@@ -1390,13 +1378,13 @@ export const projectListProjectMemberships = {
1390
1378
  method: "GET",
1391
1379
  operationId: "project-list-project-memberships",
1392
1380
  };
1393
- /** List Project's for an Organization or Server. */
1381
+ /** List Projects belonging to the executing user. */
1394
1382
  export const projectListProjects = {
1395
1383
  path: "/v2/projects",
1396
1384
  method: "GET",
1397
1385
  operationId: "project-list-projects",
1398
1386
  };
1399
- /** List Servers for an Organization or User. */
1387
+ /** List Servers belonging to the executing user. */
1400
1388
  export const projectListServers = {
1401
1389
  path: "/v2/servers",
1402
1390
  method: "GET",
@@ -7529,45 +7529,6 @@ export declare module MittwaldAPIV2 {
7529
7529
  }
7530
7530
  }
7531
7531
  }
7532
- namespace V2ToplevelDomainsTld {
7533
- namespace Get {
7534
- namespace Parameters {
7535
- type Path = {
7536
- tld: string;
7537
- };
7538
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7539
- type Query = {};
7540
- }
7541
- namespace Responses {
7542
- namespace $200 {
7543
- namespace Content {
7544
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel;
7545
- }
7546
- }
7547
- namespace $400 {
7548
- namespace Content {
7549
- interface ApplicationJson {
7550
- [k: string]: unknown;
7551
- }
7552
- }
7553
- }
7554
- namespace $404 {
7555
- namespace Content {
7556
- interface ApplicationJson {
7557
- [k: string]: unknown;
7558
- }
7559
- }
7560
- }
7561
- namespace Default {
7562
- namespace Content {
7563
- interface ApplicationJson {
7564
- [k: string]: unknown;
7565
- }
7566
- }
7567
- }
7568
- }
7569
- }
7570
- }
7571
7532
  namespace V2ProjectsProjectIdDomainOwnerships {
7572
7533
  namespace Get {
7573
7534
  namespace Parameters {
@@ -7636,36 +7597,6 @@ export declare module MittwaldAPIV2 {
7636
7597
  }
7637
7598
  }
7638
7599
  }
7639
- namespace V2ToplevelDomains {
7640
- namespace Get {
7641
- namespace Parameters {
7642
- type Path = {};
7643
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7644
- type Query = {};
7645
- }
7646
- namespace Responses {
7647
- namespace $200 {
7648
- namespace Content {
7649
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel[];
7650
- }
7651
- }
7652
- namespace $400 {
7653
- namespace Content {
7654
- interface ApplicationJson {
7655
- [k: string]: unknown;
7656
- }
7657
- }
7658
- }
7659
- namespace Default {
7660
- namespace Content {
7661
- interface ApplicationJson {
7662
- [k: string]: unknown;
7663
- }
7664
- }
7665
- }
7666
- }
7667
- }
7668
- }
7669
7600
  namespace V2DomainsDomainIdActionsResendEmail {
7670
7601
  namespace Post {
7671
7602
  namespace Parameters {
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '2.0.18';
1
+ export declare const MittwaldAPIClientVersion = '2.0.19';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '2.0.18';
1
+ export const MittwaldAPIClientVersion = '2.0.19';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "2.0.18",
3
+ "version": "2.0.19",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",