@mittwald/api-client 4.52.0 → 4.53.0
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.
- package/dist/esm/generated/v2/client-react.js +42 -71
- package/dist/esm/generated/v2/client.js +144 -205
- package/dist/esm/generated/v2/descriptors.js +36 -204
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +342 -493
- package/dist/types/generated/v2/client.d.ts +5136 -5579
- package/dist/types/generated/v2/descriptors.d.ts +321 -377
- package/dist/types/generated/v2/types.d.ts +2707 -2132
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -112,6 +112,12 @@ export const appListUpdateCandidatesForAppversion = {
|
|
|
112
112
|
method: "GET",
|
|
113
113
|
operationId: "app-list-update-candidates-for-appversion",
|
|
114
114
|
};
|
|
115
|
+
/** Replace a MySQL Database with another MySQL Database. */
|
|
116
|
+
export const appReplaceDatabase = {
|
|
117
|
+
path: "/v2/app-installations/{appInstallationId}/database/replace",
|
|
118
|
+
method: "PATCH",
|
|
119
|
+
operationId: "app-replace-database",
|
|
120
|
+
};
|
|
115
121
|
/** Request a copy of an AppInstallation. */
|
|
116
122
|
export const appRequestAppinstallationCopy = {
|
|
117
123
|
path: "/v2/app-installations/{appInstallationId}/actions/copy",
|
|
@@ -220,138 +226,6 @@ export const backupUpdateProjectBackupDescription = {
|
|
|
220
226
|
method: "PATCH",
|
|
221
227
|
operationId: "backup-update-project-backup-description",
|
|
222
228
|
};
|
|
223
|
-
/** List Registries belonging to a Project. */
|
|
224
|
-
export const containerListRegistries = {
|
|
225
|
-
path: "/v2/projects/{projectId}/registries",
|
|
226
|
-
method: "GET",
|
|
227
|
-
operationId: "container-list-registries",
|
|
228
|
-
};
|
|
229
|
-
/** Create a Registry. */
|
|
230
|
-
export const containerCreateRegistry = {
|
|
231
|
-
path: "/v2/projects/{projectId}/registries",
|
|
232
|
-
method: "POST",
|
|
233
|
-
operationId: "container-create-registry",
|
|
234
|
-
};
|
|
235
|
-
/** Get a Stack. */
|
|
236
|
-
export const containerGetStack = {
|
|
237
|
-
path: "/v2/stacks/{stackId}",
|
|
238
|
-
method: "GET",
|
|
239
|
-
operationId: "container-get-stack",
|
|
240
|
-
};
|
|
241
|
-
/** Declaratively create, update or delete Services or Volumes belonging to a Stack. */
|
|
242
|
-
export const containerDeclareStack = {
|
|
243
|
-
path: "/v2/stacks/{stackId}",
|
|
244
|
-
method: "PUT",
|
|
245
|
-
operationId: "container-declare-stack",
|
|
246
|
-
};
|
|
247
|
-
/** Create, update or delete Services or Volumes belonging to a Stack. */
|
|
248
|
-
export const containerUpdateStack = {
|
|
249
|
-
path: "/v2/stacks/{stackId}",
|
|
250
|
-
method: "PATCH",
|
|
251
|
-
operationId: "container-update-stack",
|
|
252
|
-
};
|
|
253
|
-
/** Get a Registry. */
|
|
254
|
-
export const containerGetRegistry = {
|
|
255
|
-
path: "/v2/registries/{registryId}",
|
|
256
|
-
method: "GET",
|
|
257
|
-
operationId: "container-get-registry",
|
|
258
|
-
};
|
|
259
|
-
/** Delete a Registry. */
|
|
260
|
-
export const containerDeleteRegistry = {
|
|
261
|
-
path: "/v2/registries/{registryId}",
|
|
262
|
-
method: "DELETE",
|
|
263
|
-
operationId: "container-delete-registry",
|
|
264
|
-
};
|
|
265
|
-
/** Update a Registry. */
|
|
266
|
-
export const containerUpdateRegistry = {
|
|
267
|
-
path: "/v2/registries/{registryId}",
|
|
268
|
-
method: "PATCH",
|
|
269
|
-
operationId: "container-update-registry",
|
|
270
|
-
};
|
|
271
|
-
/** Get a Volume belonging to a Stack. */
|
|
272
|
-
export const containerGetVolume = {
|
|
273
|
-
path: "/v2/stacks/{stackId}/volumes/{volumeId}",
|
|
274
|
-
method: "GET",
|
|
275
|
-
operationId: "container-get-volume",
|
|
276
|
-
};
|
|
277
|
-
/** Delete a Volume belonging to a Stack. */
|
|
278
|
-
export const containerDeleteVolume = {
|
|
279
|
-
path: "/v2/stacks/{stackId}/volumes/{volumeId}",
|
|
280
|
-
method: "DELETE",
|
|
281
|
-
operationId: "container-delete-volume",
|
|
282
|
-
};
|
|
283
|
-
/** Get a ContainerImageConfig. */
|
|
284
|
-
export const containerGetContainerImageConfig = {
|
|
285
|
-
path: "/v2/container-image-config",
|
|
286
|
-
method: "GET",
|
|
287
|
-
operationId: "container-get-container-image-config",
|
|
288
|
-
};
|
|
289
|
-
/** Get logs belonging to a Service. */
|
|
290
|
-
export const containerGetServiceLogs = {
|
|
291
|
-
path: "/v2/stacks/{stackId}/services/{serviceId}/logs",
|
|
292
|
-
method: "GET",
|
|
293
|
-
operationId: "container-get-service-logs",
|
|
294
|
-
};
|
|
295
|
-
/** Get a Service belonging to a Stack. */
|
|
296
|
-
export const containerGetService = {
|
|
297
|
-
path: "/v2/stacks/{stackId}/services/{serviceId}",
|
|
298
|
-
method: "GET",
|
|
299
|
-
operationId: "container-get-service",
|
|
300
|
-
};
|
|
301
|
-
/** List Services belonging to a Project. */
|
|
302
|
-
export const containerListServices = {
|
|
303
|
-
path: "/v2/projects/{projectId}/services",
|
|
304
|
-
method: "GET",
|
|
305
|
-
operationId: "container-list-services",
|
|
306
|
-
};
|
|
307
|
-
/** List Stacks belonging to a Project. */
|
|
308
|
-
export const containerListStacks = {
|
|
309
|
-
path: "/v2/projects/{projectId}/stacks",
|
|
310
|
-
method: "GET",
|
|
311
|
-
operationId: "container-list-stacks",
|
|
312
|
-
};
|
|
313
|
-
/** List Volumes belonging to a Project. */
|
|
314
|
-
export const containerListVolumes = {
|
|
315
|
-
path: "/v2/projects/{projectId}/volumes",
|
|
316
|
-
method: "GET",
|
|
317
|
-
operationId: "container-list-volumes",
|
|
318
|
-
};
|
|
319
|
-
/** Recreate a Service. */
|
|
320
|
-
export const containerRecreateService = {
|
|
321
|
-
path: "/v2/stacks/{stackId}/services/{serviceId}/actions/recreate",
|
|
322
|
-
method: "POST",
|
|
323
|
-
operationId: "container-recreate-service",
|
|
324
|
-
};
|
|
325
|
-
/** Restart a started Service. */
|
|
326
|
-
export const containerRestartService = {
|
|
327
|
-
path: "/v2/stacks/{stackId}/services/{serviceId}/actions/restart",
|
|
328
|
-
method: "POST",
|
|
329
|
-
operationId: "container-restart-service",
|
|
330
|
-
};
|
|
331
|
-
/** Start a stopped Service. */
|
|
332
|
-
export const containerStartService = {
|
|
333
|
-
path: "/v2/stacks/{stackId}/services/{serviceId}/actions/start",
|
|
334
|
-
method: "POST",
|
|
335
|
-
operationId: "container-start-service",
|
|
336
|
-
};
|
|
337
|
-
/** Stop a started Service. */
|
|
338
|
-
export const containerStopService = {
|
|
339
|
-
path: "/v2/stacks/{stackId}/services/{serviceId}/actions/stop",
|
|
340
|
-
method: "POST",
|
|
341
|
-
operationId: "container-stop-service",
|
|
342
|
-
};
|
|
343
|
-
/** Validate a Registries' URI. */
|
|
344
|
-
export const containerValidateContainerRegistryUri = {
|
|
345
|
-
path: "/v2/actions/validate-container-registry-uri",
|
|
346
|
-
method: "POST",
|
|
347
|
-
operationId: "container-validate-container-registry-uri",
|
|
348
|
-
};
|
|
349
|
-
/** Validate a Registries' credentials. */
|
|
350
|
-
export const containerValidateRegistryCredentials = {
|
|
351
|
-
path: "/v2/registries/{registryId}/actions/validate-credentials",
|
|
352
|
-
method: "POST",
|
|
353
|
-
operationId: "container-validate-registry-credentials",
|
|
354
|
-
};
|
|
355
229
|
/** Schedule the Termination of a ContractItem. */
|
|
356
230
|
export const contractTerminateContractItem = {
|
|
357
231
|
path: "/v2/contracts/{contractId}/items/{contractItemId}/termination",
|
|
@@ -430,6 +304,12 @@ export const contractListContracts = {
|
|
|
430
304
|
method: "GET",
|
|
431
305
|
operationId: "contract-list-contracts",
|
|
432
306
|
};
|
|
307
|
+
/** Rotate the secret for an extension instance. */
|
|
308
|
+
export const contributorRotateSecretForExtensionInstance = {
|
|
309
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
|
310
|
+
method: "PUT",
|
|
311
|
+
operationId: "contributor-rotate-secret-for-extension-instance",
|
|
312
|
+
};
|
|
433
313
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
434
314
|
export const conversationListConversations = {
|
|
435
315
|
path: "/v2/conversations",
|
|
@@ -580,18 +460,6 @@ export const customerAcceptCustomerInvite = {
|
|
|
580
460
|
method: "POST",
|
|
581
461
|
operationId: "customer-accept-customer-invite",
|
|
582
462
|
};
|
|
583
|
-
/** Get all customer categories. */
|
|
584
|
-
export const customerListOfCustomerCategories = {
|
|
585
|
-
path: "/v2/customer-categories",
|
|
586
|
-
method: "GET",
|
|
587
|
-
operationId: "customer-list-of-customer-categories",
|
|
588
|
-
};
|
|
589
|
-
/** Create a new customer category. */
|
|
590
|
-
export const customerCreateCategory = {
|
|
591
|
-
path: "/v2/customer-categories",
|
|
592
|
-
method: "POST",
|
|
593
|
-
operationId: "customer-create-category",
|
|
594
|
-
};
|
|
595
463
|
/** Create a CustomerInvite. */
|
|
596
464
|
export const customerCreateCustomerInvite = {
|
|
597
465
|
path: "/v2/customer/{customerId}/invites",
|
|
@@ -616,24 +484,6 @@ export const customerDeclineCustomerInvite = {
|
|
|
616
484
|
method: "POST",
|
|
617
485
|
operationId: "customer-decline-customer-invite",
|
|
618
486
|
};
|
|
619
|
-
/** Get a customer category. */
|
|
620
|
-
export const customerGetCustomerCategory = {
|
|
621
|
-
path: "/v2/customer-categories/{categoryId}",
|
|
622
|
-
method: "GET",
|
|
623
|
-
operationId: "customer-get-customer-category",
|
|
624
|
-
};
|
|
625
|
-
/** Update a customer category. */
|
|
626
|
-
export const customerUpdateCategory = {
|
|
627
|
-
path: "/v2/customer-categories/{categoryId}",
|
|
628
|
-
method: "PUT",
|
|
629
|
-
operationId: "customer-update-category",
|
|
630
|
-
};
|
|
631
|
-
/** Delete a customer category. */
|
|
632
|
-
export const customerDeleteCategory = {
|
|
633
|
-
path: "/v2/customer-categories/{categoryId}",
|
|
634
|
-
method: "DELETE",
|
|
635
|
-
operationId: "customer-delete-category",
|
|
636
|
-
};
|
|
637
487
|
/** Get a CustomerInvite. */
|
|
638
488
|
export const customerGetCustomerInvite = {
|
|
639
489
|
path: "/v2/customer-invites/{customerInviteId}",
|
|
@@ -976,18 +826,6 @@ export const domainDeleteDomain = {
|
|
|
976
826
|
method: "DELETE",
|
|
977
827
|
operationId: "domain-delete-domain",
|
|
978
828
|
};
|
|
979
|
-
/** Generate a list of domains from an input using AI. */
|
|
980
|
-
export const domainGenerateFromInput = {
|
|
981
|
-
path: "/v2/domains-generate",
|
|
982
|
-
method: "POST",
|
|
983
|
-
operationId: "domain-generate-from-input",
|
|
984
|
-
};
|
|
985
|
-
/** Generate a list of domains from an input using AI, based on previously generated Domains and a context modification. */
|
|
986
|
-
export const domainGenerateInContext = {
|
|
987
|
-
path: "/v2/domains-generate-in-context",
|
|
988
|
-
method: "POST",
|
|
989
|
-
operationId: "domain-generate-in-context",
|
|
990
|
-
};
|
|
991
829
|
/** Get the latest screenshot's FileReference belonging to a Domain. */
|
|
992
830
|
export const domainGetLatestScreenshot = {
|
|
993
831
|
path: "/v2/domains/{domainId}/latest-screenshot",
|
|
@@ -1012,6 +850,12 @@ export const domainResendDomainEmail = {
|
|
|
1012
850
|
method: "POST",
|
|
1013
851
|
operationId: "domain-resend-domain-email",
|
|
1014
852
|
};
|
|
853
|
+
/** Suggest a list of domains based on a prompt using AI. */
|
|
854
|
+
export const domainSuggest = {
|
|
855
|
+
path: "/v2/domain-suggestions",
|
|
856
|
+
method: "GET",
|
|
857
|
+
operationId: "domain-suggest",
|
|
858
|
+
};
|
|
1015
859
|
/** Update the auth code of a Domain. */
|
|
1016
860
|
export const domainUpdateDomainAuthCode = {
|
|
1017
861
|
path: "/v2/domains/{domainId}/auth-code",
|
|
@@ -1078,6 +922,12 @@ export const extensionDisableExtensionInstance = {
|
|
|
1078
922
|
method: "POST",
|
|
1079
923
|
operationId: "extension-disable-extension-instance",
|
|
1080
924
|
};
|
|
925
|
+
/** Dry run a webhook with random or given values. */
|
|
926
|
+
export const extensionDryRunWebhook = {
|
|
927
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/actions/dry-run/{webhookKind}",
|
|
928
|
+
method: "POST",
|
|
929
|
+
operationId: "extension-dry-run-webhook",
|
|
930
|
+
};
|
|
1081
931
|
/** Enable an ExtensionInstance. */
|
|
1082
932
|
export const extensionEnableExtensionInstance = {
|
|
1083
933
|
path: "/v2/extension-instances/{extensionInstanceId}/actions/enable",
|
|
@@ -1282,30 +1132,6 @@ export const mailListProjectMailSettings = {
|
|
|
1282
1132
|
method: "GET",
|
|
1283
1133
|
operationId: "mail-list-project-mail-settings",
|
|
1284
1134
|
};
|
|
1285
|
-
/** Check if a Migration between two projects is possible. */
|
|
1286
|
-
export const mailMigrationCheckMigrationIsPossible = {
|
|
1287
|
-
path: "/v2/mail-migrations/actions/possibility-check",
|
|
1288
|
-
method: "POST",
|
|
1289
|
-
operationId: "mail-migration-check-migration-is-possible",
|
|
1290
|
-
};
|
|
1291
|
-
/** Get a Migration. */
|
|
1292
|
-
export const mailMigrationGetMigration = {
|
|
1293
|
-
path: "/v2/mail-migrations/{migrationId}",
|
|
1294
|
-
method: "GET",
|
|
1295
|
-
operationId: "mail-migration-get-migration",
|
|
1296
|
-
};
|
|
1297
|
-
/** List Migrations belonging to a Project in customer center or mStudio. */
|
|
1298
|
-
export const mailMigrationListMigrations = {
|
|
1299
|
-
path: "/v2/mail-migrations",
|
|
1300
|
-
method: "GET",
|
|
1301
|
-
operationId: "mail-migration-list-migrations",
|
|
1302
|
-
};
|
|
1303
|
-
/** Request a Mail Migration between two projects. */
|
|
1304
|
-
export const mailMigrationRequestMailMigration = {
|
|
1305
|
-
path: "/v2/mail-migrations/actions/request",
|
|
1306
|
-
method: "POST",
|
|
1307
|
-
operationId: "mail-migration-request-mail-migration",
|
|
1308
|
-
};
|
|
1309
1135
|
/** Update the description of a DeliveryBox. */
|
|
1310
1136
|
export const mailUpdateDeliveryBoxDescription = {
|
|
1311
1137
|
path: "/v2/delivery-boxes/{deliveryBoxId}/description",
|
|
@@ -1474,6 +1300,12 @@ export const pageinsightsScheduleStrace = {
|
|
|
1474
1300
|
method: "POST",
|
|
1475
1301
|
operationId: "pageinsights-schedule-strace",
|
|
1476
1302
|
};
|
|
1303
|
+
/** Get a PasswordPolicy. */
|
|
1304
|
+
export const passwordValidationGetPasswordPolicy = {
|
|
1305
|
+
path: "/v2/password-policies/{passwordPolicy}",
|
|
1306
|
+
method: "GET",
|
|
1307
|
+
operationId: "password-validation-get-password-policy",
|
|
1308
|
+
};
|
|
1477
1309
|
/** Accept a ProjectInvite. */
|
|
1478
1310
|
export const projectAcceptProjectInvite = {
|
|
1479
1311
|
path: "/v2/project-invites/{projectInviteId}/actions/accept",
|
|
@@ -1684,6 +1516,12 @@ export const relocationCreateRelocation = {
|
|
|
1684
1516
|
method: "POST",
|
|
1685
1517
|
operationId: "relocation-create-relocation",
|
|
1686
1518
|
};
|
|
1519
|
+
/** Obtain a service token. */
|
|
1520
|
+
export const servicetokenAuthenticateService = {
|
|
1521
|
+
path: "/v2/services/{accessKeyId}/actions/authenticate",
|
|
1522
|
+
method: "POST",
|
|
1523
|
+
operationId: "servicetoken-authenticate-service",
|
|
1524
|
+
};
|
|
1687
1525
|
/** Get all SFTPUsers for a Project. */
|
|
1688
1526
|
export const sftpUserListSftpUsers = {
|
|
1689
1527
|
path: "/v2/projects/{projectId}/sftp-users",
|
|
@@ -2068,9 +1906,3 @@ export const userVerifyRegistration = {
|
|
|
2068
1906
|
method: "POST",
|
|
2069
1907
|
operationId: "user-verify-registration",
|
|
2070
1908
|
};
|
|
2071
|
-
/** Rotate the secret for an extension instance. */
|
|
2072
|
-
export const contributorRotateSecretForExtensionInstance = {
|
|
2073
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
|
2074
|
-
method: "PUT",
|
|
2075
|
-
operationId: "contributor-rotate-secret-for-extension-instance",
|
|
2076
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.52.0';
|