@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
|
@@ -626,6 +626,17 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
626
626
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
627
627
|
} | undefined;
|
|
628
628
|
} | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory[]>;
|
|
629
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
630
|
+
getFileAccessToken: (conf: {
|
|
631
|
+
conversationId: string;
|
|
632
|
+
fileId: string;
|
|
633
|
+
headers?: {
|
|
634
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
635
|
+
} | undefined;
|
|
636
|
+
}) => import("@mittwald/react-use-promise/types").AsyncResource<{
|
|
637
|
+
accessToken: string;
|
|
638
|
+
expiresAt: string;
|
|
639
|
+
}>;
|
|
629
640
|
};
|
|
630
641
|
declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
631
642
|
/** List Cronjobs belonging to a Project. */
|
|
@@ -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;
|
|
@@ -115,6 +115,8 @@ const buildConversationApi = (baseClient) => ({
|
|
|
115
115
|
getConversation: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationGetConversation, baseClient.conversation.getConversation).getApiResource,
|
|
116
116
|
/** Get all conversation categories. */
|
|
117
117
|
listCategories: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationListCategories, baseClient.conversation.listCategories).getApiResource,
|
|
118
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
119
|
+
getFileAccessToken: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationGetFileAccessToken, baseClient.conversation.getFileAccessToken).getApiResource,
|
|
118
120
|
});
|
|
119
121
|
const buildCronjobApi = (baseClient) => ({
|
|
120
122
|
/** List Cronjobs belonging to a Project. */
|
|
@@ -193,12 +195,10 @@ const buildDomainApi = (baseClient) => ({
|
|
|
193
195
|
listTldContactSchemas: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListTldContactSchemas, baseClient.domain.listTldContactSchemas).getApiResource,
|
|
194
196
|
/** List TLDs. */
|
|
195
197
|
listTlds: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListTlds, baseClient.domain.listTlds).getApiResource,
|
|
198
|
+
/** List Ingresses. */
|
|
199
|
+
ingressListIngresses: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
|
|
196
200
|
/** Get an Ingress. */
|
|
197
|
-
|
|
198
|
-
/** List Ingresses the user has access to. */
|
|
199
|
-
ingressListAccessible: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListAccessible, baseClient.domain.ingressListAccessible).getApiResource,
|
|
200
|
-
/** List Ingresses belonging to a project. */
|
|
201
|
-
ingressListForProject: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListForProject, baseClient.domain.ingressListForProject).getApiResource,
|
|
201
|
+
ingressGetIngress: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource,
|
|
202
202
|
});
|
|
203
203
|
const buildFileApi = (baseClient) => ({
|
|
204
204
|
/** Get a File's meta. */
|
|
@@ -237,7 +237,7 @@ const buildPageInsightsApi = (baseClient) => ({
|
|
|
237
237
|
pageinsightsListPerformanceDataForProject: new react_1.ApiCallAsyncResourceFactory(descriptors.pageinsightsListPerformanceDataForProject, baseClient.pageInsights.pageinsightsListPerformanceDataForProject).getApiResource,
|
|
238
238
|
});
|
|
239
239
|
const buildUserApi = (baseClient) => ({
|
|
240
|
-
/** Get a
|
|
240
|
+
/** Get a PasswordPolicy. */
|
|
241
241
|
passwordValidationGetPasswordPolicy: new react_1.ApiCallAsyncResourceFactory(descriptors.passwordValidationGetPasswordPolicy, baseClient.user.passwordValidationGetPasswordPolicy).getApiResource,
|
|
242
242
|
/** Get your verified Email-Address. */
|
|
243
243
|
getOwnEmail: new react_1.ApiCallAsyncResourceFactory(descriptors.userGetOwnEmail, baseClient.user.getOwnEmail).getApiResource,
|
|
@@ -2450,6 +2450,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2450
2450
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2451
2451
|
[x: string]: unknown;
|
|
2452
2452
|
}, 404, "application/json">>>;
|
|
2453
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
2454
|
+
getFileAccessToken: (request: {
|
|
2455
|
+
conversationId: string;
|
|
2456
|
+
fileId: string;
|
|
2457
|
+
headers?: {
|
|
2458
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2459
|
+
} | undefined;
|
|
2460
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2461
|
+
headers?: Partial<{
|
|
2462
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2463
|
+
}> | undefined;
|
|
2464
|
+
} & {
|
|
2465
|
+
pathParameters: {
|
|
2466
|
+
conversationId: string;
|
|
2467
|
+
fileId: string;
|
|
2468
|
+
};
|
|
2469
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2470
|
+
accessToken: string;
|
|
2471
|
+
expiresAt: string;
|
|
2472
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2473
|
+
[x: string]: unknown;
|
|
2474
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2475
|
+
[x: string]: unknown;
|
|
2476
|
+
}, 404, "application/json">>>;
|
|
2453
2477
|
};
|
|
2454
2478
|
/** The cronjob API allows you to manage cronjobs within a project. */
|
|
2455
2479
|
readonly cronjob: {
|
|
@@ -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. */
|
|
@@ -186,6 +186,8 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
186
186
|
setConversationStatus: this.requestFunctionFactory(descriptors.conversationSetConversationStatus),
|
|
187
187
|
/** Update the content of the message */
|
|
188
188
|
updateMessage: this.requestFunctionFactory(descriptors.conversationUpdateMessage),
|
|
189
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
190
|
+
getFileAccessToken: this.requestFunctionFactory(descriptors.conversationGetFileAccessToken),
|
|
189
191
|
};
|
|
190
192
|
/** The cronjob API allows you to manage cronjobs within a project. */
|
|
191
193
|
this.cronjob = {
|
|
@@ -387,22 +389,20 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
387
389
|
updateDomainProjectId: this.requestFunctionFactory(descriptors.domainUpdateDomainProjectId),
|
|
388
390
|
/** Verify a DomainOwnership. */
|
|
389
391
|
verifyDomainOwnership: this.requestFunctionFactory(descriptors.domainVerifyDomainOwnership),
|
|
392
|
+
/** List Ingresses. */
|
|
393
|
+
ingressListIngresses: this.requestFunctionFactory(descriptors.ingressListIngresses),
|
|
390
394
|
/** Create an Ingress. */
|
|
391
|
-
|
|
395
|
+
ingressCreateIngress: this.requestFunctionFactory(descriptors.ingressCreateIngress),
|
|
392
396
|
/** Get an Ingress. */
|
|
393
|
-
|
|
397
|
+
ingressGetIngress: this.requestFunctionFactory(descriptors.ingressGetIngress),
|
|
394
398
|
/** Delete an Ingress. */
|
|
395
|
-
|
|
396
|
-
/**
|
|
397
|
-
|
|
398
|
-
/**
|
|
399
|
-
|
|
400
|
-
/** Update an
|
|
401
|
-
|
|
402
|
-
/** Request ACME certificate issuance */
|
|
403
|
-
ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
|
|
404
|
-
/** Update an Ingresses tls settings. */
|
|
405
|
-
ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
|
|
399
|
+
ingressDeleteIngress: this.requestFunctionFactory(descriptors.ingressDeleteIngress),
|
|
400
|
+
/** Update the paths of an Ingress. */
|
|
401
|
+
ingressUpdateIngressPaths: this.requestFunctionFactory(descriptors.ingressUpdateIngressPaths),
|
|
402
|
+
/** Request the ACME certificate issuance of an Ingress. */
|
|
403
|
+
ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
|
|
404
|
+
/** Update the tls settings of an Ingress. */
|
|
405
|
+
ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls),
|
|
406
406
|
};
|
|
407
407
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
408
408
|
this.file = {
|
|
@@ -446,7 +446,7 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
446
446
|
/** Update the autoresponder of a MailAddress. */
|
|
447
447
|
updateMailAddressAutoresponder: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAutoresponder),
|
|
448
448
|
/** Update the catchall of a MailAddress. */
|
|
449
|
-
|
|
449
|
+
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
450
450
|
/** Update the forward addresses of a MailAddresses. */
|
|
451
451
|
updateMailAddressForwardAddresses: this.requestFunctionFactory(descriptors.mailUpdateMailAddressForwardAddresses),
|
|
452
452
|
/** Update the password for a MailAddress. */
|
|
@@ -467,7 +467,7 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
467
467
|
};
|
|
468
468
|
/** The user API allows you to manage your own user and access information of other users that might be visible to you. */
|
|
469
469
|
this.user = {
|
|
470
|
-
/** Get a
|
|
470
|
+
/** Get a PasswordPolicy. */
|
|
471
471
|
passwordValidationGetPasswordPolicy: this.requestFunctionFactory(descriptors.passwordValidationGetPasswordPolicy),
|
|
472
472
|
/** Add phone number and start verification process. */
|
|
473
473
|
addPhoneNumber: this.requestFunctionFactory(descriptors.userAddPhoneNumber),
|
|
@@ -305,22 +305,20 @@ export declare const fileGetFileTokenRules: OpenAPIOperation<RequestType<Simplif
|
|
|
305
305
|
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
306
|
/** Get a File. */
|
|
307
307
|
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">>;
|
|
308
|
+
/** List Ingresses. */
|
|
309
|
+
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
310
|
/** Create an Ingress. */
|
|
309
|
-
export declare const
|
|
311
|
+
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
312
|
/** Get an Ingress. */
|
|
311
|
-
export declare const
|
|
313
|
+
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
314
|
/** 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">>;
|
|
315
|
+
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">>;
|
|
316
|
+
/** Update the paths of an Ingress. */
|
|
317
|
+
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">>;
|
|
318
|
+
/** Request the ACME certificate issuance of an Ingress. */
|
|
319
|
+
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">>;
|
|
320
|
+
/** Update the tls settings of an Ingress. */
|
|
321
|
+
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
322
|
/** Get details of an Invoice. */
|
|
325
323
|
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
324
|
/** Get InvoiceSettings of a Customer. */
|
|
@@ -354,19 +352,19 @@ export declare const mailUpdateDeliveryBoxPassword: OpenAPIOperation<RequestType
|
|
|
354
352
|
/** Update a MailAddress. */
|
|
355
353
|
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
354
|
/** Update the autoresponder of a MailAddress. */
|
|
357
|
-
export declare const mailUpdateMailAddressAutoresponder: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.
|
|
355
|
+
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
356
|
/** Update the catchall of a MailAddress. */
|
|
359
|
-
export declare const
|
|
357
|
+
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
358
|
/** Update the forward addresses of a MailAddresses. */
|
|
361
|
-
export declare const mailUpdateMailAddressForwardAddresses: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.
|
|
359
|
+
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
360
|
/** Update the password for a MailAddress. */
|
|
363
|
-
export declare const mailUpdateMailAddressPassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.
|
|
361
|
+
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
362
|
/** Update the quota of a MailAddress. */
|
|
365
|
-
export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.
|
|
363
|
+
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
364
|
/** Update the spam protection of a MailAddress. */
|
|
367
|
-
export declare const mailUpdateMailAddressSpamProtection: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.
|
|
365
|
+
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
366
|
/** Update a mail setting of a Project. */
|
|
369
|
-
export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.
|
|
367
|
+
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
368
|
/** Getting the subscription status of the subscription. */
|
|
371
369
|
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
370
|
/** Unsubscribe a user from the mStudio newsletter. */
|
|
@@ -397,8 +395,8 @@ export declare const orderPreviewTariffChange: OpenAPIOperation<RequestType<Simp
|
|
|
397
395
|
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
396
|
/** List websites (specified as domain and path) from a project where performance data is available. */
|
|
399
397
|
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.
|
|
398
|
+
/** Get a PasswordPolicy. */
|
|
399
|
+
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
400
|
/** Accept a ProjectInvite. */
|
|
403
401
|
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
402
|
/** Create a ProjectInvite. */
|
|
@@ -587,3 +585,5 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
|
|
|
587
585
|
export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
588
586
|
/** Verify your registration. */
|
|
589
587
|
export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
588
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
589
|
+
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">>;
|