@mittwald/api-client 3.0.20 → 3.0.22

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.
@@ -100,12 +100,6 @@ export const appListUpdateCandidatesForAppversion = {
100
100
  method: "GET",
101
101
  operationId: "app-list-update-candidates-for-appversion",
102
102
  };
103
- /** reconcile detected apps to appInstallations of a project */
104
- export const appReconcileDetectedApps = {
105
- path: "/v2/projects/{projectShortId}/appinstallations",
106
- method: "PUT",
107
- operationId: "app-reconcile-detected-apps",
108
- };
109
103
  /** request a copy of an `AppInstallation` */
110
104
  export const appRequestAppinstallationCopy = {
111
105
  path: "/v2/appinstallations/{id}/actions/copy",
@@ -1012,125 +1006,119 @@ export const invoiceListCustomerInvoices = {
1012
1006
  method: "GET",
1013
1007
  operationId: "invoice-list-customer-invoices",
1014
1008
  };
1015
- /** Get all deliveryboxes by project ID */
1016
- export const mailDeliveryboxList = {
1017
- path: "/v2/projects/{projectId}/deliveryboxes",
1009
+ /** List DeliveryBoxes belonging to a Project. */
1010
+ export const mailListDeliveryBoxes = {
1011
+ path: "/v2/projects/{projectId}/delivery-boxes",
1018
1012
  method: "GET",
1019
- operationId: "mail-deliverybox-list",
1013
+ operationId: "mail-list-delivery-boxes",
1020
1014
  };
1021
- /** Create a new deliverybox */
1022
- export const mailDeliveryboxCreate = {
1023
- path: "/v2/projects/{projectId}/deliveryboxes",
1015
+ /** Create a DeliveryBox. */
1016
+ export const mailCreateDeliverybox = {
1017
+ path: "/v2/projects/{projectId}/delivery-boxes",
1024
1018
  method: "POST",
1025
- operationId: "mail-deliverybox-create",
1019
+ operationId: "mail-create-deliverybox",
1026
1020
  };
1027
- /** Get a specific deliverybox */
1028
- export const mailDeliveryboxGetSpecific = {
1029
- path: "/v2/deliveryboxes/{id}",
1021
+ /** List MailAddresses belonging to a Project. */
1022
+ export const mailListMailAddresses = {
1023
+ path: "/v2/projects/{projectId}/mail-addresses",
1030
1024
  method: "GET",
1031
- operationId: "mail-deliverybox-get-specific",
1025
+ operationId: "mail-list-mail-addresses",
1032
1026
  };
1033
- /** Delete a specific deliverybox */
1034
- export const mailDeliveryboxDelete = {
1035
- path: "/v2/deliveryboxes/{id}",
1036
- method: "DELETE",
1037
- operationId: "mail-deliverybox-delete",
1027
+ /** Create a MailAddress. */
1028
+ export const mailCreateMailAddress = {
1029
+ path: "/v2/projects/{projectId}/mail-addresses",
1030
+ method: "POST",
1031
+ operationId: "mail-create-mail-address",
1038
1032
  };
1039
- /** Update the description of an deliverybox */
1040
- export const mailDeliveryboxUpdateDescription = {
1041
- path: "/v2/deliveryboxes/{id}/description",
1042
- method: "PUT",
1043
- operationId: "mail-deliverybox-update-description",
1033
+ /** Get a DeliveryBox. */
1034
+ export const mailGetDeliveryBox = {
1035
+ path: "/v2/delivery-boxes/{deliveryBoxId}",
1036
+ method: "GET",
1037
+ operationId: "mail-get-delivery-box",
1044
1038
  };
1045
- /** Update the password for a specific deliverybox */
1046
- export const mailDeliveryboxUpdatePassword = {
1047
- path: "/v2/deliveryboxes/{id}/password",
1048
- method: "PUT",
1049
- operationId: "mail-deliverybox-update-password",
1039
+ /** Delete a DeliveryBox. */
1040
+ export const mailDeleteDeliveryBox = {
1041
+ path: "/v2/delivery-boxes/{deliveryBoxId}",
1042
+ method: "DELETE",
1043
+ operationId: "mail-delete-delivery-box",
1050
1044
  };
1051
- /** Get all mail addresses for a project ID */
1052
- export const mailMailaddressList = {
1053
- path: "/v2/projects/{projectId}/mailaddresses",
1045
+ /** Get a MailAddress. */
1046
+ export const mailGetMailAddress = {
1047
+ path: "/v2/mail-addresses/{mailAddressId}",
1054
1048
  method: "GET",
1055
- operationId: "mail-mailaddress-list",
1049
+ operationId: "mail-get-mail-address",
1056
1050
  };
1057
- /** Create a new mail address */
1058
- export const mailMailaddressCreate = {
1059
- path: "/v2/projects/{projectId}/mailaddresses",
1060
- method: "POST",
1061
- operationId: "mail-mailaddress-create",
1051
+ /** Delete a MailAddress. */
1052
+ export const mailDeleteMailAddress = {
1053
+ path: "/v2/mail-addresses/{mailAddressId}",
1054
+ method: "DELETE",
1055
+ operationId: "mail-delete-mail-address",
1062
1056
  };
1063
- /** Get a specific mail address */
1064
- export const mailMailaddressGetSpecific = {
1065
- path: "/v2/mailaddresses/{id}",
1057
+ /** List mail settings of a Project. */
1058
+ export const mailListProjectMailSettings = {
1059
+ path: "/v2/projects/{projectId}/mail-settings",
1066
1060
  method: "GET",
1067
- operationId: "mail-mailaddress-get-specific",
1061
+ operationId: "mail-list-project-mail-settings",
1068
1062
  };
1069
- /** Delete a specific mail address */
1070
- export const mailMailaddressDelete = {
1071
- path: "/v2/mailaddresses/{id}",
1072
- method: "DELETE",
1073
- operationId: "mail-mailaddress-delete",
1063
+ /** Update the description of a DeliveryBox. */
1064
+ export const mailUpdateDeliveryBoxDescription = {
1065
+ path: "/v2/delivery-boxes/{deliveryBoxId}/description",
1066
+ method: "PATCH",
1067
+ operationId: "mail-update-delivery-box-description",
1074
1068
  };
1075
- /** Update mail-address */
1076
- export const mailMailaddressUpdateAddress = {
1077
- path: "/v2/mailaddresses/{id}/address",
1078
- method: "PUT",
1079
- operationId: "mail-mailaddress-update-address",
1069
+ /** Update the password of a DeliveryBox. */
1070
+ export const mailUpdateDeliveryBoxPassword = {
1071
+ path: "/v2/delivery-boxes/{deliveryBoxId}/password",
1072
+ method: "PATCH",
1073
+ operationId: "mail-update-delivery-box-password",
1080
1074
  };
1081
- /** Update the auto responder of a mail address */
1082
- export const mailMailaddressUpdateAutoresponder = {
1083
- path: "/v2/mailaddresses/{id}/autoResponder",
1084
- method: "PUT",
1085
- operationId: "mail-mailaddress-update-autoresponder",
1075
+ /** Update a MailAddress. */
1076
+ export const mailUpdateMailAddressAddress = {
1077
+ path: "/v2/mail-addresses/{mailAddressId}/address",
1078
+ method: "PATCH",
1079
+ operationId: "mail-update-mail-address-address",
1086
1080
  };
1087
- /** Enable or disable the catchAll flag for a specific mail address */
1088
- export const mailMailaddressUpdateCatchall = {
1089
- path: "/v2/mailaddresses/{id}/catchAll",
1081
+ /** Update the autoresponder of a MailAddress. */
1082
+ export const mailUpdateMailAddressAutoresponder = {
1083
+ path: "/v2/mail-addresses/{mailAddressId}/autoresponder",
1090
1084
  method: "PUT",
1091
- operationId: "mail-mailaddress-update-catchall",
1085
+ operationId: "mail-update-mail-address-autoresponder",
1092
1086
  };
1093
- /** Update the addresses an email is forwarded to */
1094
- export const mailMailaddressUpdateForwardaddresses = {
1095
- path: "/v2/mailaddresses/{id}/forwardaddresses",
1087
+ /** Update the catchall of a MailAddress. */
1088
+ export const mailUpdateMailAddressCatchall = {
1089
+ path: "/v2/mail-addresses/{mailAddressId}/catchall",
1096
1090
  method: "PUT",
1097
- operationId: "mail-mailaddress-update-forwardaddresses",
1091
+ operationId: "mail-update-mail-address-catchall",
1098
1092
  };
1099
- /** Update the password for a specific mail address */
1100
- export const mailMailaddressUpdatePassword = {
1101
- path: "/v2/mailaddresses/{id}/password",
1093
+ /** Update the forward addresses of a MailAddresses. */
1094
+ export const mailUpdateMailAddressForwardAddresses = {
1095
+ path: "/v2/mail-addresses/{mailAddressId}/forward-addresses",
1102
1096
  method: "PUT",
1103
- operationId: "mail-mailaddress-update-password",
1097
+ operationId: "mail-update-mail-address-forward-addresses",
1104
1098
  };
1105
- /** Update the quota of a mailbox */
1106
- export const mailMailaddressUpdateQuota = {
1107
- path: "/v2/mailaddresses/{id}/quota",
1099
+ /** Update the password for a MailAddress. */
1100
+ export const mailUpdateMailAddressPassword = {
1101
+ path: "/v2/mail-addresses/{mailAddressId}/password",
1108
1102
  method: "PUT",
1109
- operationId: "mail-mailaddress-update-quota",
1103
+ operationId: "mail-update-mail-address-password",
1110
1104
  };
1111
- /** Update the spamprotection of a mailbox */
1112
- export const mailMailaddressUpdateSpamprotection = {
1113
- path: "/v2/mailaddresses/{id}/spamprotection",
1105
+ /** Update the quota of a MailAddress. */
1106
+ export const mailUpdateMailAddressQuota = {
1107
+ path: "/v2/mail-addresses/{mailAddressId}/quota",
1114
1108
  method: "PUT",
1115
- operationId: "mail-mailaddress-update-spamprotection",
1116
- };
1117
- /** Get settings for a given project ID */
1118
- export const mailProjectsettingGetSpecific = {
1119
- path: "/v2/projects/{projectId}/mailsettings",
1120
- method: "GET",
1121
- operationId: "mail-projectsetting-get-specific",
1109
+ operationId: "mail-update-mail-address-quota",
1122
1110
  };
1123
- /** Update blacklist for a given project ID */
1124
- export const mailProjectsettingUpdateBlacklist = {
1125
- path: "/v2/projects/{projectId}/mailsettings/blacklist",
1111
+ /** Update the spam protection of a MailAddress. */
1112
+ export const mailUpdateMailAddressSpamProtection = {
1113
+ path: "/v2/mail-addresses/{mailAddressId}/spam-protection",
1126
1114
  method: "PUT",
1127
- operationId: "mail-projectsetting-update-blacklist",
1115
+ operationId: "mail-update-mail-address-spam-protection",
1128
1116
  };
1129
- /** Update whitelist for a given project ID */
1130
- export const mailProjectsettingUpdateWhitelist = {
1131
- path: "/v2/projects/{projectId}/mailsettings/whitelist",
1117
+ /** Update a mail setting of a Project. */
1118
+ export const mailUpdateProjectMailSetting = {
1119
+ path: "/v2/projects/{projectId}/mail-settings/{setting}",
1132
1120
  method: "PUT",
1133
- operationId: "mail-projectsetting-update-whitelist",
1121
+ operationId: "mail-update-project-mail-setting",
1134
1122
  };
1135
1123
  /** Getting the subscription status of the subscription. */
1136
1124
  export const newsletterGetInfo = {
@@ -1432,6 +1420,12 @@ export const relocationCreateLegacyTariffChange = {
1432
1420
  method: "POST",
1433
1421
  operationId: "relocation-create-legacy-tariff-change",
1434
1422
  };
1423
+ /** Relocate an external Project to mittwald. */
1424
+ export const relocationCreateRelocation = {
1425
+ path: "/v2/relocation",
1426
+ method: "POST",
1427
+ operationId: "relocation-create-relocation",
1428
+ };
1435
1429
  /** Obtain a service token. */
1436
1430
  export const servicetokenAuthenticateService = {
1437
1431
  path: "/v2/services/{accessKeyId}/actions/authenticate",
@@ -1786,9 +1780,3 @@ export const userVerifyRegistration = {
1786
1780
  method: "POST",
1787
1781
  operationId: "user-verify-registration",
1788
1782
  };
1789
- /** Relocate an external Project to mittwald. */
1790
- export const relocationCreateRelocation = {
1791
- path: "/v2/relocation",
1792
- method: "POST",
1793
- operationId: "relocation-create-relocation",
1794
- };