@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
|
@@ -620,6 +620,17 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
620
620
|
status: "open" | "answered" | "closed";
|
|
621
621
|
title: string;
|
|
622
622
|
}>;
|
|
623
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
624
|
+
getFileAccessToken: (conf: {
|
|
625
|
+
conversationId: string;
|
|
626
|
+
fileId: string;
|
|
627
|
+
headers?: {
|
|
628
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
629
|
+
} | undefined;
|
|
630
|
+
}) => import("@mittwald/react-use-promise/types").AsyncResource<{
|
|
631
|
+
accessToken: string;
|
|
632
|
+
expiresAt: string;
|
|
633
|
+
}>;
|
|
623
634
|
/** Get all conversation categories. */
|
|
624
635
|
listCategories: (conf?: {
|
|
625
636
|
headers?: {
|
|
@@ -1131,8 +1142,19 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1131
1142
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1132
1143
|
} | undefined;
|
|
1133
1144
|
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
|
|
1145
|
+
/** List Ingresses. */
|
|
1146
|
+
ingressListIngresses: (conf?: {
|
|
1147
|
+
headers?: {
|
|
1148
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1149
|
+
"x-access-token"?: string | undefined;
|
|
1150
|
+
} | undefined;
|
|
1151
|
+
queryParameters?: {
|
|
1152
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1153
|
+
projectId?: string | undefined;
|
|
1154
|
+
} | undefined;
|
|
1155
|
+
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
|
|
1134
1156
|
/** Get an Ingress. */
|
|
1135
|
-
|
|
1157
|
+
ingressGetIngress: (conf: {
|
|
1136
1158
|
ingressId: string;
|
|
1137
1159
|
headers?: {
|
|
1138
1160
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -1151,21 +1173,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1151
1173
|
projectId: string;
|
|
1152
1174
|
tls: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsAcme | import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
|
|
1153
1175
|
}>;
|
|
1154
|
-
/** List Ingresses the user has access to. */
|
|
1155
|
-
ingressListAccessible: (conf?: {
|
|
1156
|
-
headers?: {
|
|
1157
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1158
|
-
"x-access-token"?: string | undefined;
|
|
1159
|
-
} | undefined;
|
|
1160
|
-
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
|
|
1161
|
-
/** List Ingresses belonging to a project. */
|
|
1162
|
-
ingressListForProject: (conf: {
|
|
1163
|
-
projectId: string;
|
|
1164
|
-
headers?: {
|
|
1165
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1166
|
-
"x-access-token"?: string | undefined;
|
|
1167
|
-
} | undefined;
|
|
1168
|
-
}) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
|
|
1169
1176
|
};
|
|
1170
1177
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1171
1178
|
/** Get a File's meta. */
|
|
@@ -1410,9 +1417,9 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1410
1417
|
}[]>;
|
|
1411
1418
|
};
|
|
1412
1419
|
declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1413
|
-
/** Get a
|
|
1420
|
+
/** Get a PasswordPolicy. */
|
|
1414
1421
|
passwordValidationGetPasswordPolicy: (conf: {
|
|
1415
|
-
|
|
1422
|
+
passwordPolicy: string;
|
|
1416
1423
|
headers?: {
|
|
1417
1424
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1418
1425
|
} | undefined;
|
|
@@ -84,6 +84,8 @@ const buildConversationApi = (baseClient) => ({
|
|
|
84
84
|
getCategory: new ApiCallAsyncResourceFactory(descriptors.conversationGetCategory, baseClient.conversation.getCategory).getApiResource,
|
|
85
85
|
/** Get a support conversation. */
|
|
86
86
|
getConversation: new ApiCallAsyncResourceFactory(descriptors.conversationGetConversation, baseClient.conversation.getConversation).getApiResource,
|
|
87
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
88
|
+
getFileAccessToken: new ApiCallAsyncResourceFactory(descriptors.conversationGetFileAccessToken, baseClient.conversation.getFileAccessToken).getApiResource,
|
|
87
89
|
/** Get all conversation categories. */
|
|
88
90
|
listCategories: new ApiCallAsyncResourceFactory(descriptors.conversationListCategories, baseClient.conversation.listCategories).getApiResource,
|
|
89
91
|
});
|
|
@@ -164,12 +166,10 @@ const buildDomainApi = (baseClient) => ({
|
|
|
164
166
|
listTldContactSchemas: new ApiCallAsyncResourceFactory(descriptors.domainListTldContactSchemas, baseClient.domain.listTldContactSchemas).getApiResource,
|
|
165
167
|
/** List TLDs. */
|
|
166
168
|
listTlds: new ApiCallAsyncResourceFactory(descriptors.domainListTlds, baseClient.domain.listTlds).getApiResource,
|
|
169
|
+
/** List Ingresses. */
|
|
170
|
+
ingressListIngresses: new ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
|
|
167
171
|
/** Get an Ingress. */
|
|
168
|
-
|
|
169
|
-
/** List Ingresses the user has access to. */
|
|
170
|
-
ingressListAccessible: new ApiCallAsyncResourceFactory(descriptors.ingressListAccessible, baseClient.domain.ingressListAccessible).getApiResource,
|
|
171
|
-
/** List Ingresses belonging to a project. */
|
|
172
|
-
ingressListForProject: new ApiCallAsyncResourceFactory(descriptors.ingressListForProject, baseClient.domain.ingressListForProject).getApiResource,
|
|
172
|
+
ingressGetIngress: new ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource,
|
|
173
173
|
});
|
|
174
174
|
const buildFileApi = (baseClient) => ({
|
|
175
175
|
/** Get a File's meta. */
|
|
@@ -208,7 +208,7 @@ const buildPageInsightsApi = (baseClient) => ({
|
|
|
208
208
|
pageinsightsListPerformanceDataForProject: new ApiCallAsyncResourceFactory(descriptors.pageinsightsListPerformanceDataForProject, baseClient.pageInsights.pageinsightsListPerformanceDataForProject).getApiResource,
|
|
209
209
|
});
|
|
210
210
|
const buildUserApi = (baseClient) => ({
|
|
211
|
-
/** Get a
|
|
211
|
+
/** Get a PasswordPolicy. */
|
|
212
212
|
passwordValidationGetPasswordPolicy: new ApiCallAsyncResourceFactory(descriptors.passwordValidationGetPasswordPolicy, baseClient.user.passwordValidationGetPasswordPolicy).getApiResource,
|
|
213
213
|
/** Get your verified Email-Address. */
|
|
214
214
|
getOwnEmail: new ApiCallAsyncResourceFactory(descriptors.userGetOwnEmail, baseClient.user.getOwnEmail).getApiResource,
|
|
@@ -2342,6 +2342,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2342
2342
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2343
2343
|
[x: string]: unknown;
|
|
2344
2344
|
}, 404, "application/json">>>;
|
|
2345
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
2346
|
+
getFileAccessToken: (request: {
|
|
2347
|
+
conversationId: string;
|
|
2348
|
+
fileId: string;
|
|
2349
|
+
headers?: {
|
|
2350
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2351
|
+
} | undefined;
|
|
2352
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2353
|
+
headers?: Partial<{
|
|
2354
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2355
|
+
}> | undefined;
|
|
2356
|
+
} & {
|
|
2357
|
+
pathParameters: {
|
|
2358
|
+
conversationId: string;
|
|
2359
|
+
fileId: string;
|
|
2360
|
+
};
|
|
2361
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2362
|
+
accessToken: string;
|
|
2363
|
+
expiresAt: string;
|
|
2364
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2365
|
+
[x: string]: unknown;
|
|
2366
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2367
|
+
[x: string]: unknown;
|
|
2368
|
+
}, 404, "application/json">>>;
|
|
2345
2369
|
/** Get all conversation categories. */
|
|
2346
2370
|
listCategories: (request?: {
|
|
2347
2371
|
headers?: {
|
|
@@ -5628,8 +5652,37 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5628
5652
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5629
5653
|
[x: string]: unknown;
|
|
5630
5654
|
}, 404, "application/json">>>;
|
|
5655
|
+
/** List Ingresses. */
|
|
5656
|
+
ingressListIngresses: (request?: {
|
|
5657
|
+
headers?: {
|
|
5658
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5659
|
+
"x-access-token"?: string | undefined;
|
|
5660
|
+
} | undefined;
|
|
5661
|
+
queryParameters?: {
|
|
5662
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5663
|
+
projectId?: string | undefined;
|
|
5664
|
+
} | undefined;
|
|
5665
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5666
|
+
headers?: Partial<{
|
|
5667
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5668
|
+
}> | undefined;
|
|
5669
|
+
} & {
|
|
5670
|
+
queryParameters: {
|
|
5671
|
+
projectId?: string | undefined;
|
|
5672
|
+
} & Partial<{
|
|
5673
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5674
|
+
}>;
|
|
5675
|
+
} & {
|
|
5676
|
+
headers: {
|
|
5677
|
+
"x-access-token"?: string | undefined;
|
|
5678
|
+
} & Partial<{
|
|
5679
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5680
|
+
}>;
|
|
5681
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5682
|
+
[x: string]: unknown;
|
|
5683
|
+
}, 404, "application/json">>>;
|
|
5631
5684
|
/** Create an Ingress. */
|
|
5632
|
-
|
|
5685
|
+
ingressCreateIngress: (request: {
|
|
5633
5686
|
data: {
|
|
5634
5687
|
hostname: string;
|
|
5635
5688
|
paths: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
@@ -5661,7 +5714,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5661
5714
|
[x: string]: unknown;
|
|
5662
5715
|
}, 404, "application/json">>>;
|
|
5663
5716
|
/** Get an Ingress. */
|
|
5664
|
-
|
|
5717
|
+
ingressGetIngress: (request: {
|
|
5665
5718
|
ingressId: string;
|
|
5666
5719
|
headers?: {
|
|
5667
5720
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -5697,7 +5750,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5697
5750
|
[x: string]: unknown;
|
|
5698
5751
|
}, 404, "application/json">>>;
|
|
5699
5752
|
/** Delete an Ingress. */
|
|
5700
|
-
|
|
5753
|
+
ingressDeleteIngress: (request: {
|
|
5701
5754
|
ingressId: string;
|
|
5702
5755
|
headers?: {
|
|
5703
5756
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -5720,51 +5773,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5720
5773
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5721
5774
|
[x: string]: unknown;
|
|
5722
5775
|
}, 404, "application/json">>>;
|
|
5723
|
-
/**
|
|
5724
|
-
|
|
5725
|
-
headers?: {
|
|
5726
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5727
|
-
"x-access-token"?: string | undefined;
|
|
5728
|
-
} | undefined;
|
|
5729
|
-
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5730
|
-
headers?: Partial<{
|
|
5731
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5732
|
-
}> | undefined;
|
|
5733
|
-
} & {
|
|
5734
|
-
headers: {
|
|
5735
|
-
"x-access-token"?: string | undefined;
|
|
5736
|
-
} & Partial<{
|
|
5737
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5738
|
-
}>;
|
|
5739
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5740
|
-
[x: string]: unknown;
|
|
5741
|
-
}, 404, "application/json">>>;
|
|
5742
|
-
/** List Ingresses belonging to a project. */
|
|
5743
|
-
ingressListForProject: (request: {
|
|
5744
|
-
projectId: string;
|
|
5745
|
-
headers?: {
|
|
5746
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5747
|
-
"x-access-token"?: string | undefined;
|
|
5748
|
-
} | undefined;
|
|
5749
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5750
|
-
headers?: Partial<{
|
|
5751
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5752
|
-
}> | undefined;
|
|
5753
|
-
} & {
|
|
5754
|
-
pathParameters: {
|
|
5755
|
-
projectId: string;
|
|
5756
|
-
};
|
|
5757
|
-
} & {
|
|
5758
|
-
headers: {
|
|
5759
|
-
"x-access-token"?: string | undefined;
|
|
5760
|
-
} & Partial<{
|
|
5761
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5762
|
-
}>;
|
|
5763
|
-
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5764
|
-
[x: string]: unknown;
|
|
5765
|
-
}, 404, "application/json">>>;
|
|
5766
|
-
/** Update an Ingresses paths. */
|
|
5767
|
-
ingressPaths: (request: {
|
|
5776
|
+
/** Update the paths of an Ingress. */
|
|
5777
|
+
ingressUpdateIngressPaths: (request: {
|
|
5768
5778
|
data: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressPath[];
|
|
5769
5779
|
ingressId: string;
|
|
5770
5780
|
headers?: {
|
|
@@ -5790,8 +5800,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5790
5800
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5791
5801
|
[x: string]: unknown;
|
|
5792
5802
|
}, 404, "application/json">>>;
|
|
5793
|
-
/** Request ACME certificate issuance */
|
|
5794
|
-
|
|
5803
|
+
/** Request the ACME certificate issuance of an Ingress. */
|
|
5804
|
+
ingressRequestIngressAcmeCertificateIssuance: (request: {
|
|
5795
5805
|
ingressId: string;
|
|
5796
5806
|
headers?: {
|
|
5797
5807
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -5816,8 +5826,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5816
5826
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5817
5827
|
[x: string]: unknown;
|
|
5818
5828
|
}, 404, "application/json">>>;
|
|
5819
|
-
/** Update
|
|
5820
|
-
|
|
5829
|
+
/** Update the tls settings of an Ingress. */
|
|
5830
|
+
ingressUpdateIngressTls: (request: {
|
|
5821
5831
|
data: {
|
|
5822
5832
|
acme: boolean;
|
|
5823
5833
|
};
|
|
@@ -6569,7 +6579,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6569
6579
|
[x: string]: unknown;
|
|
6570
6580
|
}, 503, "application/json">>>;
|
|
6571
6581
|
/** Update the catchall of a MailAddress. */
|
|
6572
|
-
|
|
6582
|
+
updateMailAddressCatchAll: (request: {
|
|
6573
6583
|
data: {
|
|
6574
6584
|
active: boolean;
|
|
6575
6585
|
};
|
|
@@ -6927,9 +6937,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6927
6937
|
};
|
|
6928
6938
|
/** The user API allows you to manage your own user and access information of other users that might be visible to you. */
|
|
6929
6939
|
readonly user: {
|
|
6930
|
-
/** Get a
|
|
6940
|
+
/** Get a PasswordPolicy. */
|
|
6931
6941
|
passwordValidationGetPasswordPolicy: (request: {
|
|
6932
|
-
|
|
6942
|
+
passwordPolicy: string;
|
|
6933
6943
|
headers?: {
|
|
6934
6944
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6935
6945
|
} | undefined;
|
|
@@ -6939,7 +6949,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6939
6949
|
}> | undefined;
|
|
6940
6950
|
} & {
|
|
6941
6951
|
pathParameters: {
|
|
6942
|
-
|
|
6952
|
+
passwordPolicy: string;
|
|
6943
6953
|
};
|
|
6944
6954
|
}, import("@mittwald/api-client-commons").Response<string, 200, "application/json">>>;
|
|
6945
6955
|
/** Add phone number and start verification process. */
|
|
@@ -150,6 +150,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
150
150
|
getConversation: this.requestFunctionFactory(descriptors.conversationGetConversation),
|
|
151
151
|
/** Update the basic properties of the conversation. */
|
|
152
152
|
updateConversation: this.requestFunctionFactory(descriptors.conversationUpdateConversation),
|
|
153
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
154
|
+
getFileAccessToken: this.requestFunctionFactory(descriptors.conversationGetFileAccessToken),
|
|
153
155
|
/** Get all conversation categories. */
|
|
154
156
|
listCategories: this.requestFunctionFactory(descriptors.conversationListCategories),
|
|
155
157
|
/** Request a file upload token for the conversation. */
|
|
@@ -359,22 +361,20 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
359
361
|
updateDomainProjectId: this.requestFunctionFactory(descriptors.domainUpdateDomainProjectId),
|
|
360
362
|
/** Verify a DomainOwnership. */
|
|
361
363
|
verifyDomainOwnership: this.requestFunctionFactory(descriptors.domainVerifyDomainOwnership),
|
|
364
|
+
/** List Ingresses. */
|
|
365
|
+
ingressListIngresses: this.requestFunctionFactory(descriptors.ingressListIngresses),
|
|
362
366
|
/** Create an Ingress. */
|
|
363
|
-
|
|
367
|
+
ingressCreateIngress: this.requestFunctionFactory(descriptors.ingressCreateIngress),
|
|
364
368
|
/** Get an Ingress. */
|
|
365
|
-
|
|
369
|
+
ingressGetIngress: this.requestFunctionFactory(descriptors.ingressGetIngress),
|
|
366
370
|
/** Delete an Ingress. */
|
|
367
|
-
|
|
368
|
-
/**
|
|
369
|
-
|
|
370
|
-
/**
|
|
371
|
-
|
|
372
|
-
/** Update an
|
|
373
|
-
|
|
374
|
-
/** Request ACME certificate issuance */
|
|
375
|
-
ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
|
|
376
|
-
/** Update an Ingresses tls settings. */
|
|
377
|
-
ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
|
|
371
|
+
ingressDeleteIngress: this.requestFunctionFactory(descriptors.ingressDeleteIngress),
|
|
372
|
+
/** Update the paths of an Ingress. */
|
|
373
|
+
ingressUpdateIngressPaths: this.requestFunctionFactory(descriptors.ingressUpdateIngressPaths),
|
|
374
|
+
/** Request the ACME certificate issuance of an Ingress. */
|
|
375
|
+
ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
|
|
376
|
+
/** Update the tls settings of an Ingress. */
|
|
377
|
+
ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls),
|
|
378
378
|
};
|
|
379
379
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
380
380
|
file = {
|
|
@@ -418,7 +418,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
418
418
|
/** Update the autoresponder of a MailAddress. */
|
|
419
419
|
updateMailAddressAutoresponder: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAutoresponder),
|
|
420
420
|
/** Update the catchall of a MailAddress. */
|
|
421
|
-
|
|
421
|
+
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
422
422
|
/** Update the forward addresses of a MailAddresses. */
|
|
423
423
|
updateMailAddressForwardAddresses: this.requestFunctionFactory(descriptors.mailUpdateMailAddressForwardAddresses),
|
|
424
424
|
/** Update the password for a MailAddress. */
|
|
@@ -439,7 +439,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
439
439
|
};
|
|
440
440
|
/** The user API allows you to manage your own user and access information of other users that might be visible to you. */
|
|
441
441
|
user = {
|
|
442
|
-
/** Get a
|
|
442
|
+
/** Get a PasswordPolicy. */
|
|
443
443
|
passwordValidationGetPasswordPolicy: this.requestFunctionFactory(descriptors.passwordValidationGetPasswordPolicy),
|
|
444
444
|
/** Add phone number and start verification process. */
|
|
445
445
|
addPhoneNumber: this.requestFunctionFactory(descriptors.userAddPhoneNumber),
|
|
@@ -113,6 +113,8 @@ export declare const conversationGetCategory: OpenAPIOperation<RequestType<Simpl
|
|
|
113
113
|
export declare const conversationGetConversation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
114
114
|
/** Update the basic properties of the conversation. */
|
|
115
115
|
export declare const conversationUpdateConversation: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
116
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
117
|
+
export declare const conversationGetFileAccessToken: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
116
118
|
/** Get all conversation categories. */
|
|
117
119
|
export declare const conversationListCategories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
118
120
|
/** Request a file upload token for the conversation. */
|
|
@@ -305,22 +307,20 @@ export declare const fileGetFileTokenRules: OpenAPIOperation<RequestType<Simplif
|
|
|
305
307
|
export declare const fileGetFileTypeRules: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
306
308
|
/** Get a File. */
|
|
307
309
|
export declare const fileGetFile: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$200.Content.Base64>, 200, "base64"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$200.Content.Ocr>, 200, "ocr"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
310
|
+
/** List Ingresses. */
|
|
311
|
+
export declare const ingressListIngresses: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
308
312
|
/** Create an Ingress. */
|
|
309
|
-
export declare const
|
|
313
|
+
export declare const ingressCreateIngress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
310
314
|
/** Get an Ingress. */
|
|
311
|
-
export declare const
|
|
315
|
+
export declare const ingressGetIngress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
312
316
|
/** Delete an Ingress. */
|
|
313
|
-
export declare const
|
|
314
|
-
/**
|
|
315
|
-
export declare const
|
|
316
|
-
/**
|
|
317
|
-
export declare const
|
|
318
|
-
/** Update an
|
|
319
|
-
export declare const
|
|
320
|
-
/** Request ACME certificate issuance */
|
|
321
|
-
export declare const ingressRequestAcmeCertificateIssuance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
322
|
-
/** Update an Ingresses tls settings. */
|
|
323
|
-
export declare const ingressTls: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
317
|
+
export declare const ingressDeleteIngress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
318
|
+
/** Update the paths of an Ingress. */
|
|
319
|
+
export declare const ingressUpdateIngressPaths: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
320
|
+
/** Request the ACME certificate issuance of an Ingress. */
|
|
321
|
+
export declare const ingressRequestIngressAcmeCertificateIssuance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
322
|
+
/** Update the tls settings of an Ingress. */
|
|
323
|
+
export declare const ingressUpdateIngressTls: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
324
324
|
/** Get details of an Invoice. */
|
|
325
325
|
export declare const invoiceDetailOfInvoice: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
326
326
|
/** Get InvoiceSettings of a Customer. */
|
|
@@ -354,19 +354,19 @@ export declare const mailUpdateDeliveryBoxPassword: OpenAPIOperation<RequestType
|
|
|
354
354
|
/** Update a MailAddress. */
|
|
355
355
|
export declare const mailUpdateMailAddressAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
356
356
|
/** Update the autoresponder of a MailAddress. */
|
|
357
|
-
export declare const mailUpdateMailAddressAutoresponder: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.
|
|
357
|
+
export declare const mailUpdateMailAddressAutoresponder: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
358
358
|
/** Update the catchall of a MailAddress. */
|
|
359
|
-
export declare const
|
|
359
|
+
export declare const mailUpdateMailAddressCatchAll: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
360
360
|
/** Update the forward addresses of a MailAddresses. */
|
|
361
|
-
export declare const mailUpdateMailAddressForwardAddresses: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.
|
|
361
|
+
export declare const mailUpdateMailAddressForwardAddresses: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
362
362
|
/** Update the password for a MailAddress. */
|
|
363
|
-
export declare const mailUpdateMailAddressPassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.
|
|
363
|
+
export declare const mailUpdateMailAddressPassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
364
364
|
/** Update the quota of a MailAddress. */
|
|
365
|
-
export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.
|
|
365
|
+
export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
366
366
|
/** Update the spam protection of a MailAddress. */
|
|
367
|
-
export declare const mailUpdateMailAddressSpamProtection: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.
|
|
367
|
+
export declare const mailUpdateMailAddressSpamProtection: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
368
368
|
/** Update a mail setting of a Project. */
|
|
369
|
-
export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.
|
|
369
|
+
export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
370
370
|
/** Getting the subscription status of the subscription. */
|
|
371
371
|
export declare const newsletterGetInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
372
372
|
/** Unsubscribe a user from the mStudio newsletter. */
|
|
@@ -397,8 +397,8 @@ export declare const orderPreviewTariffChange: OpenAPIOperation<RequestType<Simp
|
|
|
397
397
|
export declare const pageinsightsGetPerformanceData: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
398
398
|
/** List websites (specified as domain and path) from a project where performance data is available. */
|
|
399
399
|
export declare const pageinsightsListPerformanceDataForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
400
|
-
/** Get a
|
|
401
|
-
export declare const passwordValidationGetPasswordPolicy: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.
|
|
400
|
+
/** Get a PasswordPolicy. */
|
|
401
|
+
export declare const passwordValidationGetPasswordPolicy: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
402
402
|
/** Accept a ProjectInvite. */
|
|
403
403
|
export declare const projectAcceptProjectInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
404
404
|
/** Create a ProjectInvite. */
|
|
@@ -490,7 +490,7 @@ export declare const sshUserGetSshUser: OpenAPIOperation<RequestType<Simplify<nu
|
|
|
490
490
|
/** Delete an SSHUser. */
|
|
491
491
|
export declare const sshUserDeleteSshUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
492
492
|
/** Update an SSHUser. */
|
|
493
|
-
export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.
|
|
493
|
+
export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
494
494
|
/** Add phone number and start verification process. */
|
|
495
495
|
export declare const userAddPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
496
496
|
/** Remove phone number. */
|