@mittwald/api-client 0.0.0-development-93599d7-20260507 → 0.0.0-development-e8f2771-20260612

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.
@@ -69,7 +69,7 @@ const buildBackupApi = (baseClient) => ({
69
69
  /** Get a ProjectBackup. */
70
70
  getProjectBackup: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackup, baseClient.backup.getProjectBackup).getApiResource,
71
71
  /** List database dump's for a ProjectBackup. */
72
- getProjectBackupDatabaseDumpsV2Experimental: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, baseClient.backup.getProjectBackupDatabaseDumpsV2Experimental).getApiResource,
72
+ getProjectBackupDatabaseDumps: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumps, baseClient.backup.getProjectBackupDatabaseDumps).getApiResource,
73
73
  /** List paths for a ProjectBackup. */
74
74
  getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
75
75
  });
@@ -186,6 +186,8 @@ const buildMarketplaceApi = (baseClient) => ({
186
186
  extensionGetProjectExtensionInstanceOrders: new ApiCallAsyncResourceFactory(descriptors.extensionGetProjectExtensionInstanceOrders, baseClient.marketplace.extensionGetProjectExtensionInstanceOrders).getApiResource,
187
187
  /** Get the public key to verify the webhook signature. */
188
188
  extensionGetPublicKey: new ApiCallAsyncResourceFactory(descriptors.extensionGetPublicKey, baseClient.marketplace.extensionGetPublicKey).getApiResource,
189
+ /** List all Webhook Executions. */
190
+ extensionListAllExtensionInstanceWebhookExecutions: new ApiCallAsyncResourceFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions, baseClient.marketplace.extensionListAllExtensionInstanceWebhookExecutions).getApiResource,
189
191
  /** List Contributors. */
190
192
  extensionListContributors: new ApiCallAsyncResourceFactory(descriptors.extensionListContributors, baseClient.marketplace.extensionListContributors).getApiResource,
191
193
  /** List Extensions. */
@@ -294,8 +296,10 @@ const buildDomainApi = (baseClient) => ({
294
296
  listTldContactSchemas: new ApiCallAsyncResourceFactory(descriptors.domainListTldContactSchemas, baseClient.domain.listTldContactSchemas).getApiResource,
295
297
  /** List TLDs. */
296
298
  listTlds: new ApiCallAsyncResourceFactory(descriptors.domainListTlds, baseClient.domain.listTlds).getApiResource,
297
- /** List Domain-Migrations belonging to a p-Account. */
298
- migrationListMigrations: new ApiCallAsyncResourceFactory(descriptors.domainMigrationListMigrations, baseClient.domain.migrationListMigrations).getApiResource,
299
+ /** List Domain-Migrations belonging to a pAccount. */
300
+ migrationListMigrationsByPaccount: new ApiCallAsyncResourceFactory(descriptors.domainMigrationListMigrationsByPaccount, baseClient.domain.migrationListMigrationsByPaccount).getApiResource,
301
+ /** List Domain-Migrations belonging to a Project. */
302
+ migrationListMigrationsByProjectId: new ApiCallAsyncResourceFactory(descriptors.domainMigrationListMigrationsByProjectId, baseClient.domain.migrationListMigrationsByProjectId).getApiResource,
299
303
  /** Suggest a list of domains based on a prompt using AI. */
300
304
  suggest: new ApiCallAsyncResourceFactory(descriptors.domainSuggest, baseClient.domain.suggest).getApiResource,
301
305
  /** List Ingresses. */
@@ -404,6 +408,8 @@ const buildUserApi = (baseClient) => ({
404
408
  getApiToken: new ApiCallAsyncResourceFactory(descriptors.userGetApiToken, baseClient.user.getApiToken).getApiResource,
405
409
  /** Get a specific stored ssh-key. */
406
410
  getSshKey: new ApiCallAsyncResourceFactory(descriptors.userGetSshKey, baseClient.user.getSshKey).getApiResource,
411
+ /** Check status of the current session. */
412
+ getCurrentSessionStatus: new ApiCallAsyncResourceFactory(descriptors.userGetCurrentSessionStatus, baseClient.user.getCurrentSessionStatus).getApiResource,
407
413
  /** The timestamp of your latest password change. */
408
414
  getPasswordUpdatedAt: new ApiCallAsyncResourceFactory(descriptors.userGetPasswordUpdatedAt, baseClient.user.getPasswordUpdatedAt).getApiResource,
409
415
  /** Get personalized settings. */
@@ -38,6 +38,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
38
38
  projectGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingProjectGetDetailedModels),
39
39
  /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
40
40
  projectGetUsage: this.requestFunctionFactory(descriptors.aiHostingProjectGetUsage),
41
+ /** Links a container with a project licence. */
42
+ projectLinkContainer: this.requestFunctionFactory(descriptors.aiHostingProjectLinkContainer),
41
43
  };
42
44
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
43
45
  app = {
@@ -120,13 +122,13 @@ export class MittwaldAPIV2Client extends ApiClientBase {
120
122
  /** Delete a ProjectBackup. */
121
123
  deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
122
124
  /** List database dump's for a ProjectBackup. */
123
- getProjectBackupDatabaseDumpsV2Experimental: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental),
125
+ getProjectBackupDatabaseDumps: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumps),
124
126
  /** List paths for a ProjectBackup. */
125
127
  getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
126
128
  /** Update a Backup's expiration time. */
127
129
  replaceProjectBackupExpirationTime: this.requestFunctionFactory(descriptors.backupReplaceProjectBackupExpirationTime),
128
130
  /** Restore a ProjectBackup. */
129
- requestProjectBackupRestoreV2Experimental: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestoreV2Experimental),
131
+ requestProjectBackupRestore: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestore),
130
132
  /** Change the description of a ProjectBackup. */
131
133
  updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
132
134
  };
@@ -326,7 +328,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
326
328
  extensionDeleteExtensionInstance: this.requestFunctionFactory(descriptors.extensionDeleteExtensionInstance),
327
329
  /** Get Extension of own contributor. */
328
330
  extensionGetOwnExtension: this.requestFunctionFactory(descriptors.extensionGetOwnExtension),
329
- /** Delete an extension. */
331
+ /** Delete an Extension. */
330
332
  extensionDeleteExtension: this.requestFunctionFactory(descriptors.extensionDeleteExtension),
331
333
  /** Patch Extension. */
332
334
  extensionPatchExtension: this.requestFunctionFactory(descriptors.extensionPatchExtension),
@@ -358,6 +360,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
358
360
  extensionGetPublicKey: this.requestFunctionFactory(descriptors.extensionGetPublicKey),
359
361
  /** Invalidate the given Extension secret immediately. */
360
362
  extensionInvalidateExtensionSecret: this.requestFunctionFactory(descriptors.extensionInvalidateExtensionSecret),
363
+ /** List all Webhook Executions. */
364
+ extensionListAllExtensionInstanceWebhookExecutions: this.requestFunctionFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions),
361
365
  /** List Contributors. */
362
366
  extensionListContributors: this.requestFunctionFactory(descriptors.extensionListContributors),
363
367
  /** List Extensions. */
@@ -516,6 +520,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
516
520
  getMysqlDatabase: this.requestFunctionFactory(descriptors.databaseGetMysqlDatabase),
517
521
  /** Delete a MySQLDatabase. */
518
522
  deleteMysqlDatabase: this.requestFunctionFactory(descriptors.databaseDeleteMysqlDatabase),
523
+ /** Update a MySqlDatabase. */
524
+ patchMysqlDatabase: this.requestFunctionFactory(descriptors.databasePatchMysqlDatabase),
519
525
  /** Get a MySQLUser. */
520
526
  getMysqlUser: this.requestFunctionFactory(descriptors.databaseGetMysqlUser),
521
527
  /** Update a MySQLUser. */
@@ -526,6 +532,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
526
532
  getRedisDatabase: this.requestFunctionFactory(descriptors.databaseGetRedisDatabase),
527
533
  /** Delete a RedisDatabase. */
528
534
  deleteRedisDatabase: this.requestFunctionFactory(descriptors.databaseDeleteRedisDatabase),
535
+ /** Update a RedisDatabase. */
536
+ patchRedisDatabase: this.requestFunctionFactory(descriptors.databasePatchRedisDatabase),
529
537
  /** Disable a MySQLUser. */
530
538
  disableMysqlUser: this.requestFunctionFactory(descriptors.databaseDisableMysqlUser),
531
539
  /** Enable a MySQLUser. */
@@ -601,10 +609,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
601
609
  listTlds: this.requestFunctionFactory(descriptors.domainListTlds),
602
610
  /** Check if a Domain-Migration from a pAccount into a Project is possible. */
603
611
  migrationCheckMigrationIsPossible: this.requestFunctionFactory(descriptors.domainMigrationCheckMigrationIsPossible),
604
- /** List Domain-Migrations belonging to a p-Account. */
605
- migrationListMigrations: this.requestFunctionFactory(descriptors.domainMigrationListMigrations),
606
- /** Create a Domain-Migration from a pAccount into a Project. */
607
- migrationRequestDomainMigration: this.requestFunctionFactory(descriptors.domainMigrationRequestDomainMigration),
612
+ /** List Domain-Migrations belonging to a pAccount. */
613
+ migrationListMigrationsByPaccount: this.requestFunctionFactory(descriptors.domainMigrationListMigrationsByPaccount),
614
+ /** List Domain-Migrations belonging to a Project. */
615
+ migrationListMigrationsByProjectId: this.requestFunctionFactory(descriptors.domainMigrationListMigrationsByProjectId),
616
+ /** Order a Domain-Migration from a pAccount into a Project. */
617
+ migrationOrderDomainMigration: this.requestFunctionFactory(descriptors.domainMigrationOrderDomainMigration),
608
618
  /** Resends a Contact-Verification email. */
609
619
  resendContactVerificationEmail: this.requestFunctionFactory(descriptors.domainResendContactVerificationEmail),
610
620
  /** Resend a Domain email. */
@@ -748,8 +758,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
748
758
  changeEmail: this.requestFunctionFactory(descriptors.userChangeEmail),
749
759
  /** Change your password. */
750
760
  changePassword: this.requestFunctionFactory(descriptors.userChangePassword),
751
- /** Check token for validity. */
752
- checkToken: this.requestFunctionFactory(descriptors.userCheckToken),
753
761
  /** Get your current multi factor auth status. */
754
762
  getMfaStatus: this.requestFunctionFactory(descriptors.userGetMfaStatus),
755
763
  /** Reset RecoveryCodes for MFA. */
@@ -784,6 +792,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
784
792
  deleteSshKey: this.requestFunctionFactory(descriptors.userDeleteSshKey),
785
793
  /** Delete your account and all your personal data. */
786
794
  deleteUser: this.requestFunctionFactory(descriptors.userDeleteUser),
795
+ /** Check status of the current session. */
796
+ getCurrentSessionStatus: this.requestFunctionFactory(descriptors.userGetCurrentSessionStatus),
787
797
  /** The timestamp of your latest password change. */
788
798
  getPasswordUpdatedAt: this.requestFunctionFactory(descriptors.userGetPasswordUpdatedAt),
789
799
  /** Get personalized settings. */
@@ -94,6 +94,12 @@ export const aiHostingProjectGetUsage = {
94
94
  method: "GET",
95
95
  operationId: "ai-hosting-project-get-usage",
96
96
  };
97
+ /** Links a container with a project licence. */
98
+ export const aiHostingProjectLinkContainer = {
99
+ path: "/v2/projects/{projectId}/ai-hosting-keys/{keyId}/actions/link-container",
100
+ method: "POST",
101
+ operationId: "ai-hosting-project-link-container",
102
+ };
97
103
  /** Get an App. */
98
104
  export const appGetApp = {
99
105
  path: "/v2/apps/{appId}",
@@ -311,10 +317,10 @@ export const backupDeleteProjectBackup = {
311
317
  operationId: "backup-delete-project-backup",
312
318
  };
313
319
  /** List database dump's for a ProjectBackup. */
314
- export const backupGetProjectBackupDatabaseDumpsV2Experimental = {
320
+ export const backupGetProjectBackupDatabaseDumps = {
315
321
  path: "/v2/project-backups/{projectBackupId}/database-dumps",
316
322
  method: "GET",
317
- operationId: "backup-get-project-backup-database-dumps-v2-experimental",
323
+ operationId: "backup-get-project-backup-database-dumps",
318
324
  };
319
325
  /** List paths for a ProjectBackup. */
320
326
  export const backupGetProjectBackupDirectories = {
@@ -329,10 +335,10 @@ export const backupReplaceProjectBackupExpirationTime = {
329
335
  operationId: "backup-replace-project-backup-expiration-time",
330
336
  };
331
337
  /** Restore a ProjectBackup. */
332
- export const backupRequestProjectBackupRestoreV2Experimental = {
338
+ export const backupRequestProjectBackupRestore = {
333
339
  path: "/v2/project-backups/{projectBackupId}/restore",
334
340
  method: "POST",
335
- operationId: "backup-request-project-backup-restore-v2-experimental",
341
+ operationId: "backup-request-project-backup-restore",
336
342
  };
337
343
  /** Change the description of a ProjectBackup. */
338
344
  export const backupUpdateProjectBackupDescription = {
@@ -1078,6 +1084,12 @@ export const databaseDeleteMysqlDatabase = {
1078
1084
  method: "DELETE",
1079
1085
  operationId: "database-delete-mysql-database",
1080
1086
  };
1087
+ /** Update a MySqlDatabase. */
1088
+ export const databasePatchMysqlDatabase = {
1089
+ path: "/v2/mysql-databases/{mysqlDatabaseId}",
1090
+ method: "PATCH",
1091
+ operationId: "database-patch-mysql-database",
1092
+ };
1081
1093
  /** Get a MySQLUser. */
1082
1094
  export const databaseGetMysqlUser = {
1083
1095
  path: "/v2/mysql-users/{mysqlUserId}",
@@ -1108,6 +1120,12 @@ export const databaseDeleteRedisDatabase = {
1108
1120
  method: "DELETE",
1109
1121
  operationId: "database-delete-redis-database",
1110
1122
  };
1123
+ /** Update a RedisDatabase. */
1124
+ export const databasePatchRedisDatabase = {
1125
+ path: "/v2/redis-databases/{redisDatabaseId}",
1126
+ method: "PATCH",
1127
+ operationId: "database-patch-redis-database",
1128
+ };
1111
1129
  /** Disable a MySQLUser. */
1112
1130
  export const databaseDisableMysqlUser = {
1113
1131
  path: "/v2/mysql-users/{mysqlUserId}/actions/disable",
@@ -1372,17 +1390,23 @@ export const domainMigrationCheckMigrationIsPossible = {
1372
1390
  method: "POST",
1373
1391
  operationId: "domain-migration-check-migration-is-possible",
1374
1392
  };
1375
- /** List Domain-Migrations belonging to a p-Account. */
1376
- export const domainMigrationListMigrations = {
1377
- path: "/v2/domain-migrations",
1393
+ /** List Domain-Migrations belonging to a pAccount. */
1394
+ export const domainMigrationListMigrationsByPaccount = {
1395
+ path: "/v2/p-accounts/{pAccount}/domain-migrations",
1378
1396
  method: "GET",
1379
- operationId: "domain-migration-list-migrations",
1397
+ operationId: "domain-migration-list-migrations-by-p-account",
1380
1398
  };
1381
- /** Create a Domain-Migration from a pAccount into a Project. */
1382
- export const domainMigrationRequestDomainMigration = {
1383
- path: "/v2/domain-migrations/actions/request",
1399
+ /** List Domain-Migrations belonging to a Project. */
1400
+ export const domainMigrationListMigrationsByProjectId = {
1401
+ path: "/v2/projects/{projectId}/domain-migrations",
1402
+ method: "GET",
1403
+ operationId: "domain-migration-list-migrations-by-project-id",
1404
+ };
1405
+ /** Order a Domain-Migration from a pAccount into a Project. */
1406
+ export const domainMigrationOrderDomainMigration = {
1407
+ path: "/v2/domain-migrations",
1384
1408
  method: "POST",
1385
- operationId: "domain-migration-request-domain-migration",
1409
+ operationId: "domain-migration-order-domain-migration",
1386
1410
  };
1387
1411
  /** Resends a Contact-Verification email. */
1388
1412
  export const domainResendContactVerificationEmail = {
@@ -1516,7 +1540,7 @@ export const extensionGetOwnExtension = {
1516
1540
  method: "GET",
1517
1541
  operationId: "extension-get-own-extension",
1518
1542
  };
1519
- /** Delete an extension. */
1543
+ /** Delete an Extension. */
1520
1544
  export const extensionDeleteExtension = {
1521
1545
  path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
1522
1546
  method: "DELETE",
@@ -1612,6 +1636,12 @@ export const extensionInvalidateExtensionSecret = {
1612
1636
  method: "DELETE",
1613
1637
  operationId: "extension-invalidate-extension-secret",
1614
1638
  };
1639
+ /** List all Webhook Executions. */
1640
+ export const extensionListAllExtensionInstanceWebhookExecutions = {
1641
+ path: "/v2/contributors/{contributorId}/webhook-executions",
1642
+ method: "GET",
1643
+ operationId: "extension-list-all-extension-instance-webhook-executions",
1644
+ };
1615
1645
  /** List Contributors. */
1616
1646
  export const extensionListContributors = {
1617
1647
  path: "/v2/contributors",
@@ -2560,12 +2590,6 @@ export const userChangePassword = {
2560
2590
  method: "PUT",
2561
2591
  operationId: "user-change-password",
2562
2592
  };
2563
- /** Check token for validity. */
2564
- export const userCheckToken = {
2565
- path: "/v2/users/self/credentials/token",
2566
- method: "POST",
2567
- operationId: "user-check-token",
2568
- };
2569
2593
  /** Get your current multi factor auth status. */
2570
2594
  export const userGetMfaStatus = {
2571
2595
  path: "/v2/users/self/credentials/mfa",
@@ -2668,6 +2692,12 @@ export const userDeleteUser = {
2668
2692
  method: "DELETE",
2669
2693
  operationId: "user-delete-user",
2670
2694
  };
2695
+ /** Check status of the current session. */
2696
+ export const userGetCurrentSessionStatus = {
2697
+ path: "/v2/users/self/sessions/current/status",
2698
+ method: "GET",
2699
+ operationId: "user-get-current-session-status",
2700
+ };
2671
2701
  /** The timestamp of your latest password change. */
2672
2702
  export const userGetPasswordUpdatedAt = {
2673
2703
  path: "/v2/users/self/credentials/password-updated-at",
package/dist/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export { assertStatus, assertOneOfStatus, extractTotalCountHeader, } from "@mittwald/api-client-commons";
2
2
  export * as Commons from "@mittwald/api-client-commons";
3
+ export * as Descriptors from "./generated/v2/descriptors.js";
3
4
  export { MittwaldAPIClient as MittwaldAPIV2Client } from "./v2/default.js";
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.357.0';
1
+ export const MittwaldAPIClientVersion = '4.383.0';
@@ -142,6 +142,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
142
142
  deletionRequested?: boolean | undefined;
143
143
  description: string;
144
144
  disabled: boolean;
145
+ hostname?: string | undefined;
145
146
  id: string;
146
147
  installationPath: string;
147
148
  lastError?: string | undefined;
@@ -150,6 +151,10 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
150
151
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
151
152
  } | undefined;
152
153
  phase: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPhase;
154
+ ports?: {
155
+ name?: string;
156
+ port?: number;
157
+ }[] | undefined;
153
158
  projectDescription: string;
154
159
  projectId: string;
155
160
  screenshotId?: string | undefined;
@@ -254,6 +259,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
254
259
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
255
260
  appIds?: string[] | undefined;
256
261
  searchTerm?: string | undefined;
262
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
257
263
  limit?: number | undefined;
258
264
  skip?: number | undefined;
259
265
  page?: number | undefined;
@@ -270,6 +276,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
270
276
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
271
277
  appIds?: string[] | undefined;
272
278
  searchTerm?: string | undefined;
279
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallationSortOrder | undefined;
273
280
  limit?: number | undefined;
274
281
  skip?: number | undefined;
275
282
  page?: number | undefined;
@@ -472,7 +479,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
472
479
  status: string;
473
480
  }>;
474
481
  /** List database dump's for a ProjectBackup. */
475
- getProjectBackupDatabaseDumpsV2Experimental: (conf: {
482
+ getProjectBackupDatabaseDumps: (conf: {
476
483
  projectBackupId: string;
477
484
  headers?: {
478
485
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1323,9 +1330,11 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1323
1330
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1324
1331
  } | undefined;
1325
1332
  id: string;
1333
+ nextScheduledWebhookExecution?: string | undefined;
1326
1334
  pendingInstallation: boolean;
1327
1335
  pendingRemoval: boolean;
1328
1336
  variantKey?: string | undefined;
1337
+ webhookExecutionHalted: boolean;
1329
1338
  }>;
1330
1339
  /** Get Extension of own contributor. */
1331
1340
  extensionGetOwnExtension: (conf: {
@@ -1439,9 +1448,11 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1439
1448
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1440
1449
  } | undefined;
1441
1450
  id: string;
1451
+ nextScheduledWebhookExecution?: string | undefined;
1442
1452
  pendingInstallation: boolean;
1443
1453
  pendingRemoval: boolean;
1444
1454
  variantKey?: string | undefined;
1455
+ webhookExecutionHalted: boolean;
1445
1456
  }>;
1446
1457
  /** Get the ExtensionInstance of a specific project and extension, if existing. */
1447
1458
  extensionGetExtensionInstanceForProject: (conf: {
@@ -1471,9 +1482,11 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1471
1482
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1472
1483
  } | undefined;
1473
1484
  id: string;
1485
+ nextScheduledWebhookExecution?: string | undefined;
1474
1486
  pendingInstallation: boolean;
1475
1487
  pendingRemoval: boolean;
1476
1488
  variantKey?: string | undefined;
1489
+ webhookExecutionHalted: boolean;
1477
1490
  }>;
1478
1491
  /** Get an Extension. */
1479
1492
  extensionGetExtension: (conf: {
@@ -1510,6 +1523,24 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1510
1523
  key: string;
1511
1524
  serial: string;
1512
1525
  }>;
1526
+ /** List all Webhook Executions. */
1527
+ extensionListAllExtensionInstanceWebhookExecutions: (conf: {
1528
+ contributorId: string;
1529
+ headers?: {
1530
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1531
+ "x-access-token"?: string | undefined;
1532
+ } | undefined;
1533
+ queryParameters?: {
1534
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1535
+ extensionId?: string | undefined;
1536
+ extensionInstanceId?: string | undefined;
1537
+ limit?: number | undefined;
1538
+ skip?: number | undefined;
1539
+ page?: number | undefined;
1540
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
1541
+ order?: ("asc" | "desc")[] | undefined;
1542
+ } | undefined;
1543
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[]>;
1513
1544
  /** List Contributors. */
1514
1545
  extensionListContributors: (conf?: {
1515
1546
  headers?: {
@@ -1797,6 +1828,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1797
1828
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1798
1829
  limit?: number | undefined;
1799
1830
  skip?: number | undefined;
1831
+ searchTerm?: string | undefined;
1800
1832
  } | undefined;
1801
1833
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
1802
1834
  /** Get all customer profiles the authenticated user has access to. */
@@ -1966,6 +1998,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1966
1998
  skip?: number | undefined;
1967
1999
  hasExpiry?: boolean | undefined;
1968
2000
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
2001
+ searchTerm?: string | undefined;
1969
2002
  } | undefined;
1970
2003
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
1971
2004
  };
@@ -2242,16 +2275,21 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
2242
2275
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2243
2276
  } | undefined;
2244
2277
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
2245
- /** List Domain-Migrations belonging to a p-Account. */
2246
- migrationListMigrations: (conf: {
2278
+ /** List Domain-Migrations belonging to a pAccount. */
2279
+ migrationListMigrationsByPaccount: (conf: {
2247
2280
  headers: {
2248
2281
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2249
2282
  Authorization: string;
2250
2283
  };
2251
- queryParameters: {
2284
+ pAccount: string;
2285
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainmigrationMigration[]>;
2286
+ /** List Domain-Migrations belonging to a Project. */
2287
+ migrationListMigrationsByProjectId: (conf: {
2288
+ projectId: string;
2289
+ headers?: {
2252
2290
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2253
- pAccountName: string;
2254
- };
2291
+ "x-access-token"?: string | undefined;
2292
+ } | undefined;
2255
2293
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainmigrationMigration[]>;
2256
2294
  /** Suggest a list of domains based on a prompt using AI. */
2257
2295
  suggest: (conf: {
@@ -3090,6 +3128,18 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
3090
3128
  }) => import("@mittwald/react-use-promise").AsyncResource<{
3091
3129
  sshKey: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupSshKey;
3092
3130
  }>;
3131
+ /** Check status of the current session. */
3132
+ getCurrentSessionStatus: (conf?: {
3133
+ headers?: {
3134
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3135
+ "x-access-token"?: string | undefined;
3136
+ } | undefined;
3137
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
3138
+ isEmployee: boolean;
3139
+ isImpersonated: boolean;
3140
+ tokenId: string;
3141
+ userId: string;
3142
+ }>;
3093
3143
  /** The timestamp of your latest password change. */
3094
3144
  getPasswordUpdatedAt: (conf?: {
3095
3145
  headers?: {
@@ -3237,6 +3287,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3237
3287
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3238
3288
  limit?: number | undefined;
3239
3289
  skip?: number | undefined;
3290
+ searchTerm?: string | undefined;
3240
3291
  } | undefined;
3241
3292
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[]>;
3242
3293
  /** Get a ProjectInvite. */
@@ -3399,6 +3450,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3399
3450
  isInherited?: boolean | undefined;
3400
3451
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
3401
3452
  hasMfa?: boolean | undefined;
3453
+ searchTerm?: string | undefined;
3402
3454
  } | undefined;
3403
3455
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
3404
3456
  /** List ProjectInvites belonging to the executing user. */