@mittwald/api-client 3.1.6 → 3.1.7
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 +22 -22
- package/dist/cjs/generated/v2/descriptors.js +45 -45
- package/dist/cjs/generated/v2/types.d.ts +121 -105
- 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 +22 -22
- package/dist/esm/generated/v2/descriptors.js +42 -42
- package/dist/esm/generated/v2/types.d.ts +121 -105
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -904,53 +904,47 @@ export const fileGetFile = {
|
|
|
904
904
|
method: "GET",
|
|
905
905
|
operationId: "file-get-file",
|
|
906
906
|
};
|
|
907
|
+
/** List Ingresses. */
|
|
908
|
+
export const ingressListIngresses = {
|
|
909
|
+
path: "/v2/ingresses",
|
|
910
|
+
method: "GET",
|
|
911
|
+
operationId: "ingress-list-ingresses",
|
|
912
|
+
};
|
|
907
913
|
/** Create an Ingress. */
|
|
908
|
-
export const
|
|
909
|
-
path: "/v2/ingresses
|
|
914
|
+
export const ingressCreateIngress = {
|
|
915
|
+
path: "/v2/ingresses",
|
|
910
916
|
method: "POST",
|
|
911
|
-
operationId: "ingress-create",
|
|
917
|
+
operationId: "ingress-create-ingress",
|
|
912
918
|
};
|
|
913
919
|
/** Get an Ingress. */
|
|
914
|
-
export const
|
|
920
|
+
export const ingressGetIngress = {
|
|
915
921
|
path: "/v2/ingresses/{ingressId}",
|
|
916
922
|
method: "GET",
|
|
917
|
-
operationId: "ingress-get-
|
|
923
|
+
operationId: "ingress-get-ingress",
|
|
918
924
|
};
|
|
919
925
|
/** Delete an Ingress. */
|
|
920
|
-
export const
|
|
926
|
+
export const ingressDeleteIngress = {
|
|
921
927
|
path: "/v2/ingresses/{ingressId}",
|
|
922
928
|
method: "DELETE",
|
|
923
|
-
operationId: "ingress-delete",
|
|
929
|
+
operationId: "ingress-delete-ingress",
|
|
924
930
|
};
|
|
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 = {
|
|
931
|
+
/** Update the paths of an Ingress. */
|
|
932
|
+
export const ingressUpdateIngressPaths = {
|
|
939
933
|
path: "/v2/ingresses/{ingressId}/paths",
|
|
940
|
-
method: "
|
|
941
|
-
operationId: "ingress-paths",
|
|
934
|
+
method: "PATCH",
|
|
935
|
+
operationId: "ingress-update-ingress-paths",
|
|
942
936
|
};
|
|
943
|
-
/** Request ACME certificate issuance */
|
|
944
|
-
export const
|
|
937
|
+
/** Request the ACME certificate issuance of an Ingress. */
|
|
938
|
+
export const ingressRequestIngressAcmeCertificateIssuance = {
|
|
945
939
|
path: "/v2/ingresses/{ingressId}/actions/request-acme-certificate-issuance",
|
|
946
940
|
method: "POST",
|
|
947
|
-
operationId: "ingress-request-acme-certificate-issuance",
|
|
941
|
+
operationId: "ingress-request-ingress-acme-certificate-issuance",
|
|
948
942
|
};
|
|
949
|
-
/** Update
|
|
950
|
-
export const
|
|
943
|
+
/** Update the tls settings of an Ingress. */
|
|
944
|
+
export const ingressUpdateIngressTls = {
|
|
951
945
|
path: "/v2/ingresses/{ingressId}/tls",
|
|
952
|
-
method: "
|
|
953
|
-
operationId: "ingress-tls",
|
|
946
|
+
method: "PATCH",
|
|
947
|
+
operationId: "ingress-update-ingress-tls",
|
|
954
948
|
};
|
|
955
949
|
/** Get details of an Invoice. */
|
|
956
950
|
export const invoiceDetailOfInvoice = {
|
|
@@ -1051,43 +1045,43 @@ export const mailUpdateMailAddressAddress = {
|
|
|
1051
1045
|
/** Update the autoresponder of a MailAddress. */
|
|
1052
1046
|
export const mailUpdateMailAddressAutoresponder = {
|
|
1053
1047
|
path: "/v2/mail-addresses/{mailAddressId}/autoresponder",
|
|
1054
|
-
method: "
|
|
1048
|
+
method: "PATCH",
|
|
1055
1049
|
operationId: "mail-update-mail-address-autoresponder",
|
|
1056
1050
|
};
|
|
1057
1051
|
/** Update the catchall of a MailAddress. */
|
|
1058
|
-
export const
|
|
1059
|
-
path: "/v2/mail-addresses/{mailAddressId}/
|
|
1060
|
-
method: "
|
|
1061
|
-
operationId: "mail-update-mail-address-
|
|
1052
|
+
export const mailUpdateMailAddressCatchAll = {
|
|
1053
|
+
path: "/v2/mail-addresses/{mailAddressId}/catch-all",
|
|
1054
|
+
method: "PATCH",
|
|
1055
|
+
operationId: "mail-update-mail-address-catch-all",
|
|
1062
1056
|
};
|
|
1063
1057
|
/** Update the forward addresses of a MailAddresses. */
|
|
1064
1058
|
export const mailUpdateMailAddressForwardAddresses = {
|
|
1065
1059
|
path: "/v2/mail-addresses/{mailAddressId}/forward-addresses",
|
|
1066
|
-
method: "
|
|
1060
|
+
method: "PATCH",
|
|
1067
1061
|
operationId: "mail-update-mail-address-forward-addresses",
|
|
1068
1062
|
};
|
|
1069
1063
|
/** Update the password for a MailAddress. */
|
|
1070
1064
|
export const mailUpdateMailAddressPassword = {
|
|
1071
1065
|
path: "/v2/mail-addresses/{mailAddressId}/password",
|
|
1072
|
-
method: "
|
|
1066
|
+
method: "PATCH",
|
|
1073
1067
|
operationId: "mail-update-mail-address-password",
|
|
1074
1068
|
};
|
|
1075
1069
|
/** Update the quota of a MailAddress. */
|
|
1076
1070
|
export const mailUpdateMailAddressQuota = {
|
|
1077
1071
|
path: "/v2/mail-addresses/{mailAddressId}/quota",
|
|
1078
|
-
method: "
|
|
1072
|
+
method: "PATCH",
|
|
1079
1073
|
operationId: "mail-update-mail-address-quota",
|
|
1080
1074
|
};
|
|
1081
1075
|
/** Update the spam protection of a MailAddress. */
|
|
1082
1076
|
export const mailUpdateMailAddressSpamProtection = {
|
|
1083
1077
|
path: "/v2/mail-addresses/{mailAddressId}/spam-protection",
|
|
1084
|
-
method: "
|
|
1078
|
+
method: "PATCH",
|
|
1085
1079
|
operationId: "mail-update-mail-address-spam-protection",
|
|
1086
1080
|
};
|
|
1087
1081
|
/** Update a mail setting of a Project. */
|
|
1088
1082
|
export const mailUpdateProjectMailSetting = {
|
|
1089
1083
|
path: "/v2/projects/{projectId}/mail-settings/{setting}",
|
|
1090
|
-
method: "
|
|
1084
|
+
method: "PATCH",
|
|
1091
1085
|
operationId: "mail-update-project-mail-setting",
|
|
1092
1086
|
};
|
|
1093
1087
|
/** Getting the subscription status of the subscription. */
|
|
@@ -1180,9 +1174,9 @@ export const pageinsightsListPerformanceDataForProject = {
|
|
|
1180
1174
|
method: "GET",
|
|
1181
1175
|
operationId: "pageinsights-list-performance-data-for-project",
|
|
1182
1176
|
};
|
|
1183
|
-
/** Get a
|
|
1177
|
+
/** Get a PasswordPolicy. */
|
|
1184
1178
|
export const passwordValidationGetPasswordPolicy = {
|
|
1185
|
-
path: "/v2/password
|
|
1179
|
+
path: "/v2/password-policies/{passwordPolicy}",
|
|
1186
1180
|
method: "GET",
|
|
1187
1181
|
operationId: "password-validation-get-password-policy",
|
|
1188
1182
|
};
|
|
@@ -1750,3 +1744,9 @@ export const userVerifyRegistration = {
|
|
|
1750
1744
|
method: "POST",
|
|
1751
1745
|
operationId: "user-verify-registration",
|
|
1752
1746
|
};
|
|
1747
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
1748
|
+
export const conversationGetFileAccessToken = {
|
|
1749
|
+
path: "/v2/conversations/{conversationId}/files/{fileId}/access-token",
|
|
1750
|
+
method: "GET",
|
|
1751
|
+
operationId: "conversation-get-file-access-token",
|
|
1752
|
+
};
|
|
@@ -606,37 +606,33 @@ export declare module MittwaldAPIV2 {
|
|
|
606
606
|
type RequestData = InferredRequestData<typeof descriptors.fileGetFile>;
|
|
607
607
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.fileGetFile, TStatus>;
|
|
608
608
|
}
|
|
609
|
-
namespace
|
|
610
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
611
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
609
|
+
namespace IngressListIngresses {
|
|
610
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressListIngresses>;
|
|
611
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressListIngresses, TStatus>;
|
|
612
612
|
}
|
|
613
|
-
namespace
|
|
614
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
615
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
613
|
+
namespace IngressCreateIngress {
|
|
614
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressCreateIngress>;
|
|
615
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressCreateIngress, TStatus>;
|
|
616
616
|
}
|
|
617
|
-
namespace
|
|
618
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
619
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
617
|
+
namespace IngressGetIngress {
|
|
618
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressGetIngress>;
|
|
619
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressGetIngress, TStatus>;
|
|
620
620
|
}
|
|
621
|
-
namespace
|
|
622
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
623
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
621
|
+
namespace IngressDeleteIngress {
|
|
622
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressDeleteIngress>;
|
|
623
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressDeleteIngress, TStatus>;
|
|
624
624
|
}
|
|
625
|
-
namespace
|
|
626
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
627
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
625
|
+
namespace IngressUpdateIngressPaths {
|
|
626
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressUpdateIngressPaths>;
|
|
627
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressUpdateIngressPaths, TStatus>;
|
|
628
628
|
}
|
|
629
|
-
namespace
|
|
630
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
631
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
629
|
+
namespace IngressRequestIngressAcmeCertificateIssuance {
|
|
630
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressRequestIngressAcmeCertificateIssuance>;
|
|
631
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressRequestIngressAcmeCertificateIssuance, TStatus>;
|
|
632
632
|
}
|
|
633
|
-
namespace
|
|
634
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
635
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
636
|
-
}
|
|
637
|
-
namespace IngressTls {
|
|
638
|
-
type RequestData = InferredRequestData<typeof descriptors.ingressTls>;
|
|
639
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressTls, TStatus>;
|
|
633
|
+
namespace IngressUpdateIngressTls {
|
|
634
|
+
type RequestData = InferredRequestData<typeof descriptors.ingressUpdateIngressTls>;
|
|
635
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.ingressUpdateIngressTls, TStatus>;
|
|
640
636
|
}
|
|
641
637
|
namespace InvoiceDetailOfInvoice {
|
|
642
638
|
type RequestData = InferredRequestData<typeof descriptors.invoiceDetailOfInvoice>;
|
|
@@ -706,9 +702,9 @@ export declare module MittwaldAPIV2 {
|
|
|
706
702
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateMailAddressAutoresponder>;
|
|
707
703
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateMailAddressAutoresponder, TStatus>;
|
|
708
704
|
}
|
|
709
|
-
namespace
|
|
710
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
711
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
705
|
+
namespace MailUpdateMailAddressCatchAll {
|
|
706
|
+
type RequestData = InferredRequestData<typeof descriptors.mailUpdateMailAddressCatchAll>;
|
|
707
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateMailAddressCatchAll, TStatus>;
|
|
712
708
|
}
|
|
713
709
|
namespace MailUpdateMailAddressForwardAddresses {
|
|
714
710
|
type RequestData = InferredRequestData<typeof descriptors.mailUpdateMailAddressForwardAddresses>;
|
|
@@ -1170,6 +1166,10 @@ export declare module MittwaldAPIV2 {
|
|
|
1170
1166
|
type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
|
|
1171
1167
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
|
|
1172
1168
|
}
|
|
1169
|
+
namespace ConversationGetFileAccessToken {
|
|
1170
|
+
type RequestData = InferredRequestData<typeof descriptors.conversationGetFileAccessToken>;
|
|
1171
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetFileAccessToken, TStatus>;
|
|
1172
|
+
}
|
|
1173
1173
|
}
|
|
1174
1174
|
namespace Components {
|
|
1175
1175
|
namespace Schemas {
|
|
@@ -8945,58 +8945,18 @@ export declare module MittwaldAPIV2 {
|
|
|
8945
8945
|
}
|
|
8946
8946
|
}
|
|
8947
8947
|
namespace V2Ingresses {
|
|
8948
|
-
namespace
|
|
8948
|
+
namespace Get {
|
|
8949
8949
|
namespace Parameters {
|
|
8950
8950
|
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
8951
|
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;
|
|
8952
|
+
type Query = {
|
|
8953
|
+
projectId?: string;
|
|
8992
8954
|
};
|
|
8993
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8994
|
-
type Query = {};
|
|
8995
8955
|
}
|
|
8996
8956
|
namespace Responses {
|
|
8997
8957
|
namespace $200 {
|
|
8998
8958
|
namespace Content {
|
|
8999
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress;
|
|
8959
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress[];
|
|
9000
8960
|
}
|
|
9001
8961
|
}
|
|
9002
8962
|
namespace $404 {
|
|
@@ -9015,18 +8975,26 @@ export declare module MittwaldAPIV2 {
|
|
|
9015
8975
|
}
|
|
9016
8976
|
}
|
|
9017
8977
|
}
|
|
9018
|
-
namespace
|
|
8978
|
+
namespace Post {
|
|
9019
8979
|
namespace Parameters {
|
|
9020
|
-
type Path = {
|
|
9021
|
-
|
|
9022
|
-
|
|
8980
|
+
type Path = {};
|
|
8981
|
+
interface RequestBody {
|
|
8982
|
+
hostname: string;
|
|
8983
|
+
/**
|
|
8984
|
+
* A list of paths. The default path `/` is always present and cannot be removed.
|
|
8985
|
+
*/
|
|
8986
|
+
paths: MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
8987
|
+
projectId: string;
|
|
8988
|
+
}
|
|
9023
8989
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9024
8990
|
type Query = {};
|
|
9025
8991
|
}
|
|
9026
8992
|
namespace Responses {
|
|
9027
|
-
namespace $
|
|
8993
|
+
namespace $201 {
|
|
9028
8994
|
namespace Content {
|
|
9029
|
-
|
|
8995
|
+
interface ApplicationJson {
|
|
8996
|
+
id: string;
|
|
8997
|
+
}
|
|
9030
8998
|
}
|
|
9031
8999
|
}
|
|
9032
9000
|
namespace $404 {
|
|
@@ -9046,17 +9014,19 @@ export declare module MittwaldAPIV2 {
|
|
|
9046
9014
|
}
|
|
9047
9015
|
}
|
|
9048
9016
|
}
|
|
9049
|
-
namespace
|
|
9017
|
+
namespace V2IngressesIngressId {
|
|
9050
9018
|
namespace Get {
|
|
9051
9019
|
namespace Parameters {
|
|
9052
|
-
type Path = {
|
|
9020
|
+
type Path = {
|
|
9021
|
+
ingressId: string;
|
|
9022
|
+
};
|
|
9053
9023
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9054
9024
|
type Query = {};
|
|
9055
9025
|
}
|
|
9056
9026
|
namespace Responses {
|
|
9057
9027
|
namespace $200 {
|
|
9058
9028
|
namespace Content {
|
|
9059
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress
|
|
9029
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.IngressIngress;
|
|
9060
9030
|
}
|
|
9061
9031
|
}
|
|
9062
9032
|
namespace $404 {
|
|
@@ -9075,20 +9045,18 @@ export declare module MittwaldAPIV2 {
|
|
|
9075
9045
|
}
|
|
9076
9046
|
}
|
|
9077
9047
|
}
|
|
9078
|
-
|
|
9079
|
-
namespace V2ProjectsProjectIdIngresses {
|
|
9080
|
-
namespace Get {
|
|
9048
|
+
namespace Delete {
|
|
9081
9049
|
namespace Parameters {
|
|
9082
9050
|
type Path = {
|
|
9083
|
-
|
|
9051
|
+
ingressId: string;
|
|
9084
9052
|
};
|
|
9085
9053
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9086
9054
|
type Query = {};
|
|
9087
9055
|
}
|
|
9088
9056
|
namespace Responses {
|
|
9089
|
-
namespace $
|
|
9057
|
+
namespace $204 {
|
|
9090
9058
|
namespace Content {
|
|
9091
|
-
type
|
|
9059
|
+
type Empty = unknown;
|
|
9092
9060
|
}
|
|
9093
9061
|
}
|
|
9094
9062
|
namespace $404 {
|
|
@@ -9108,8 +9076,9 @@ export declare module MittwaldAPIV2 {
|
|
|
9108
9076
|
}
|
|
9109
9077
|
}
|
|
9110
9078
|
}
|
|
9079
|
+
namespace V2ProjectsProjectIdIngresses { }
|
|
9111
9080
|
namespace V2IngressesIngressIdPaths {
|
|
9112
|
-
namespace
|
|
9081
|
+
namespace Patch {
|
|
9113
9082
|
namespace Parameters {
|
|
9114
9083
|
type Path = {
|
|
9115
9084
|
ingressId: string;
|
|
@@ -9181,7 +9150,7 @@ export declare module MittwaldAPIV2 {
|
|
|
9181
9150
|
}
|
|
9182
9151
|
}
|
|
9183
9152
|
namespace V2IngressesIngressIdTls {
|
|
9184
|
-
namespace
|
|
9153
|
+
namespace Patch {
|
|
9185
9154
|
namespace Parameters {
|
|
9186
9155
|
type Path = {
|
|
9187
9156
|
ingressId: string;
|
|
@@ -10127,9 +10096,8 @@ export declare module MittwaldAPIV2 {
|
|
|
10127
10096
|
}
|
|
10128
10097
|
}
|
|
10129
10098
|
}
|
|
10130
|
-
namespace V2MailaddressesMailAddressIdAutoResponder { }
|
|
10131
10099
|
namespace V2MailAddressesMailAddressIdAutoresponder {
|
|
10132
|
-
namespace
|
|
10100
|
+
namespace Patch {
|
|
10133
10101
|
namespace Parameters {
|
|
10134
10102
|
type Path = {
|
|
10135
10103
|
mailAddressId: string;
|
|
@@ -10196,9 +10164,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10196
10164
|
}
|
|
10197
10165
|
}
|
|
10198
10166
|
}
|
|
10199
|
-
namespace
|
|
10200
|
-
namespace
|
|
10201
|
-
namespace
|
|
10167
|
+
namespace V2MailaddressesMailAddressIdAutoResponder { }
|
|
10168
|
+
namespace V2MailAddressesMailAddressIdCatchAll {
|
|
10169
|
+
namespace Patch {
|
|
10202
10170
|
namespace Parameters {
|
|
10203
10171
|
type Path = {
|
|
10204
10172
|
mailAddressId: string;
|
|
@@ -10260,9 +10228,10 @@ export declare module MittwaldAPIV2 {
|
|
|
10260
10228
|
}
|
|
10261
10229
|
}
|
|
10262
10230
|
}
|
|
10263
|
-
namespace
|
|
10231
|
+
namespace V2MailaddressesMailAddressIdCatchAll { }
|
|
10232
|
+
namespace V2MailAddressesMailAddressIdCatchall { }
|
|
10264
10233
|
namespace V2MailAddressesMailAddressIdForwardAddresses {
|
|
10265
|
-
namespace
|
|
10234
|
+
namespace Patch {
|
|
10266
10235
|
namespace Parameters {
|
|
10267
10236
|
type Path = {
|
|
10268
10237
|
mailAddressId: string;
|
|
@@ -10324,9 +10293,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10324
10293
|
}
|
|
10325
10294
|
}
|
|
10326
10295
|
}
|
|
10327
|
-
namespace
|
|
10296
|
+
namespace V2MailaddressesMailAddressIdForwardaddresses { }
|
|
10328
10297
|
namespace V2MailAddressesMailAddressIdPassword {
|
|
10329
|
-
namespace
|
|
10298
|
+
namespace Patch {
|
|
10330
10299
|
namespace Parameters {
|
|
10331
10300
|
type Path = {
|
|
10332
10301
|
mailAddressId: string;
|
|
@@ -10388,9 +10357,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10388
10357
|
}
|
|
10389
10358
|
}
|
|
10390
10359
|
}
|
|
10391
|
-
namespace
|
|
10360
|
+
namespace V2MailaddressesMailAddressIdPassword { }
|
|
10392
10361
|
namespace V2MailAddressesMailAddressIdQuota {
|
|
10393
|
-
namespace
|
|
10362
|
+
namespace Patch {
|
|
10394
10363
|
namespace Parameters {
|
|
10395
10364
|
type Path = {
|
|
10396
10365
|
mailAddressId: string;
|
|
@@ -10452,9 +10421,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10452
10421
|
}
|
|
10453
10422
|
}
|
|
10454
10423
|
}
|
|
10455
|
-
namespace
|
|
10424
|
+
namespace V2MailaddressesMailAddressIdQuota { }
|
|
10456
10425
|
namespace V2MailAddressesMailAddressIdSpamProtection {
|
|
10457
|
-
namespace
|
|
10426
|
+
namespace Patch {
|
|
10458
10427
|
namespace Parameters {
|
|
10459
10428
|
type Path = {
|
|
10460
10429
|
mailAddressId: string;
|
|
@@ -10521,8 +10490,9 @@ export declare module MittwaldAPIV2 {
|
|
|
10521
10490
|
}
|
|
10522
10491
|
}
|
|
10523
10492
|
}
|
|
10493
|
+
namespace V2MailaddressesMailAddressIdSpamprotection { }
|
|
10524
10494
|
namespace V2ProjectsProjectIdMailSettingsSetting {
|
|
10525
|
-
namespace
|
|
10495
|
+
namespace Patch {
|
|
10526
10496
|
namespace Parameters {
|
|
10527
10497
|
type Path = {
|
|
10528
10498
|
projectId: string;
|
|
@@ -11101,11 +11071,11 @@ export declare module MittwaldAPIV2 {
|
|
|
11101
11071
|
}
|
|
11102
11072
|
}
|
|
11103
11073
|
}
|
|
11104
|
-
namespace
|
|
11074
|
+
namespace V2PasswordPoliciesPasswordPolicy {
|
|
11105
11075
|
namespace Get {
|
|
11106
11076
|
namespace Parameters {
|
|
11107
11077
|
type Path = {
|
|
11108
|
-
|
|
11078
|
+
passwordPolicy: string;
|
|
11109
11079
|
};
|
|
11110
11080
|
type Header = {};
|
|
11111
11081
|
type Query = {};
|
|
@@ -11126,6 +11096,7 @@ export declare module MittwaldAPIV2 {
|
|
|
11126
11096
|
}
|
|
11127
11097
|
}
|
|
11128
11098
|
}
|
|
11099
|
+
namespace V2PasswordPoliciesPath { }
|
|
11129
11100
|
namespace V2ProjectInvitesInviteIdActionsAccept {
|
|
11130
11101
|
namespace Post {
|
|
11131
11102
|
namespace Parameters {
|
|
@@ -14738,5 +14709,50 @@ export declare module MittwaldAPIV2 {
|
|
|
14738
14709
|
}
|
|
14739
14710
|
}
|
|
14740
14711
|
}
|
|
14712
|
+
namespace V2ConversationsConversationIdFilesFileIdAccessToken {
|
|
14713
|
+
namespace Get {
|
|
14714
|
+
namespace Parameters {
|
|
14715
|
+
type Path = {
|
|
14716
|
+
conversationId: string;
|
|
14717
|
+
fileId: string;
|
|
14718
|
+
};
|
|
14719
|
+
interface RequestBody {
|
|
14720
|
+
}
|
|
14721
|
+
type Header = {};
|
|
14722
|
+
type Query = {};
|
|
14723
|
+
}
|
|
14724
|
+
namespace Responses {
|
|
14725
|
+
namespace $200 {
|
|
14726
|
+
namespace Content {
|
|
14727
|
+
interface ApplicationJson {
|
|
14728
|
+
accessToken: string;
|
|
14729
|
+
expiresAt: string;
|
|
14730
|
+
}
|
|
14731
|
+
}
|
|
14732
|
+
}
|
|
14733
|
+
namespace $400 {
|
|
14734
|
+
namespace Content {
|
|
14735
|
+
interface ApplicationJson {
|
|
14736
|
+
[k: string]: unknown;
|
|
14737
|
+
}
|
|
14738
|
+
}
|
|
14739
|
+
}
|
|
14740
|
+
namespace $404 {
|
|
14741
|
+
namespace Content {
|
|
14742
|
+
interface ApplicationJson {
|
|
14743
|
+
[k: string]: unknown;
|
|
14744
|
+
}
|
|
14745
|
+
}
|
|
14746
|
+
}
|
|
14747
|
+
namespace Default {
|
|
14748
|
+
namespace Content {
|
|
14749
|
+
interface ApplicationJson {
|
|
14750
|
+
[k: string]: unknown;
|
|
14751
|
+
}
|
|
14752
|
+
}
|
|
14753
|
+
}
|
|
14754
|
+
}
|
|
14755
|
+
}
|
|
14756
|
+
}
|
|
14741
14757
|
}
|
|
14742
14758
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '3.1.7';
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export const MittwaldAPIClientVersion = '3.1.7';
|