@mittwald/api-client 3.1.6 → 3.1.8
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/cjs/generated/v2/client-react.d.ts +25 -18
- package/dist/cjs/generated/v2/client-react.js +6 -6
- package/dist/cjs/generated/v2/client.d.ts +66 -56
- package/dist/cjs/generated/v2/client.js +15 -15
- package/dist/cjs/generated/v2/descriptors.d.ts +23 -23
- package/dist/cjs/generated/v2/descriptors.js +46 -46
- package/dist/cjs/generated/v2/types.d.ts +122 -107
- package/dist/esm/generated/v2/client-react.d.ts +25 -18
- package/dist/esm/generated/v2/client-react.js +6 -6
- package/dist/esm/generated/v2/client.d.ts +66 -56
- package/dist/esm/generated/v2/client.js +15 -15
- package/dist/esm/generated/v2/descriptors.d.ts +23 -23
- package/dist/esm/generated/v2/descriptors.js +43 -43
- package/dist/esm/generated/v2/types.d.ts +122 -107
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -328,6 +328,12 @@ export const conversationUpdateConversation = {
|
|
|
328
328
|
method: "PUT",
|
|
329
329
|
operationId: "conversation-update-conversation",
|
|
330
330
|
};
|
|
331
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
332
|
+
export const conversationGetFileAccessToken = {
|
|
333
|
+
path: "/v2/conversations/{conversationId}/files/{fileId}/access-token",
|
|
334
|
+
method: "GET",
|
|
335
|
+
operationId: "conversation-get-file-access-token",
|
|
336
|
+
};
|
|
331
337
|
/** Get all conversation categories. */
|
|
332
338
|
export const conversationListCategories = {
|
|
333
339
|
path: "/v2/conversation-categories",
|
|
@@ -904,53 +910,47 @@ export const fileGetFile = {
|
|
|
904
910
|
method: "GET",
|
|
905
911
|
operationId: "file-get-file",
|
|
906
912
|
};
|
|
913
|
+
/** List Ingresses. */
|
|
914
|
+
export const ingressListIngresses = {
|
|
915
|
+
path: "/v2/ingresses",
|
|
916
|
+
method: "GET",
|
|
917
|
+
operationId: "ingress-list-ingresses",
|
|
918
|
+
};
|
|
907
919
|
/** Create an Ingress. */
|
|
908
|
-
export const
|
|
909
|
-
path: "/v2/ingresses
|
|
920
|
+
export const ingressCreateIngress = {
|
|
921
|
+
path: "/v2/ingresses",
|
|
910
922
|
method: "POST",
|
|
911
|
-
operationId: "ingress-create",
|
|
923
|
+
operationId: "ingress-create-ingress",
|
|
912
924
|
};
|
|
913
925
|
/** Get an Ingress. */
|
|
914
|
-
export const
|
|
926
|
+
export const ingressGetIngress = {
|
|
915
927
|
path: "/v2/ingresses/{ingressId}",
|
|
916
928
|
method: "GET",
|
|
917
|
-
operationId: "ingress-get-
|
|
929
|
+
operationId: "ingress-get-ingress",
|
|
918
930
|
};
|
|
919
931
|
/** Delete an Ingress. */
|
|
920
|
-
export const
|
|
932
|
+
export const ingressDeleteIngress = {
|
|
921
933
|
path: "/v2/ingresses/{ingressId}",
|
|
922
934
|
method: "DELETE",
|
|
923
|
-
operationId: "ingress-delete",
|
|
935
|
+
operationId: "ingress-delete-ingress",
|
|
924
936
|
};
|
|
925
|
-
/**
|
|
926
|
-
export const
|
|
927
|
-
path: "/v2/ingresses",
|
|
928
|
-
method: "GET",
|
|
929
|
-
operationId: "ingress-list-accessible",
|
|
930
|
-
};
|
|
931
|
-
/** List Ingresses belonging to a project. */
|
|
932
|
-
export const ingressListForProject = {
|
|
933
|
-
path: "/v2/projects/{projectId}/ingresses",
|
|
934
|
-
method: "GET",
|
|
935
|
-
operationId: "ingress-list-for-project",
|
|
936
|
-
};
|
|
937
|
-
/** Update an Ingresses paths. */
|
|
938
|
-
export const ingressPaths = {
|
|
937
|
+
/** Update the paths of an Ingress. */
|
|
938
|
+
export const ingressUpdateIngressPaths = {
|
|
939
939
|
path: "/v2/ingresses/{ingressId}/paths",
|
|
940
|
-
method: "
|
|
941
|
-
operationId: "ingress-paths",
|
|
940
|
+
method: "PATCH",
|
|
941
|
+
operationId: "ingress-update-ingress-paths",
|
|
942
942
|
};
|
|
943
|
-
/** Request ACME certificate issuance */
|
|
944
|
-
export const
|
|
943
|
+
/** Request the ACME certificate issuance of an Ingress. */
|
|
944
|
+
export const ingressRequestIngressAcmeCertificateIssuance = {
|
|
945
945
|
path: "/v2/ingresses/{ingressId}/actions/request-acme-certificate-issuance",
|
|
946
946
|
method: "POST",
|
|
947
|
-
operationId: "ingress-request-acme-certificate-issuance",
|
|
947
|
+
operationId: "ingress-request-ingress-acme-certificate-issuance",
|
|
948
948
|
};
|
|
949
|
-
/** Update
|
|
950
|
-
export const
|
|
949
|
+
/** Update the tls settings of an Ingress. */
|
|
950
|
+
export const ingressUpdateIngressTls = {
|
|
951
951
|
path: "/v2/ingresses/{ingressId}/tls",
|
|
952
|
-
method: "
|
|
953
|
-
operationId: "ingress-tls",
|
|
952
|
+
method: "PATCH",
|
|
953
|
+
operationId: "ingress-update-ingress-tls",
|
|
954
954
|
};
|
|
955
955
|
/** Get details of an Invoice. */
|
|
956
956
|
export const invoiceDetailOfInvoice = {
|
|
@@ -1051,43 +1051,43 @@ export const mailUpdateMailAddressAddress = {
|
|
|
1051
1051
|
/** Update the autoresponder of a MailAddress. */
|
|
1052
1052
|
export const mailUpdateMailAddressAutoresponder = {
|
|
1053
1053
|
path: "/v2/mail-addresses/{mailAddressId}/autoresponder",
|
|
1054
|
-
method: "
|
|
1054
|
+
method: "PATCH",
|
|
1055
1055
|
operationId: "mail-update-mail-address-autoresponder",
|
|
1056
1056
|
};
|
|
1057
1057
|
/** Update the catchall of a MailAddress. */
|
|
1058
|
-
export const
|
|
1059
|
-
path: "/v2/mail-addresses/{mailAddressId}/
|
|
1060
|
-
method: "
|
|
1061
|
-
operationId: "mail-update-mail-address-
|
|
1058
|
+
export const mailUpdateMailAddressCatchAll = {
|
|
1059
|
+
path: "/v2/mail-addresses/{mailAddressId}/catch-all",
|
|
1060
|
+
method: "PATCH",
|
|
1061
|
+
operationId: "mail-update-mail-address-catch-all",
|
|
1062
1062
|
};
|
|
1063
1063
|
/** Update the forward addresses of a MailAddresses. */
|
|
1064
1064
|
export const mailUpdateMailAddressForwardAddresses = {
|
|
1065
1065
|
path: "/v2/mail-addresses/{mailAddressId}/forward-addresses",
|
|
1066
|
-
method: "
|
|
1066
|
+
method: "PATCH",
|
|
1067
1067
|
operationId: "mail-update-mail-address-forward-addresses",
|
|
1068
1068
|
};
|
|
1069
1069
|
/** Update the password for a MailAddress. */
|
|
1070
1070
|
export const mailUpdateMailAddressPassword = {
|
|
1071
1071
|
path: "/v2/mail-addresses/{mailAddressId}/password",
|
|
1072
|
-
method: "
|
|
1072
|
+
method: "PATCH",
|
|
1073
1073
|
operationId: "mail-update-mail-address-password",
|
|
1074
1074
|
};
|
|
1075
1075
|
/** Update the quota of a MailAddress. */
|
|
1076
1076
|
export const mailUpdateMailAddressQuota = {
|
|
1077
1077
|
path: "/v2/mail-addresses/{mailAddressId}/quota",
|
|
1078
|
-
method: "
|
|
1078
|
+
method: "PATCH",
|
|
1079
1079
|
operationId: "mail-update-mail-address-quota",
|
|
1080
1080
|
};
|
|
1081
1081
|
/** Update the spam protection of a MailAddress. */
|
|
1082
1082
|
export const mailUpdateMailAddressSpamProtection = {
|
|
1083
1083
|
path: "/v2/mail-addresses/{mailAddressId}/spam-protection",
|
|
1084
|
-
method: "
|
|
1084
|
+
method: "PATCH",
|
|
1085
1085
|
operationId: "mail-update-mail-address-spam-protection",
|
|
1086
1086
|
};
|
|
1087
1087
|
/** Update a mail setting of a Project. */
|
|
1088
1088
|
export const mailUpdateProjectMailSetting = {
|
|
1089
1089
|
path: "/v2/projects/{projectId}/mail-settings/{setting}",
|
|
1090
|
-
method: "
|
|
1090
|
+
method: "PATCH",
|
|
1091
1091
|
operationId: "mail-update-project-mail-setting",
|
|
1092
1092
|
};
|
|
1093
1093
|
/** Getting the subscription status of the subscription. */
|
|
@@ -1180,9 +1180,9 @@ export const pageinsightsListPerformanceDataForProject = {
|
|
|
1180
1180
|
method: "GET",
|
|
1181
1181
|
operationId: "pageinsights-list-performance-data-for-project",
|
|
1182
1182
|
};
|
|
1183
|
-
/** Get a
|
|
1183
|
+
/** Get a PasswordPolicy. */
|
|
1184
1184
|
export const passwordValidationGetPasswordPolicy = {
|
|
1185
|
-
path: "/v2/password
|
|
1185
|
+
path: "/v2/password-policies/{passwordPolicy}",
|
|
1186
1186
|
method: "GET",
|
|
1187
1187
|
operationId: "password-validation-get-password-policy",
|
|
1188
1188
|
};
|
|
@@ -1458,7 +1458,7 @@ export const sshUserDeleteSshUser = {
|
|
|
1458
1458
|
};
|
|
1459
1459
|
/** Update an SSHUser. */
|
|
1460
1460
|
export const sshUserUpdateSshUser = {
|
|
1461
|
-
path: "/v2/
|
|
1461
|
+
path: "/v2/ssh-users/{sshUserId}",
|
|
1462
1462
|
method: "PATCH",
|
|
1463
1463
|
operationId: "ssh-user-update-ssh-user",
|
|
1464
1464
|
};
|
|
@@ -222,6 +222,10 @@ export declare module MittwaldAPIV2 {
|
|
|
222
222
|
type RequestData = InferredRequestData<typeof descriptors.conversationUpdateConversation>;
|
|
223
223
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationUpdateConversation, TStatus>;
|
|
224
224
|
}
|
|
225
|
+
namespace ConversationGetFileAccessToken {
|
|
226
|
+
type RequestData = InferredRequestData<typeof descriptors.conversationGetFileAccessToken>;
|
|
227
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetFileAccessToken, TStatus>;
|
|
228
|
+
}
|
|
225
229
|
namespace ConversationListCategories {
|
|
226
230
|
type RequestData = InferredRequestData<typeof descriptors.conversationListCategories>;
|
|
227
231
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationListCategories, TStatus>;
|
|
@@ -606,37 +610,33 @@ export declare module MittwaldAPIV2 {
|
|
|
606
610
|
type RequestData = InferredRequestData<typeof descriptors.fileGetFile>;
|
|
607
611
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.fileGetFile, TStatus>;
|
|
608
612
|
}
|
|
609
|
-
namespace
|
|
610
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
611
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
612
|
-
}
|
|
613
|
-
namespace IngressGetSpecific {
|
|
614
|
-
type RequestData = InferredRequestData<typeof descriptors.ingressGetSpecific>;
|
|
615
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressGetSpecific, TStatus>;
|
|
613
|
+
namespace IngressListIngresses {
|
|
614
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressListIngresses>;
|
|
615
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressListIngresses, TStatus>;
|
|
616
616
|
}
|
|
617
|
-
namespace
|
|
618
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
619
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
617
|
+
namespace IngressCreateIngress {
|
|
618
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressCreateIngress>;
|
|
619
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressCreateIngress, TStatus>;
|
|
620
620
|
}
|
|
621
|
-
namespace
|
|
622
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
623
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
621
|
+
namespace IngressGetIngress {
|
|
622
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressGetIngress>;
|
|
623
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressGetIngress, TStatus>;
|
|
624
624
|
}
|
|
625
|
-
namespace
|
|
626
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
627
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
625
|
+
namespace IngressDeleteIngress {
|
|
626
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressDeleteIngress>;
|
|
627
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressDeleteIngress, TStatus>;
|
|
628
628
|
}
|
|
629
|
-
namespace
|
|
630
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
631
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
629
|
+
namespace IngressUpdateIngressPaths {
|
|
630
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressUpdateIngressPaths>;
|
|
631
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressUpdateIngressPaths, TStatus>;
|
|
632
632
|
}
|
|
633
|
-
namespace
|
|
634
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
635
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
633
|
+
namespace IngressRequestIngressAcmeCertificateIssuance {
|
|
634
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressRequestIngressAcmeCertificateIssuance>;
|
|
635
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressRequestIngressAcmeCertificateIssuance, TStatus>;
|
|
636
636
|
}
|
|
637
|
-
namespace
|
|
638
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
639
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
637
|
+
namespace IngressUpdateIngressTls {
|
|
638
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressUpdateIngressTls>;
|
|
639
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressUpdateIngressTls, TStatus>;
|
|
640
640
|
}
|
|
641
641
|
namespace InvoiceDetailOfInvoice {
|
|
642
642
|
type RequestData = InferredRequestData<typeof descriptors.invoiceDetailOfInvoice>;
|
|
@@ -706,9 +706,9 @@ export declare module MittwaldAPIV2 {
|
|
|
706
706
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateMailAddressAutoresponder>;
|
|
707
707
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateMailAddressAutoresponder, TStatus>;
|
|
708
708
|
}
|
|
709
|
-
namespace
|
|
710
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
711
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
709
|
+
namespace MailUpdateMailAddressCatchAll {
|
|
710
|
+
type RequestData = InferredRequestData<typeof descriptors.mailUpdateMailAddressCatchAll>;
|
|
711
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateMailAddressCatchAll, TStatus>;
|
|
712
712
|
}
|
|
713
713
|
namespace MailUpdateMailAddressForwardAddresses {
|
|
714
714
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateMailAddressForwardAddresses>;
|
|
@@ -5181,6 +5181,51 @@ export declare module MittwaldAPIV2 {
|
|
|
5181
5181
|
}
|
|
5182
5182
|
}
|
|
5183
5183
|
}
|
|
5184
|
+
namespace V2ConversationsConversationIdFilesFileIdAccessToken {
|
|
5185
|
+
namespace Get {
|
|
5186
|
+
namespace Parameters {
|
|
5187
|
+
type Path = {
|
|
5188
|
+
conversationId: string;
|
|
5189
|
+
fileId: string;
|
|
5190
|
+
};
|
|
5191
|
+
interface RequestBody {
|
|
5192
|
+
}
|
|
5193
|
+
type Header = {};
|
|
5194
|
+
type Query = {};
|
|
5195
|
+
}
|
|
5196
|
+
namespace Responses {
|
|
5197
|
+
namespace $200 {
|
|
5198
|
+
namespace Content {
|
|
5199
|
+
interface ApplicationJson {
|
|
5200
|
+
accessToken: string;
|
|
5201
|
+
expiresAt: string;
|
|
5202
|
+
}
|
|
5203
|
+
}
|
|
5204
|
+
}
|
|
5205
|
+
namespace $400 {
|
|
5206
|
+
namespace Content {
|
|
5207
|
+
interface ApplicationJson {
|
|
5208
|
+
[k: string]: unknown;
|
|
5209
|
+
}
|
|
5210
|
+
}
|
|
5211
|
+
}
|
|
5212
|
+
namespace $404 {
|
|
5213
|
+
namespace Content {
|
|
5214
|
+
interface ApplicationJson {
|
|
5215
|
+
[k: string]: unknown;
|
|
5216
|
+
}
|
|
5217
|
+
}
|
|
5218
|
+
}
|
|
5219
|
+
namespace Default {
|
|
5220
|
+
namespace Content {
|
|
5221
|
+
interface ApplicationJson {
|
|
5222
|
+
[k: string]: unknown;
|
|
5223
|
+
}
|
|
5224
|
+
}
|
|
5225
|
+
}
|
|
5226
|
+
}
|
|
5227
|
+
}
|
|
5228
|
+
}
|
|
5184
5229
|
namespace V2ConversationCategories {
|
|
5185
5230
|
namespace Get {
|
|
5186
5231
|
namespace Parameters {
|
|
@@ -8945,58 +8990,18 @@ export declare module MittwaldAPIV2 {
|
|
|
8945
8990
|
}
|
|
8946
8991
|
}
|
|
8947
8992
|
namespace V2Ingresses {
|
|
8948
|
-
namespace
|
|
8993
|
+
namespace Get {
|
|
8949
8994
|
namespace Parameters {
|
|
8950
8995
|
type Path = {};
|
|
8951
|
-
interface RequestBody {
|
|
8952
|
-
hostname: string;
|
|
8953
|
-
/**
|
|
8954
|
-
* A list of paths. The default path `/` is always present and cannot be removed.
|
|
8955
|
-
*/
|
|
8956
|
-
paths: MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
8957
|
-
projectId: string;
|
|
8958
|
-
}
|
|
8959
8996
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8960
|
-
type Query = {
|
|
8961
|
-
|
|
8962
|
-
namespace Responses {
|
|
8963
|
-
namespace $201 {
|
|
8964
|
-
namespace Content {
|
|
8965
|
-
interface ApplicationJson {
|
|
8966
|
-
id: string;
|
|
8967
|
-
}
|
|
8968
|
-
}
|
|
8969
|
-
}
|
|
8970
|
-
namespace $404 {
|
|
8971
|
-
namespace Content {
|
|
8972
|
-
interface ApplicationJson {
|
|
8973
|
-
[k: string]: unknown;
|
|
8974
|
-
}
|
|
8975
|
-
}
|
|
8976
|
-
}
|
|
8977
|
-
namespace Default {
|
|
8978
|
-
namespace Content {
|
|
8979
|
-
interface ApplicationJson {
|
|
8980
|
-
[k: string]: unknown;
|
|
8981
|
-
}
|
|
8982
|
-
}
|
|
8983
|
-
}
|
|
8984
|
-
}
|
|
8985
|
-
}
|
|
8986
|
-
}
|
|
8987
|
-
namespace V2IngressesIngressId {
|
|
8988
|
-
namespace Get {
|
|
8989
|
-
namespace Parameters {
|
|
8990
|
-
type Path = {
|
|
8991
|
-
ingressId: string;
|
|
8997
|
+
type Query = {
|
|
8998
|
+
projectId?: string;
|
|
8992
8999
|
};
|
|
8993
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8994
|
-
type Query = {};
|
|
8995
9000
|
}
|
|
8996
9001
|
namespace Responses {
|
|
8997
9002
|
namespace $200 {
|
|
8998
9003
|
namespace Content {
|
|
8999
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress;
|
|
9004
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress[];
|
|
9000
9005
|
}
|
|
9001
9006
|
}
|
|
9002
9007
|
namespace $404 {
|
|
@@ -9015,18 +9020,26 @@ export declare module MittwaldAPIV2 {
|
|
|
9015
9020
|
}
|
|
9016
9021
|
}
|
|
9017
9022
|
}
|
|
9018
|
-
namespace
|
|
9023
|
+
namespace Post {
|
|
9019
9024
|
namespace Parameters {
|
|
9020
|
-
type Path = {
|
|
9021
|
-
|
|
9022
|
-
|
|
9025
|
+
type Path = {};
|
|
9026
|
+
interface RequestBody {
|
|
9027
|
+
hostname: string;
|
|
9028
|
+
/**
|
|
9029
|
+
* A list of paths. The default path `/` is always present and cannot be removed.
|
|
9030
|
+
*/
|
|
9031
|
+
paths: MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
9032
|
+
projectId: string;
|
|
9033
|
+
}
|
|
9023
9034
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9024
9035
|
type Query = {};
|
|
9025
9036
|
}
|
|
9026
9037
|
namespace Responses {
|
|
9027
|
-
namespace $
|
|
9038
|
+
namespace $201 {
|
|
9028
9039
|
namespace Content {
|
|
9029
|
-
|
|
9040
|
+
interface ApplicationJson {
|
|
9041
|
+
id: string;
|
|
9042
|
+
}
|
|
9030
9043
|
}
|
|
9031
9044
|
}
|
|
9032
9045
|
namespace $404 {
|
|
@@ -9046,17 +9059,19 @@ export declare module MittwaldAPIV2 {
|
|
|
9046
9059
|
}
|
|
9047
9060
|
}
|
|
9048
9061
|
}
|
|
9049
|
-
namespace
|
|
9062
|
+
namespace V2IngressesIngressId {
|
|
9050
9063
|
namespace Get {
|
|
9051
9064
|
namespace Parameters {
|
|
9052
|
-
type Path = {
|
|
9065
|
+
type Path = {
|
|
9066
|
+
ingressId: string;
|
|
9067
|
+
};
|
|
9053
9068
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9054
9069
|
type Query = {};
|
|
9055
9070
|
}
|
|
9056
9071
|
namespace Responses {
|
|
9057
9072
|
namespace $200 {
|
|
9058
9073
|
namespace Content {
|
|
9059
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress
|
|
9074
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress;
|
|
9060
9075
|
}
|
|
9061
9076
|
}
|
|
9062
9077
|
namespace $404 {
|
|
@@ -9075,20 +9090,18 @@ export declare module MittwaldAPIV2 {
|
|
|
9075
9090
|
}
|
|
9076
9091
|
}
|
|
9077
9092
|
}
|
|
9078
|
-
|
|
9079
|
-
namespace V2ProjectsProjectIdIngresses {
|
|
9080
|
-
namespace Get {
|
|
9093
|
+
namespace Delete {
|
|
9081
9094
|
namespace Parameters {
|
|
9082
9095
|
type Path = {
|
|
9083
|
-
|
|
9096
|
+
ingressId: string;
|
|
9084
9097
|
};
|
|
9085
9098
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9086
9099
|
type Query = {};
|
|
9087
9100
|
}
|
|
9088
9101
|
namespace Responses {
|
|
9089
|
-
namespace $
|
|
9102
|
+
namespace $204 {
|
|
9090
9103
|
namespace Content {
|
|
9091
|
-
type
|
|
9104
|
+
type Empty = unknown;
|
|
9092
9105
|
}
|
|
9093
9106
|
}
|
|
9094
9107
|
namespace $404 {
|
|
@@ -9108,8 +9121,9 @@ export declare module MittwaldAPIV2 {
|
|
|
9108
9121
|
}
|
|
9109
9122
|
}
|
|
9110
9123
|
}
|
|
9124
|
+
namespace V2ProjectsProjectIdIngresses { }
|
|
9111
9125
|
namespace V2IngressesIngressIdPaths {
|
|
9112
|
-
namespace
|
|
9126
|
+
namespace Patch {
|
|
9113
9127
|
namespace Parameters {
|
|
9114
9128
|
type Path = {
|
|
9115
9129
|
ingressId: string;
|
|
@@ -9181,7 +9195,7 @@ export declare module MittwaldAPIV2 {
|
|
|
9181
9195
|
}
|
|
9182
9196
|
}
|
|
9183
9197
|
namespace V2IngressesIngressIdTls {
|
|
9184
|
-
namespace
|
|
9198
|
+
namespace Patch {
|
|
9185
9199
|
namespace Parameters {
|
|
9186
9200
|
type Path = {
|
|
9187
9201
|
ingressId: string;
|
|
@@ -10127,9 +10141,8 @@ export declare module MittwaldAPIV2 {
|
|
|
10127
10141
|
}
|
|
10128
10142
|
}
|
|
10129
10143
|
}
|
|
10130
|
-
namespace V2MailaddressesMailAddressIdAutoResponder { }
|
|
10131
10144
|
namespace V2MailAddressesMailAddressIdAutoresponder {
|
|
10132
|
-
namespace
|
|
10145
|
+
namespace Patch {
|
|
10133
10146
|
namespace Parameters {
|
|
10134
10147
|
type Path = {
|
|
10135
10148
|
mailAddressId: string;
|
|
@@ -10196,9 +10209,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10196
10209
|
}
|
|
10197
10210
|
}
|
|
10198
10211
|
}
|
|
10199
|
-
namespace
|
|
10200
|
-
namespace
|
|
10201
|
-
namespace
|
|
10212
|
+
namespace V2MailaddressesMailAddressIdAutoResponder { }
|
|
10213
|
+
namespace V2MailAddressesMailAddressIdCatchAll {
|
|
10214
|
+
namespace Patch {
|
|
10202
10215
|
namespace Parameters {
|
|
10203
10216
|
type Path = {
|
|
10204
10217
|
mailAddressId: string;
|
|
@@ -10260,9 +10273,10 @@ export declare module MittwaldAPIV2 {
|
|
|
10260
10273
|
}
|
|
10261
10274
|
}
|
|
10262
10275
|
}
|
|
10263
|
-
namespace
|
|
10276
|
+
namespace V2MailaddressesMailAddressIdCatchAll { }
|
|
10277
|
+
namespace V2MailAddressesMailAddressIdCatchall { }
|
|
10264
10278
|
namespace V2MailAddressesMailAddressIdForwardAddresses {
|
|
10265
|
-
namespace
|
|
10279
|
+
namespace Patch {
|
|
10266
10280
|
namespace Parameters {
|
|
10267
10281
|
type Path = {
|
|
10268
10282
|
mailAddressId: string;
|
|
@@ -10324,9 +10338,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10324
10338
|
}
|
|
10325
10339
|
}
|
|
10326
10340
|
}
|
|
10327
|
-
namespace
|
|
10341
|
+
namespace V2MailaddressesMailAddressIdForwardaddresses { }
|
|
10328
10342
|
namespace V2MailAddressesMailAddressIdPassword {
|
|
10329
|
-
namespace
|
|
10343
|
+
namespace Patch {
|
|
10330
10344
|
namespace Parameters {
|
|
10331
10345
|
type Path = {
|
|
10332
10346
|
mailAddressId: string;
|
|
@@ -10388,9 +10402,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10388
10402
|
}
|
|
10389
10403
|
}
|
|
10390
10404
|
}
|
|
10391
|
-
namespace
|
|
10405
|
+
namespace V2MailaddressesMailAddressIdPassword { }
|
|
10392
10406
|
namespace V2MailAddressesMailAddressIdQuota {
|
|
10393
|
-
namespace
|
|
10407
|
+
namespace Patch {
|
|
10394
10408
|
namespace Parameters {
|
|
10395
10409
|
type Path = {
|
|
10396
10410
|
mailAddressId: string;
|
|
@@ -10452,9 +10466,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10452
10466
|
}
|
|
10453
10467
|
}
|
|
10454
10468
|
}
|
|
10455
|
-
namespace
|
|
10469
|
+
namespace V2MailaddressesMailAddressIdQuota { }
|
|
10456
10470
|
namespace V2MailAddressesMailAddressIdSpamProtection {
|
|
10457
|
-
namespace
|
|
10471
|
+
namespace Patch {
|
|
10458
10472
|
namespace Parameters {
|
|
10459
10473
|
type Path = {
|
|
10460
10474
|
mailAddressId: string;
|
|
@@ -10521,8 +10535,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10521
10535
|
}
|
|
10522
10536
|
}
|
|
10523
10537
|
}
|
|
10538
|
+
namespace V2MailaddressesMailAddressIdSpamprotection { }
|
|
10524
10539
|
namespace V2ProjectsProjectIdMailSettingsSetting {
|
|
10525
|
-
namespace
|
|
10540
|
+
namespace Patch {
|
|
10526
10541
|
namespace Parameters {
|
|
10527
10542
|
type Path = {
|
|
10528
10543
|
projectId: string;
|
|
@@ -11101,11 +11116,11 @@ export declare module MittwaldAPIV2 {
|
|
|
11101
11116
|
}
|
|
11102
11117
|
}
|
|
11103
11118
|
}
|
|
11104
|
-
namespace
|
|
11119
|
+
namespace V2PasswordPoliciesPasswordPolicy {
|
|
11105
11120
|
namespace Get {
|
|
11106
11121
|
namespace Parameters {
|
|
11107
11122
|
type Path = {
|
|
11108
|
-
|
|
11123
|
+
passwordPolicy: string;
|
|
11109
11124
|
};
|
|
11110
11125
|
type Header = {};
|
|
11111
11126
|
type Query = {};
|
|
@@ -11126,6 +11141,7 @@ export declare module MittwaldAPIV2 {
|
|
|
11126
11141
|
}
|
|
11127
11142
|
}
|
|
11128
11143
|
}
|
|
11144
|
+
namespace V2PasswordPoliciesPath { }
|
|
11129
11145
|
namespace V2ProjectInvitesInviteIdActionsAccept {
|
|
11130
11146
|
namespace Post {
|
|
11131
11147
|
namespace Parameters {
|
|
@@ -12887,8 +12903,6 @@ export declare module MittwaldAPIV2 {
|
|
|
12887
12903
|
}
|
|
12888
12904
|
}
|
|
12889
12905
|
}
|
|
12890
|
-
}
|
|
12891
|
-
namespace V2SshusersSshUserId {
|
|
12892
12906
|
namespace Patch {
|
|
12893
12907
|
namespace Parameters {
|
|
12894
12908
|
type Path = {
|
|
@@ -12927,6 +12941,7 @@ export declare module MittwaldAPIV2 {
|
|
|
12927
12941
|
}
|
|
12928
12942
|
}
|
|
12929
12943
|
}
|
|
12944
|
+
namespace V2SshusersSshUserId { }
|
|
12930
12945
|
namespace V2UsersUserIdPhone {
|
|
12931
12946
|
namespace Post {
|
|
12932
12947
|
namespace Parameters {
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '3.1.8';
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export const MittwaldAPIClientVersion = '3.1.8';
|