@mittwald/api-client 2.0.17 → 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.
@@ -34,6 +34,12 @@ export const appGetAppversion = {
34
34
  method: "GET",
35
35
  operationId: "app-get-appversion",
36
36
  };
37
+ /** get the missing requirements of an appInstallation for a specific target AppVersion */
38
+ export const appGetMissingDependenciesForAppinstallation = {
39
+ path: "/v2/appinstallations/{appInstallationId}/missing-dependencies",
40
+ method: "GET",
41
+ operationId: "app-get-missing-dependencies-for-appinstallation",
42
+ };
37
43
  /** get a specific `SystemSoftware` */
38
44
  export const appGetSystemsoftware = {
39
45
  path: "/v2/systemsoftwares/{systemSoftwareId}",
@@ -124,12 +130,6 @@ export const appUnlinkDatabase = {
124
130
  method: "DELETE",
125
131
  operationId: "app-unlink-database",
126
132
  };
127
- /** trigger `AppInstallation` to retrieve current installation status based on an appJob */
128
- export const appUpdateStatus = {
129
- path: "/v2/appinstallations/{id}/actions/update-status",
130
- method: "POST",
131
- operationId: "app-update-status",
132
- };
133
133
  /** Get an Article. */
134
134
  export const articleGetArticle = {
135
135
  path: "/v2/articles/{articleId}",
@@ -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",
@@ -1272,7 +1272,6 @@ export declare module MittwaldAPIV2 {
1272
1272
  */
1273
1273
  invoicingPeriod: number;
1274
1274
  items: MittwaldAPIV2.Components.Schemas.OrderOrderItem[];
1275
- offerId?: string;
1276
1275
  orderDate: string;
1277
1276
  orderId: string;
1278
1277
  orderNumber: string;
@@ -1319,7 +1318,6 @@ export declare module MittwaldAPIV2 {
1319
1318
  articleTemplateName?: string;
1320
1319
  attributeConfiguration?: MittwaldAPIV2.Components.Schemas.OrderAttributeConfiguration[];
1321
1320
  isInclusive: boolean;
1322
- offerItemId?: string;
1323
1321
  orderItemId: string;
1324
1322
  predefinedDomainAggregateId?: string;
1325
1323
  price: number;
@@ -2114,6 +2112,43 @@ export declare module MittwaldAPIV2 {
2114
2112
  }
2115
2113
  }
2116
2114
  }
2115
+ namespace V2AppinstallationsAppInstallationIdMissingDependencies {
2116
+ namespace Get {
2117
+ namespace Parameters {
2118
+ type Path = {
2119
+ appInstallationId: string;
2120
+ };
2121
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
2122
+ type Query = {
2123
+ targetAppVersionID: string;
2124
+ };
2125
+ }
2126
+ namespace Responses {
2127
+ namespace $200 {
2128
+ namespace Content {
2129
+ interface ApplicationJson {
2130
+ missingSystemSoftwareDependencies?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareDependency[];
2131
+ missingUserInputs?: MittwaldAPIV2.Components.Schemas.AppUserInput[];
2132
+ }
2133
+ }
2134
+ }
2135
+ namespace $404 {
2136
+ namespace Content {
2137
+ interface ApplicationJson {
2138
+ [k: string]: unknown;
2139
+ }
2140
+ }
2141
+ }
2142
+ namespace Default {
2143
+ namespace Content {
2144
+ interface ApplicationJson {
2145
+ [k: string]: unknown;
2146
+ }
2147
+ }
2148
+ }
2149
+ }
2150
+ }
2151
+ }
2117
2152
  namespace V2SystemsoftwaresSystemSoftwareId {
2118
2153
  namespace Get {
2119
2154
  namespace Parameters {
@@ -2595,46 +2630,6 @@ export declare module MittwaldAPIV2 {
2595
2630
  }
2596
2631
  }
2597
2632
  }
2598
- namespace V2AppinstallationsIdActionsUpdateStatus {
2599
- namespace Post {
2600
- namespace Parameters {
2601
- type Path = {
2602
- id: string;
2603
- };
2604
- interface RequestBody {
2605
- status: {
2606
- appJob: {
2607
- name: string;
2608
- namespace: string;
2609
- };
2610
- };
2611
- }
2612
- type Header = {};
2613
- type Query = {};
2614
- }
2615
- namespace Responses {
2616
- namespace $204 {
2617
- namespace Content {
2618
- type Empty = unknown;
2619
- }
2620
- }
2621
- namespace $404 {
2622
- namespace Content {
2623
- interface ApplicationJson {
2624
- [k: string]: unknown;
2625
- }
2626
- }
2627
- }
2628
- namespace Default {
2629
- namespace Content {
2630
- interface ApplicationJson {
2631
- [k: string]: unknown;
2632
- }
2633
- }
2634
- }
2635
- }
2636
- }
2637
- }
2638
2633
  namespace V2ArticlesArticleId {
2639
2634
  namespace Get {
2640
2635
  namespace Parameters {
@@ -7534,45 +7529,6 @@ export declare module MittwaldAPIV2 {
7534
7529
  }
7535
7530
  }
7536
7531
  }
7537
- namespace V2ToplevelDomainsTld {
7538
- namespace Get {
7539
- namespace Parameters {
7540
- type Path = {
7541
- tld: string;
7542
- };
7543
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7544
- type Query = {};
7545
- }
7546
- namespace Responses {
7547
- namespace $200 {
7548
- namespace Content {
7549
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel;
7550
- }
7551
- }
7552
- namespace $400 {
7553
- namespace Content {
7554
- interface ApplicationJson {
7555
- [k: string]: unknown;
7556
- }
7557
- }
7558
- }
7559
- namespace $404 {
7560
- namespace Content {
7561
- interface ApplicationJson {
7562
- [k: string]: unknown;
7563
- }
7564
- }
7565
- }
7566
- namespace Default {
7567
- namespace Content {
7568
- interface ApplicationJson {
7569
- [k: string]: unknown;
7570
- }
7571
- }
7572
- }
7573
- }
7574
- }
7575
- }
7576
7532
  namespace V2ProjectsProjectIdDomainOwnerships {
7577
7533
  namespace Get {
7578
7534
  namespace Parameters {
@@ -7641,36 +7597,6 @@ export declare module MittwaldAPIV2 {
7641
7597
  }
7642
7598
  }
7643
7599
  }
7644
- namespace V2ToplevelDomains {
7645
- namespace Get {
7646
- namespace Parameters {
7647
- type Path = {};
7648
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7649
- type Query = {};
7650
- }
7651
- namespace Responses {
7652
- namespace $200 {
7653
- namespace Content {
7654
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainTopLevel[];
7655
- }
7656
- }
7657
- namespace $400 {
7658
- namespace Content {
7659
- interface ApplicationJson {
7660
- [k: string]: unknown;
7661
- }
7662
- }
7663
- }
7664
- namespace Default {
7665
- namespace Content {
7666
- interface ApplicationJson {
7667
- [k: string]: unknown;
7668
- }
7669
- }
7670
- }
7671
- }
7672
- }
7673
- }
7674
7600
  namespace V2DomainsDomainIdActionsResendEmail {
7675
7601
  namespace Post {
7676
7602
  namespace Parameters {
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '2.0.17';
1
+ export declare const MittwaldAPIClientVersion = '2.0.19';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '2.0.17';
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.17",
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",