@mittwald/api-client 4.361.0 → 4.363.0
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/esm/generated/v2/client-react.js +6 -0
- package/dist/esm/generated/v2/client.js +9 -3
- package/dist/esm/generated/v2/descriptors.js +23 -5
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +40 -0
- package/dist/types/generated/v2/client.d.ts +237 -35
- package/dist/types/generated/v2/descriptors.d.ts +10 -4
- package/dist/types/generated/v2/types.d.ts +209 -22
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -300,6 +300,10 @@ const buildDomainApi = (baseClient) => ({
|
|
|
300
300
|
sslGetCertificate: new ApiCallAsyncResourceFactory(descriptors.sslGetCertificate, baseClient.domain.sslGetCertificate).getApiResource,
|
|
301
301
|
/** List Certificates belonging to a Project or an Ingress. */
|
|
302
302
|
sslListCertificates: new ApiCallAsyncResourceFactory(descriptors.sslListCertificates, baseClient.domain.sslListCertificates).getApiResource,
|
|
303
|
+
/** Get a Contact-Verification. */
|
|
304
|
+
getContactVerification: new ApiCallAsyncResourceFactory(descriptors.domainGetContactVerification, baseClient.domain.getContactVerification).getApiResource,
|
|
305
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
306
|
+
listContactVerifications: new ApiCallAsyncResourceFactory(descriptors.domainListContactVerifications, baseClient.domain.listContactVerifications).getApiResource,
|
|
303
307
|
});
|
|
304
308
|
const buildFileApi = (baseClient) => ({
|
|
305
309
|
/** Get a File's meta. */
|
|
@@ -408,6 +412,8 @@ const buildUserApi = (baseClient) => ({
|
|
|
408
412
|
oauthGetAuthorization: new ApiCallAsyncResourceFactory(descriptors.userOauthGetAuthorization, baseClient.user.oauthGetAuthorization).getApiResource,
|
|
409
413
|
/** Request a support code. */
|
|
410
414
|
supportCodeRequest: new ApiCallAsyncResourceFactory(descriptors.userSupportCodeRequest, baseClient.user.supportCodeRequest).getApiResource,
|
|
415
|
+
/** Check status of the current session. */
|
|
416
|
+
getCurrentSessionStatus: new ApiCallAsyncResourceFactory(descriptors.userGetCurrentSessionStatus, baseClient.user.getCurrentSessionStatus).getApiResource,
|
|
411
417
|
});
|
|
412
418
|
const buildProjectApi = (baseClient) => ({
|
|
413
419
|
/** List Invites belonging to a Project. */
|
|
@@ -316,7 +316,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
316
316
|
extensionDeleteExtensionInstance: this.requestFunctionFactory(descriptors.extensionDeleteExtensionInstance),
|
|
317
317
|
/** Get Extension of own contributor. */
|
|
318
318
|
extensionGetOwnExtension: this.requestFunctionFactory(descriptors.extensionGetOwnExtension),
|
|
319
|
-
/** Delete an
|
|
319
|
+
/** Delete an Extension. */
|
|
320
320
|
extensionDeleteExtension: this.requestFunctionFactory(descriptors.extensionDeleteExtension),
|
|
321
321
|
/** Patch Extension. */
|
|
322
322
|
extensionPatchExtension: this.requestFunctionFactory(descriptors.extensionPatchExtension),
|
|
@@ -627,6 +627,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
627
627
|
sslReplaceCertificate: this.requestFunctionFactory(descriptors.sslReplaceCertificate),
|
|
628
628
|
/** List Certificates belonging to a Project or an Ingress. */
|
|
629
629
|
sslListCertificates: this.requestFunctionFactory(descriptors.sslListCertificates),
|
|
630
|
+
/** Get a Contact-Verification. */
|
|
631
|
+
getContactVerification: this.requestFunctionFactory(descriptors.domainGetContactVerification),
|
|
632
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
633
|
+
listContactVerifications: this.requestFunctionFactory(descriptors.domainListContactVerifications),
|
|
634
|
+
/** Resends a Contact-Verification email. */
|
|
635
|
+
resendContactVerificationEmail: this.requestFunctionFactory(descriptors.domainResendContactVerificationEmail),
|
|
630
636
|
};
|
|
631
637
|
/** The mail API allows you to manage your mail accounts. */
|
|
632
638
|
mail = {
|
|
@@ -802,8 +808,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
802
808
|
verifyPhoneNumber: this.requestFunctionFactory(descriptors.userVerifyPhoneNumber),
|
|
803
809
|
/** Verify your registration. */
|
|
804
810
|
verifyRegistration: this.requestFunctionFactory(descriptors.userVerifyRegistration),
|
|
805
|
-
/** Check
|
|
806
|
-
|
|
811
|
+
/** Check status of the current session. */
|
|
812
|
+
getCurrentSessionStatus: this.requestFunctionFactory(descriptors.userGetCurrentSessionStatus),
|
|
807
813
|
};
|
|
808
814
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
809
815
|
file = {
|
|
@@ -1450,7 +1450,7 @@ export const extensionGetOwnExtension = {
|
|
|
1450
1450
|
method: "GET",
|
|
1451
1451
|
operationId: "extension-get-own-extension",
|
|
1452
1452
|
};
|
|
1453
|
-
/** Delete an
|
|
1453
|
+
/** Delete an Extension. */
|
|
1454
1454
|
export const extensionDeleteExtension = {
|
|
1455
1455
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
1456
1456
|
method: "DELETE",
|
|
@@ -2740,9 +2740,27 @@ export const verificationVerifyCompany = {
|
|
|
2740
2740
|
method: "POST",
|
|
2741
2741
|
operationId: "verification-verify-company",
|
|
2742
2742
|
};
|
|
2743
|
-
/** Check
|
|
2744
|
-
export const
|
|
2745
|
-
path: "/v2/users/self/
|
|
2743
|
+
/** Check status of the current session. */
|
|
2744
|
+
export const userGetCurrentSessionStatus = {
|
|
2745
|
+
path: "/v2/users/self/sessions/current/status",
|
|
2746
|
+
method: "GET",
|
|
2747
|
+
operationId: "user-get-current-session-status",
|
|
2748
|
+
};
|
|
2749
|
+
/** Get a Contact-Verification. */
|
|
2750
|
+
export const domainGetContactVerification = {
|
|
2751
|
+
path: "/v2/contact-verifications/{contactVerificationId}",
|
|
2752
|
+
method: "GET",
|
|
2753
|
+
operationId: "domain-get-contact-verification",
|
|
2754
|
+
};
|
|
2755
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
2756
|
+
export const domainListContactVerifications = {
|
|
2757
|
+
path: "/v2/contact-verifications",
|
|
2758
|
+
method: "GET",
|
|
2759
|
+
operationId: "domain-list-contact-verifications",
|
|
2760
|
+
};
|
|
2761
|
+
/** Resends a Contact-Verification email. */
|
|
2762
|
+
export const domainResendContactVerificationEmail = {
|
|
2763
|
+
path: "/v2/contact-verifications/{contactVerificationId}/actions/resend-contact-verification-email",
|
|
2746
2764
|
method: "POST",
|
|
2747
|
-
operationId: "
|
|
2765
|
+
operationId: "domain-resend-contact-verification-email",
|
|
2748
2766
|
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.362.0';
|
|
@@ -1265,6 +1265,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1265
1265
|
contributorName: string;
|
|
1266
1266
|
createdAt?: string | undefined;
|
|
1267
1267
|
disabled: boolean;
|
|
1268
|
+
extensionDeletionDeadline?: string | undefined;
|
|
1268
1269
|
extensionId: string;
|
|
1269
1270
|
extensionName: string;
|
|
1270
1271
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -1290,6 +1291,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1290
1291
|
blocked?: boolean | undefined;
|
|
1291
1292
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1292
1293
|
contributorId: string;
|
|
1294
|
+
deletionDeadline?: string | undefined;
|
|
1293
1295
|
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1294
1296
|
description?: string | undefined;
|
|
1295
1297
|
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
@@ -1301,6 +1303,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1301
1303
|
} | undefined;
|
|
1302
1304
|
functional: boolean;
|
|
1303
1305
|
id: string;
|
|
1306
|
+
isDeletionScheduled?: boolean | undefined;
|
|
1304
1307
|
logoRefId?: string | undefined;
|
|
1305
1308
|
name: string;
|
|
1306
1309
|
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
@@ -1378,6 +1381,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1378
1381
|
contributorName: string;
|
|
1379
1382
|
createdAt?: string | undefined;
|
|
1380
1383
|
disabled: boolean;
|
|
1384
|
+
extensionDeletionDeadline?: string | undefined;
|
|
1381
1385
|
extensionId: string;
|
|
1382
1386
|
extensionName: string;
|
|
1383
1387
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -1409,6 +1413,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1409
1413
|
contributorName: string;
|
|
1410
1414
|
createdAt?: string | undefined;
|
|
1411
1415
|
disabled: boolean;
|
|
1416
|
+
extensionDeletionDeadline?: string | undefined;
|
|
1412
1417
|
extensionId: string;
|
|
1413
1418
|
extensionName: string;
|
|
1414
1419
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -2289,6 +2294,30 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2289
2294
|
ingressId?: string | undefined;
|
|
2290
2295
|
} | undefined;
|
|
2291
2296
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SslCertificate[]>;
|
|
2297
|
+
/** Get a Contact-Verification. */
|
|
2298
|
+
getContactVerification: (conf: {
|
|
2299
|
+
contactVerificationId: string;
|
|
2300
|
+
headers?: {
|
|
2301
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2302
|
+
"x-access-token"?: string | undefined;
|
|
2303
|
+
} | undefined;
|
|
2304
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2305
|
+
id: string;
|
|
2306
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
2307
|
+
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
2308
|
+
}>;
|
|
2309
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
2310
|
+
listContactVerifications: (conf?: {
|
|
2311
|
+
headers?: {
|
|
2312
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2313
|
+
"x-access-token"?: string | undefined;
|
|
2314
|
+
} | undefined;
|
|
2315
|
+
queryParameters?: {
|
|
2316
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2317
|
+
value?: string | undefined;
|
|
2318
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
2319
|
+
} | undefined;
|
|
2320
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[]>;
|
|
2292
2321
|
};
|
|
2293
2322
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
2294
2323
|
/** Get a File's meta. */
|
|
@@ -3104,6 +3133,17 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3104
3133
|
expiresAt: string;
|
|
3105
3134
|
supportCode: string;
|
|
3106
3135
|
}>;
|
|
3136
|
+
/** Check status of the current session. */
|
|
3137
|
+
getCurrentSessionStatus: (conf?: {
|
|
3138
|
+
headers?: {
|
|
3139
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3140
|
+
"x-access-token"?: string | undefined;
|
|
3141
|
+
} | undefined;
|
|
3142
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3143
|
+
isEmployee: boolean;
|
|
3144
|
+
isImpersonated: boolean;
|
|
3145
|
+
userId: string;
|
|
3146
|
+
}>;
|
|
3107
3147
|
};
|
|
3108
3148
|
declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
3109
3149
|
/** List Invites belonging to a Project. */
|
|
@@ -7970,7 +7970,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7970
7970
|
}>;
|
|
7971
7971
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7972
7972
|
[x: string]: unknown;
|
|
7973
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7973
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7974
|
+
[x: string]: unknown;
|
|
7975
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7974
7976
|
[x: string]: unknown;
|
|
7975
7977
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7976
7978
|
headers?: Partial<{
|
|
@@ -7988,7 +7990,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7988
7990
|
}>;
|
|
7989
7991
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7990
7992
|
[x: string]: unknown;
|
|
7991
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7993
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7994
|
+
[x: string]: unknown;
|
|
7995
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7992
7996
|
[x: string]: unknown;
|
|
7993
7997
|
}, 429, "application/json">>>;
|
|
7994
7998
|
/** Patch Contributor. */
|
|
@@ -9789,6 +9793,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9789
9793
|
contributorName: string;
|
|
9790
9794
|
createdAt?: string | undefined;
|
|
9791
9795
|
disabled: boolean;
|
|
9796
|
+
extensionDeletionDeadline?: string | undefined;
|
|
9792
9797
|
extensionId: string;
|
|
9793
9798
|
extensionName: string;
|
|
9794
9799
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -9829,6 +9834,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9829
9834
|
contributorName: string;
|
|
9830
9835
|
createdAt?: string | undefined;
|
|
9831
9836
|
disabled: boolean;
|
|
9837
|
+
extensionDeletionDeadline?: string | undefined;
|
|
9832
9838
|
extensionId: string;
|
|
9833
9839
|
extensionName: string;
|
|
9834
9840
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -9921,6 +9927,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9921
9927
|
blocked?: boolean | undefined;
|
|
9922
9928
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
9923
9929
|
contributorId: string;
|
|
9930
|
+
deletionDeadline?: string | undefined;
|
|
9924
9931
|
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
9925
9932
|
description?: string | undefined;
|
|
9926
9933
|
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
@@ -9932,6 +9939,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9932
9939
|
} | undefined;
|
|
9933
9940
|
functional: boolean;
|
|
9934
9941
|
id: string;
|
|
9942
|
+
isDeletionScheduled?: boolean | undefined;
|
|
9935
9943
|
logoRefId?: string | undefined;
|
|
9936
9944
|
name: string;
|
|
9937
9945
|
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
@@ -9979,6 +9987,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9979
9987
|
blocked?: boolean | undefined;
|
|
9980
9988
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
9981
9989
|
contributorId: string;
|
|
9990
|
+
deletionDeadline?: string | undefined;
|
|
9982
9991
|
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
9983
9992
|
description?: string | undefined;
|
|
9984
9993
|
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
@@ -9990,6 +9999,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9990
9999
|
} | undefined;
|
|
9991
10000
|
functional: boolean;
|
|
9992
10001
|
id: string;
|
|
10002
|
+
isDeletionScheduled?: boolean | undefined;
|
|
9993
10003
|
logoRefId?: string | undefined;
|
|
9994
10004
|
name: string;
|
|
9995
10005
|
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
@@ -10017,7 +10027,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10017
10027
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10018
10028
|
[x: string]: unknown;
|
|
10019
10029
|
}, 429, "application/json">>>;
|
|
10020
|
-
/** Delete an
|
|
10030
|
+
/** Delete an Extension. */
|
|
10021
10031
|
extensionDeleteExtension: (request: {
|
|
10022
10032
|
contributorId: string;
|
|
10023
10033
|
extensionId: string;
|
|
@@ -10178,6 +10188,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10178
10188
|
blocked?: boolean | undefined;
|
|
10179
10189
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
10180
10190
|
contributorId: string;
|
|
10191
|
+
deletionDeadline?: string | undefined;
|
|
10181
10192
|
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
10182
10193
|
description?: string | undefined;
|
|
10183
10194
|
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
@@ -10189,6 +10200,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10189
10200
|
} | undefined;
|
|
10190
10201
|
functional: boolean;
|
|
10191
10202
|
id: string;
|
|
10203
|
+
isDeletionScheduled?: boolean | undefined;
|
|
10192
10204
|
logoRefId?: string | undefined;
|
|
10193
10205
|
name: string;
|
|
10194
10206
|
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
@@ -10257,6 +10269,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10257
10269
|
blocked?: boolean | undefined;
|
|
10258
10270
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
10259
10271
|
contributorId: string;
|
|
10272
|
+
deletionDeadline?: string | undefined;
|
|
10260
10273
|
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
10261
10274
|
description?: string | undefined;
|
|
10262
10275
|
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
@@ -10268,6 +10281,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10268
10281
|
} | undefined;
|
|
10269
10282
|
functional: boolean;
|
|
10270
10283
|
id: string;
|
|
10284
|
+
isDeletionScheduled?: boolean | undefined;
|
|
10271
10285
|
logoRefId?: string | undefined;
|
|
10272
10286
|
name: string;
|
|
10273
10287
|
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
@@ -10832,6 +10846,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10832
10846
|
contributorName: string;
|
|
10833
10847
|
createdAt?: string | undefined;
|
|
10834
10848
|
disabled: boolean;
|
|
10849
|
+
extensionDeletionDeadline?: string | undefined;
|
|
10835
10850
|
extensionId: string;
|
|
10836
10851
|
extensionName: string;
|
|
10837
10852
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -10873,6 +10888,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10873
10888
|
contributorName: string;
|
|
10874
10889
|
createdAt?: string | undefined;
|
|
10875
10890
|
disabled: boolean;
|
|
10891
|
+
extensionDeletionDeadline?: string | undefined;
|
|
10876
10892
|
extensionId: string;
|
|
10877
10893
|
extensionName: string;
|
|
10878
10894
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -10923,6 +10939,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10923
10939
|
contributorName: string;
|
|
10924
10940
|
createdAt?: string | undefined;
|
|
10925
10941
|
disabled: boolean;
|
|
10942
|
+
extensionDeletionDeadline?: string | undefined;
|
|
10926
10943
|
extensionId: string;
|
|
10927
10944
|
extensionName: string;
|
|
10928
10945
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -10964,6 +10981,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10964
10981
|
contributorName: string;
|
|
10965
10982
|
createdAt?: string | undefined;
|
|
10966
10983
|
disabled: boolean;
|
|
10984
|
+
extensionDeletionDeadline?: string | undefined;
|
|
10967
10985
|
extensionId: string;
|
|
10968
10986
|
extensionName: string;
|
|
10969
10987
|
extensionSubTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
@@ -19653,6 +19671,164 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
19653
19671
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19654
19672
|
[x: string]: unknown;
|
|
19655
19673
|
}, 429, "application/json">>>;
|
|
19674
|
+
/** Get a Contact-Verification. */
|
|
19675
|
+
getContactVerification: (request: {
|
|
19676
|
+
contactVerificationId: string;
|
|
19677
|
+
headers?: {
|
|
19678
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19679
|
+
"x-access-token"?: string | undefined;
|
|
19680
|
+
} | undefined;
|
|
19681
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19682
|
+
headers?: Partial<{
|
|
19683
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19684
|
+
}>;
|
|
19685
|
+
} & {
|
|
19686
|
+
pathParameters: {
|
|
19687
|
+
contactVerificationId: string;
|
|
19688
|
+
};
|
|
19689
|
+
} & {
|
|
19690
|
+
headers: {
|
|
19691
|
+
"x-access-token"?: string | undefined;
|
|
19692
|
+
} & Partial<{
|
|
19693
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19694
|
+
}>;
|
|
19695
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19696
|
+
id: string;
|
|
19697
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
19698
|
+
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
19699
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19700
|
+
[x: string]: unknown;
|
|
19701
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19702
|
+
[x: string]: unknown;
|
|
19703
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19704
|
+
[x: string]: unknown;
|
|
19705
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19706
|
+
headers?: Partial<{
|
|
19707
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19708
|
+
}>;
|
|
19709
|
+
} & {
|
|
19710
|
+
pathParameters: {
|
|
19711
|
+
contactVerificationId: string;
|
|
19712
|
+
};
|
|
19713
|
+
} & {
|
|
19714
|
+
headers: {
|
|
19715
|
+
"x-access-token"?: string | undefined;
|
|
19716
|
+
} & Partial<{
|
|
19717
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19718
|
+
}>;
|
|
19719
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
19720
|
+
id: string;
|
|
19721
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
19722
|
+
typeData: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
19723
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19724
|
+
[x: string]: unknown;
|
|
19725
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19726
|
+
[x: string]: unknown;
|
|
19727
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19728
|
+
[x: string]: unknown;
|
|
19729
|
+
}, 429, "application/json">>>;
|
|
19730
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
19731
|
+
listContactVerifications: (request?: {
|
|
19732
|
+
headers?: {
|
|
19733
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19734
|
+
"x-access-token"?: string | undefined;
|
|
19735
|
+
} | undefined;
|
|
19736
|
+
queryParameters?: {
|
|
19737
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19738
|
+
value?: string | undefined;
|
|
19739
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
19740
|
+
} | undefined;
|
|
19741
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19742
|
+
headers?: Partial<{
|
|
19743
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19744
|
+
}>;
|
|
19745
|
+
} & {
|
|
19746
|
+
queryParameters: {
|
|
19747
|
+
value?: string | undefined;
|
|
19748
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
19749
|
+
} & Partial<{
|
|
19750
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19751
|
+
}>;
|
|
19752
|
+
} & {
|
|
19753
|
+
headers: {
|
|
19754
|
+
"x-access-token"?: string | undefined;
|
|
19755
|
+
} & Partial<{
|
|
19756
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19757
|
+
}>;
|
|
19758
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19759
|
+
[x: string]: unknown;
|
|
19760
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19761
|
+
[x: string]: unknown;
|
|
19762
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19763
|
+
headers?: Partial<{
|
|
19764
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19765
|
+
}>;
|
|
19766
|
+
} & {
|
|
19767
|
+
queryParameters: {
|
|
19768
|
+
value?: string | undefined;
|
|
19769
|
+
type?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerificationType | undefined;
|
|
19770
|
+
} & Partial<{
|
|
19771
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19772
|
+
}>;
|
|
19773
|
+
} & {
|
|
19774
|
+
headers: {
|
|
19775
|
+
"x-access-token"?: string | undefined;
|
|
19776
|
+
} & Partial<{
|
|
19777
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19778
|
+
}>;
|
|
19779
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainContactVerification[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19780
|
+
[x: string]: unknown;
|
|
19781
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19782
|
+
[x: string]: unknown;
|
|
19783
|
+
}, 429, "application/json">>>;
|
|
19784
|
+
/** Resends a Contact-Verification email. */
|
|
19785
|
+
resendContactVerificationEmail: (request: {
|
|
19786
|
+
contactVerificationId: string;
|
|
19787
|
+
headers?: {
|
|
19788
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
19789
|
+
"x-access-token"?: string | undefined;
|
|
19790
|
+
} | undefined;
|
|
19791
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19792
|
+
headers?: Partial<{
|
|
19793
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19794
|
+
}>;
|
|
19795
|
+
} & {
|
|
19796
|
+
pathParameters: {
|
|
19797
|
+
contactVerificationId: string;
|
|
19798
|
+
};
|
|
19799
|
+
} & {
|
|
19800
|
+
headers: {
|
|
19801
|
+
"x-access-token"?: string | undefined;
|
|
19802
|
+
} & Partial<{
|
|
19803
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19804
|
+
}>;
|
|
19805
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19806
|
+
[x: string]: unknown;
|
|
19807
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19808
|
+
[x: string]: unknown;
|
|
19809
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19810
|
+
[x: string]: unknown;
|
|
19811
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
19812
|
+
headers?: Partial<{
|
|
19813
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19814
|
+
}>;
|
|
19815
|
+
} & {
|
|
19816
|
+
pathParameters: {
|
|
19817
|
+
contactVerificationId: string;
|
|
19818
|
+
};
|
|
19819
|
+
} & {
|
|
19820
|
+
headers: {
|
|
19821
|
+
"x-access-token"?: string | undefined;
|
|
19822
|
+
} & Partial<{
|
|
19823
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
19824
|
+
}>;
|
|
19825
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
19826
|
+
[x: string]: unknown;
|
|
19827
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19828
|
+
[x: string]: unknown;
|
|
19829
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
19830
|
+
[x: string]: unknown;
|
|
19831
|
+
}, 429, "application/json">>>;
|
|
19656
19832
|
};
|
|
19657
19833
|
/** The mail API allows you to manage your mail accounts. */
|
|
19658
19834
|
readonly mail: {
|
|
@@ -22031,6 +22207,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22031
22207
|
headers?: {
|
|
22032
22208
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22033
22209
|
} | undefined;
|
|
22210
|
+
queryParameters?: {
|
|
22211
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22212
|
+
cookieOnly?: boolean | undefined;
|
|
22213
|
+
} | undefined;
|
|
22034
22214
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22035
22215
|
data: {
|
|
22036
22216
|
email: string;
|
|
@@ -22041,14 +22221,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22041
22221
|
headers?: Partial<{
|
|
22042
22222
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22043
22223
|
}>;
|
|
22224
|
+
} & {
|
|
22225
|
+
queryParameters: {
|
|
22226
|
+
cookieOnly?: boolean | undefined;
|
|
22227
|
+
} & Partial<{
|
|
22228
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22229
|
+
}>;
|
|
22044
22230
|
}, import("@mittwald/api-client-commons").Response<{
|
|
22045
22231
|
type: "ValidationError";
|
|
22046
22232
|
message?: string | undefined;
|
|
22047
22233
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
22048
22234
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22049
|
-
expires
|
|
22050
|
-
refreshToken
|
|
22051
|
-
token
|
|
22235
|
+
expires?: string | undefined;
|
|
22236
|
+
refreshToken?: string | undefined;
|
|
22237
|
+
token?: string | undefined;
|
|
22052
22238
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22053
22239
|
[x: string]: unknown;
|
|
22054
22240
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -22065,14 +22251,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22065
22251
|
headers?: Partial<{
|
|
22066
22252
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22067
22253
|
}>;
|
|
22254
|
+
} & {
|
|
22255
|
+
queryParameters: {
|
|
22256
|
+
cookieOnly?: boolean | undefined;
|
|
22257
|
+
} & Partial<{
|
|
22258
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22259
|
+
}>;
|
|
22068
22260
|
}, import("@mittwald/api-client-commons").Response<{
|
|
22069
22261
|
type: "ValidationError";
|
|
22070
22262
|
message?: string | undefined;
|
|
22071
22263
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
22072
22264
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22073
|
-
expires
|
|
22074
|
-
refreshToken
|
|
22075
|
-
token
|
|
22265
|
+
expires?: string | undefined;
|
|
22266
|
+
refreshToken?: string | undefined;
|
|
22267
|
+
token?: string | undefined;
|
|
22076
22268
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22077
22269
|
[x: string]: unknown;
|
|
22078
22270
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -22089,6 +22281,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22089
22281
|
headers?: {
|
|
22090
22282
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22091
22283
|
} | undefined;
|
|
22284
|
+
queryParameters?: {
|
|
22285
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22286
|
+
cookieOnly?: boolean | undefined;
|
|
22287
|
+
} | undefined;
|
|
22092
22288
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22093
22289
|
data: {
|
|
22094
22290
|
email: string;
|
|
@@ -22098,17 +22294,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22098
22294
|
headers?: Partial<{
|
|
22099
22295
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22100
22296
|
}>;
|
|
22297
|
+
} & {
|
|
22298
|
+
queryParameters: {
|
|
22299
|
+
cookieOnly?: boolean | undefined;
|
|
22300
|
+
} & Partial<{
|
|
22301
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22302
|
+
}>;
|
|
22101
22303
|
}, import("@mittwald/api-client-commons").Response<{
|
|
22102
|
-
expires
|
|
22103
|
-
refreshToken
|
|
22104
|
-
token
|
|
22304
|
+
expires?: string | undefined;
|
|
22305
|
+
refreshToken?: string | undefined;
|
|
22306
|
+
token?: string | undefined;
|
|
22105
22307
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22106
22308
|
name?: "SecondFactorRequired" | undefined;
|
|
22107
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22108
|
-
type: "ValidationError";
|
|
22109
|
-
message?: string | undefined;
|
|
22110
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
22111
|
-
}, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22309
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22112
22310
|
[x: string]: unknown;
|
|
22113
22311
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22114
22312
|
data: {
|
|
@@ -22119,17 +22317,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22119
22317
|
headers?: Partial<{
|
|
22120
22318
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22121
22319
|
}>;
|
|
22320
|
+
} & {
|
|
22321
|
+
queryParameters: {
|
|
22322
|
+
cookieOnly?: boolean | undefined;
|
|
22323
|
+
} & Partial<{
|
|
22324
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22325
|
+
}>;
|
|
22122
22326
|
}, import("@mittwald/api-client-commons").Response<{
|
|
22123
|
-
expires
|
|
22124
|
-
refreshToken
|
|
22125
|
-
token
|
|
22327
|
+
expires?: string | undefined;
|
|
22328
|
+
refreshToken?: string | undefined;
|
|
22329
|
+
token?: string | undefined;
|
|
22126
22330
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22127
22331
|
name?: "SecondFactorRequired" | undefined;
|
|
22128
|
-
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22129
|
-
type: "ValidationError";
|
|
22130
|
-
message?: string | undefined;
|
|
22131
|
-
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
22132
|
-
}, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22332
|
+
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2Authenticate.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22133
22333
|
[x: string]: unknown;
|
|
22134
22334
|
}, 429, "application/json">>>;
|
|
22135
22335
|
/** Authenticate an user with an access token retrieval key. */
|
|
@@ -24589,8 +24789,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24589
24789
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24590
24790
|
[x: string]: unknown;
|
|
24591
24791
|
}, 429, "application/json">>>;
|
|
24592
|
-
/** Check
|
|
24593
|
-
|
|
24792
|
+
/** Check status of the current session. */
|
|
24793
|
+
getCurrentSessionStatus: (request?: {
|
|
24594
24794
|
headers?: {
|
|
24595
24795
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
24596
24796
|
"x-access-token"?: string | undefined;
|
|
@@ -24606,8 +24806,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24606
24806
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24607
24807
|
}>;
|
|
24608
24808
|
}, import("@mittwald/api-client-commons").Response<{
|
|
24609
|
-
|
|
24610
|
-
|
|
24809
|
+
isEmployee: boolean;
|
|
24810
|
+
isImpersonated: boolean;
|
|
24811
|
+
userId: string;
|
|
24611
24812
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24612
24813
|
[x: string]: unknown;
|
|
24613
24814
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -24621,8 +24822,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24621
24822
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24622
24823
|
}>;
|
|
24623
24824
|
}, import("@mittwald/api-client-commons").Response<{
|
|
24624
|
-
|
|
24625
|
-
|
|
24825
|
+
isEmployee: boolean;
|
|
24826
|
+
isImpersonated: boolean;
|
|
24827
|
+
userId: string;
|
|
24626
24828
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24627
24829
|
[x: string]: unknown;
|
|
24628
24830
|
}, 429, "application/json">>>;
|
|
@@ -26537,9 +26739,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26537
26739
|
} & Partial<{
|
|
26538
26740
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26539
26741
|
}>;
|
|
26540
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26742
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
26541
26743
|
exists: boolean;
|
|
26542
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26744
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26543
26745
|
[x: string]: unknown;
|
|
26544
26746
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26545
26747
|
data: {
|
|
@@ -26555,9 +26757,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26555
26757
|
} & Partial<{
|
|
26556
26758
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26557
26759
|
}>;
|
|
26558
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26760
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
26559
26761
|
exists: boolean;
|
|
26560
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26762
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26561
26763
|
[x: string]: unknown;
|
|
26562
26764
|
}, 429, "application/json">>>;
|
|
26563
26765
|
};
|
|
@@ -210,7 +210,7 @@ export declare const contributorCancelVerification: OpenAPIOperation<RequestType
|
|
|
210
210
|
/** Get a Contributor. */
|
|
211
211
|
export declare const extensionGetContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
212
212
|
/** Delete a Contributor. */
|
|
213
|
-
export declare const contributorDeleteContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$412.Content.
|
|
213
|
+
export declare const contributorDeleteContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
214
214
|
/** Patch Contributor. */
|
|
215
215
|
export declare const contributorPatchContributor: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
216
216
|
/** Express interest to be a contributor. */
|
|
@@ -487,7 +487,7 @@ export declare const extensionGetExtensionInstance: OpenAPIOperation<RequestType
|
|
|
487
487
|
export declare const extensionDeleteExtensionInstance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceId.Delete.Responses.$204.Content.ApplicationJson>, 204, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
488
488
|
/** Get Extension of own contributor. */
|
|
489
489
|
export declare const extensionGetOwnExtension: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
490
|
-
/** Delete an
|
|
490
|
+
/** Delete an Extension. */
|
|
491
491
|
export declare const extensionDeleteExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
492
492
|
/** Patch Extension. */
|
|
493
493
|
export declare const extensionPatchExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -917,5 +917,11 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
917
917
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
918
918
|
/** Check if a company exists. */
|
|
919
919
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
920
|
-
/** Check
|
|
921
|
-
export declare const
|
|
920
|
+
/** Check status of the current session. */
|
|
921
|
+
export declare const userGetCurrentSessionStatus: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsCurrentStatus.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsCurrentStatus.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsCurrentStatus.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsCurrentStatus.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsCurrentStatus.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfSessionsCurrentStatus.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
922
|
+
/** Get a Contact-Verification. */
|
|
923
|
+
export declare const domainGetContactVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
924
|
+
/** List Contact-Verifications belonging to the executing user. */
|
|
925
|
+
export declare const domainListContactVerifications: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerifications.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
926
|
+
/** Resends a Contact-Verification email. */
|
|
927
|
+
export declare const domainResendContactVerificationEmail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1830,9 +1830,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1830
1830
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1831
1831
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1832
1832
|
}
|
|
1833
|
-
namespace
|
|
1834
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
1835
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
1833
|
+
namespace UserGetCurrentSessionStatus {
|
|
1834
|
+
type RequestData = InferredRequestData<typeof descriptors.userGetCurrentSessionStatus>;
|
|
1835
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetCurrentSessionStatus, TStatus>;
|
|
1836
|
+
}
|
|
1837
|
+
namespace DomainGetContactVerification {
|
|
1838
|
+
type RequestData = InferredRequestData<typeof descriptors.domainGetContactVerification>;
|
|
1839
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetContactVerification, TStatus>;
|
|
1840
|
+
}
|
|
1841
|
+
namespace DomainListContactVerifications {
|
|
1842
|
+
type RequestData = InferredRequestData<typeof descriptors.domainListContactVerifications>;
|
|
1843
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListContactVerifications, TStatus>;
|
|
1844
|
+
}
|
|
1845
|
+
namespace DomainResendContactVerificationEmail {
|
|
1846
|
+
type RequestData = InferredRequestData<typeof descriptors.domainResendContactVerificationEmail>;
|
|
1847
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendContactVerificationEmail, TStatus>;
|
|
1836
1848
|
}
|
|
1837
1849
|
}
|
|
1838
1850
|
namespace Components {
|
|
@@ -1935,6 +1947,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1935
1947
|
planLimit: number;
|
|
1936
1948
|
used: number;
|
|
1937
1949
|
}
|
|
1950
|
+
type AppAppInstallationSortOrder = "newestFirst" | "oldestFirst" | "sortByPhpVersionAsc" | "sortByPhpVersionDesc";
|
|
1938
1951
|
/**
|
|
1939
1952
|
* An Action is a string that describes a runtime concerning action which can be executed on an AppInstallation or an App can be capable of.
|
|
1940
1953
|
*/
|
|
@@ -3833,9 +3846,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3833
3846
|
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
3834
3847
|
contributorId: string;
|
|
3835
3848
|
createdAt: string;
|
|
3849
|
+
deletionDeadline?: string;
|
|
3836
3850
|
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
|
|
3837
3851
|
/**
|
|
3838
|
-
* A short description of the
|
|
3852
|
+
* A short description of the capabilities of the Extension.
|
|
3839
3853
|
*/
|
|
3840
3854
|
description: string;
|
|
3841
3855
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
@@ -3852,6 +3866,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3852
3866
|
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
3853
3867
|
};
|
|
3854
3868
|
id: string;
|
|
3869
|
+
isDeletionScheduled?: boolean;
|
|
3855
3870
|
/**
|
|
3856
3871
|
* This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
|
|
3857
3872
|
*/
|
|
@@ -3961,6 +3976,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3961
3976
|
contributorName: string;
|
|
3962
3977
|
createdAt?: string;
|
|
3963
3978
|
disabled: boolean;
|
|
3979
|
+
extensionDeletionDeadline?: string;
|
|
3964
3980
|
extensionId: string;
|
|
3965
3981
|
extensionName: string;
|
|
3966
3982
|
extensionSubTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
@@ -4071,6 +4087,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4071
4087
|
blocked?: boolean;
|
|
4072
4088
|
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4073
4089
|
contributorId: string;
|
|
4090
|
+
deletionDeadline?: string;
|
|
4074
4091
|
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
|
|
4075
4092
|
description?: string;
|
|
4076
4093
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
@@ -4088,6 +4105,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4088
4105
|
};
|
|
4089
4106
|
functional: boolean;
|
|
4090
4107
|
id: string;
|
|
4108
|
+
isDeletionScheduled?: boolean;
|
|
4091
4109
|
/**
|
|
4092
4110
|
* This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
|
|
4093
4111
|
*/
|
|
@@ -4190,9 +4208,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4190
4208
|
blocked: boolean;
|
|
4191
4209
|
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4192
4210
|
contributorId: string;
|
|
4211
|
+
deletionDeadline?: string;
|
|
4193
4212
|
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
|
|
4194
4213
|
/**
|
|
4195
|
-
* A short description of the
|
|
4214
|
+
* A short description of the capabilities of the Extension.
|
|
4196
4215
|
*/
|
|
4197
4216
|
description?: string;
|
|
4198
4217
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
@@ -4206,6 +4225,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4206
4225
|
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
4207
4226
|
};
|
|
4208
4227
|
id: string;
|
|
4228
|
+
isDeletionScheduled?: boolean;
|
|
4209
4229
|
/**
|
|
4210
4230
|
* This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
|
|
4211
4231
|
*/
|
|
@@ -6149,7 +6169,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6149
6169
|
}
|
|
6150
6170
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6151
6171
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6152
|
-
|
|
6172
|
+
interface DomainContactVerification {
|
|
6173
|
+
id: string;
|
|
6174
|
+
status: MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
|
|
6175
|
+
typeData: MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
|
|
6176
|
+
}
|
|
6177
|
+
interface DomainContactVerificationAddressData {
|
|
6178
|
+
type: "address";
|
|
6179
|
+
value: string;
|
|
6180
|
+
}
|
|
6181
|
+
interface DomainContactVerificationEmailData {
|
|
6182
|
+
emailVerificationDeadline?: string;
|
|
6183
|
+
lastEmailSentDate?: string;
|
|
6184
|
+
type: "email";
|
|
6185
|
+
value: string;
|
|
6186
|
+
}
|
|
6187
|
+
interface DomainContactVerificationNameData {
|
|
6188
|
+
type: "name";
|
|
6189
|
+
value: string;
|
|
6190
|
+
}
|
|
6191
|
+
type DomainContactVerificationStatus = "created" | "pending" | "completed" | "failed";
|
|
6192
|
+
type DomainContactVerificationType = "name" | "address" | "email";
|
|
6153
6193
|
interface CommonsAddress {
|
|
6154
6194
|
street: string;
|
|
6155
6195
|
houseNumber: string;
|
|
@@ -11855,7 +11895,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11855
11895
|
}
|
|
11856
11896
|
namespace $412 {
|
|
11857
11897
|
namespace Content {
|
|
11858
|
-
|
|
11898
|
+
interface ApplicationJson {
|
|
11899
|
+
[k: string]: unknown;
|
|
11900
|
+
}
|
|
11859
11901
|
}
|
|
11860
11902
|
}
|
|
11861
11903
|
namespace $429 {
|
|
@@ -27450,7 +27492,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27450
27492
|
password: string;
|
|
27451
27493
|
}
|
|
27452
27494
|
type Header = {};
|
|
27453
|
-
type Query = {
|
|
27495
|
+
type Query = {
|
|
27496
|
+
cookieOnly?: boolean;
|
|
27497
|
+
};
|
|
27454
27498
|
}
|
|
27455
27499
|
namespace Responses {
|
|
27456
27500
|
namespace $200 {
|
|
@@ -27459,15 +27503,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27459
27503
|
/**
|
|
27460
27504
|
* The expiration date of the token.
|
|
27461
27505
|
*/
|
|
27462
|
-
expires
|
|
27506
|
+
expires?: string;
|
|
27463
27507
|
/**
|
|
27464
27508
|
* Refresh token to refresh your access token even after it has expired.
|
|
27465
27509
|
*/
|
|
27466
|
-
refreshToken
|
|
27510
|
+
refreshToken?: string;
|
|
27467
27511
|
/**
|
|
27468
27512
|
* Public token to identify yourself against the api gateway.
|
|
27469
27513
|
*/
|
|
27470
|
-
token
|
|
27514
|
+
token?: string;
|
|
27471
27515
|
}
|
|
27472
27516
|
}
|
|
27473
27517
|
}
|
|
@@ -27516,7 +27560,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27516
27560
|
password: string;
|
|
27517
27561
|
}
|
|
27518
27562
|
type Header = {};
|
|
27519
|
-
type Query = {
|
|
27563
|
+
type Query = {
|
|
27564
|
+
cookieOnly?: boolean;
|
|
27565
|
+
};
|
|
27520
27566
|
}
|
|
27521
27567
|
namespace Responses {
|
|
27522
27568
|
namespace $200 {
|
|
@@ -27525,15 +27571,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27525
27571
|
/**
|
|
27526
27572
|
* The expiration date of the token.
|
|
27527
27573
|
*/
|
|
27528
|
-
expires
|
|
27574
|
+
expires?: string;
|
|
27529
27575
|
/**
|
|
27530
27576
|
* Refresh token to refresh your access token even after it has expired.
|
|
27531
27577
|
*/
|
|
27532
|
-
refreshToken
|
|
27578
|
+
refreshToken?: string;
|
|
27533
27579
|
/**
|
|
27534
27580
|
* Public token to identify yourself against the api gateway.
|
|
27535
27581
|
*/
|
|
27536
|
-
token
|
|
27582
|
+
token?: string;
|
|
27537
27583
|
}
|
|
27538
27584
|
}
|
|
27539
27585
|
}
|
|
@@ -27551,7 +27597,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27551
27597
|
}
|
|
27552
27598
|
namespace $401 {
|
|
27553
27599
|
namespace Content {
|
|
27554
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
27600
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors | MittwaldAPIV2.Components.Schemas.CommonsError;
|
|
27555
27601
|
}
|
|
27556
27602
|
}
|
|
27557
27603
|
namespace $429 {
|
|
@@ -29844,22 +29890,163 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29844
29890
|
}
|
|
29845
29891
|
}
|
|
29846
29892
|
}
|
|
29847
|
-
namespace
|
|
29848
|
-
|
|
29849
|
-
namespace Post {
|
|
29893
|
+
namespace V2UsersSelfSessionsCurrentStatus {
|
|
29894
|
+
namespace Get {
|
|
29850
29895
|
namespace Parameters {
|
|
29851
29896
|
type Path = {};
|
|
29852
|
-
|
|
29897
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29898
|
+
type Query = {};
|
|
29899
|
+
}
|
|
29900
|
+
namespace Responses {
|
|
29901
|
+
namespace $200 {
|
|
29902
|
+
namespace Content {
|
|
29903
|
+
interface ApplicationJson {
|
|
29904
|
+
/**
|
|
29905
|
+
* Whether the executing user is an employee.
|
|
29906
|
+
*/
|
|
29907
|
+
isEmployee: boolean;
|
|
29908
|
+
/**
|
|
29909
|
+
* Whether the current session is an impersonation.
|
|
29910
|
+
*/
|
|
29911
|
+
isImpersonated: boolean;
|
|
29912
|
+
/**
|
|
29913
|
+
* ID of the executing user.
|
|
29914
|
+
*/
|
|
29915
|
+
userId: string;
|
|
29916
|
+
}
|
|
29917
|
+
}
|
|
29853
29918
|
}
|
|
29919
|
+
namespace $429 {
|
|
29920
|
+
namespace Content {
|
|
29921
|
+
interface ApplicationJson {
|
|
29922
|
+
[k: string]: unknown;
|
|
29923
|
+
}
|
|
29924
|
+
}
|
|
29925
|
+
}
|
|
29926
|
+
namespace Default {
|
|
29927
|
+
namespace Content {
|
|
29928
|
+
interface ApplicationJson {
|
|
29929
|
+
[k: string]: unknown;
|
|
29930
|
+
}
|
|
29931
|
+
}
|
|
29932
|
+
}
|
|
29933
|
+
}
|
|
29934
|
+
}
|
|
29935
|
+
}
|
|
29936
|
+
namespace V2SignupTokenCheck { }
|
|
29937
|
+
namespace V2UsersSelfCredentialsToken { }
|
|
29938
|
+
namespace V2ContactVerificationsContactVerificationId {
|
|
29939
|
+
namespace Get {
|
|
29940
|
+
namespace Parameters {
|
|
29941
|
+
type Path = {
|
|
29942
|
+
contactVerificationId: string;
|
|
29943
|
+
};
|
|
29854
29944
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29855
29945
|
type Query = {};
|
|
29856
29946
|
}
|
|
29857
29947
|
namespace Responses {
|
|
29858
29948
|
namespace $200 {
|
|
29949
|
+
namespace Content {
|
|
29950
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification;
|
|
29951
|
+
}
|
|
29952
|
+
}
|
|
29953
|
+
namespace $400 {
|
|
29859
29954
|
namespace Content {
|
|
29860
29955
|
interface ApplicationJson {
|
|
29861
|
-
|
|
29862
|
-
|
|
29956
|
+
[k: string]: unknown;
|
|
29957
|
+
}
|
|
29958
|
+
}
|
|
29959
|
+
}
|
|
29960
|
+
namespace $404 {
|
|
29961
|
+
namespace Content {
|
|
29962
|
+
interface ApplicationJson {
|
|
29963
|
+
[k: string]: unknown;
|
|
29964
|
+
}
|
|
29965
|
+
}
|
|
29966
|
+
}
|
|
29967
|
+
namespace $429 {
|
|
29968
|
+
namespace Content {
|
|
29969
|
+
interface ApplicationJson {
|
|
29970
|
+
[k: string]: unknown;
|
|
29971
|
+
}
|
|
29972
|
+
}
|
|
29973
|
+
}
|
|
29974
|
+
namespace Default {
|
|
29975
|
+
namespace Content {
|
|
29976
|
+
interface ApplicationJson {
|
|
29977
|
+
[k: string]: unknown;
|
|
29978
|
+
}
|
|
29979
|
+
}
|
|
29980
|
+
}
|
|
29981
|
+
}
|
|
29982
|
+
}
|
|
29983
|
+
}
|
|
29984
|
+
namespace V2ContactVerifications {
|
|
29985
|
+
namespace Get {
|
|
29986
|
+
namespace Parameters {
|
|
29987
|
+
type Path = {};
|
|
29988
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29989
|
+
type Query = {
|
|
29990
|
+
value?: string;
|
|
29991
|
+
type?: MittwaldAPIV2.Components.Schemas.DomainContactVerificationType;
|
|
29992
|
+
};
|
|
29993
|
+
}
|
|
29994
|
+
namespace Responses {
|
|
29995
|
+
namespace $200 {
|
|
29996
|
+
namespace Content {
|
|
29997
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification[];
|
|
29998
|
+
}
|
|
29999
|
+
}
|
|
30000
|
+
namespace $400 {
|
|
30001
|
+
namespace Content {
|
|
30002
|
+
interface ApplicationJson {
|
|
30003
|
+
[k: string]: unknown;
|
|
30004
|
+
}
|
|
30005
|
+
}
|
|
30006
|
+
}
|
|
30007
|
+
namespace $429 {
|
|
30008
|
+
namespace Content {
|
|
30009
|
+
interface ApplicationJson {
|
|
30010
|
+
[k: string]: unknown;
|
|
30011
|
+
}
|
|
30012
|
+
}
|
|
30013
|
+
}
|
|
30014
|
+
namespace Default {
|
|
30015
|
+
namespace Content {
|
|
30016
|
+
interface ApplicationJson {
|
|
30017
|
+
[k: string]: unknown;
|
|
30018
|
+
}
|
|
30019
|
+
}
|
|
30020
|
+
}
|
|
30021
|
+
}
|
|
30022
|
+
}
|
|
30023
|
+
}
|
|
30024
|
+
namespace V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail {
|
|
30025
|
+
namespace Post {
|
|
30026
|
+
namespace Parameters {
|
|
30027
|
+
type Path = {
|
|
30028
|
+
contactVerificationId: string;
|
|
30029
|
+
};
|
|
30030
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
30031
|
+
type Query = {};
|
|
30032
|
+
}
|
|
30033
|
+
namespace Responses {
|
|
30034
|
+
namespace $204 {
|
|
30035
|
+
namespace Content {
|
|
30036
|
+
type Empty = unknown;
|
|
30037
|
+
}
|
|
30038
|
+
}
|
|
30039
|
+
namespace $400 {
|
|
30040
|
+
namespace Content {
|
|
30041
|
+
interface ApplicationJson {
|
|
30042
|
+
[k: string]: unknown;
|
|
30043
|
+
}
|
|
30044
|
+
}
|
|
30045
|
+
}
|
|
30046
|
+
namespace $412 {
|
|
30047
|
+
namespace Content {
|
|
30048
|
+
interface ApplicationJson {
|
|
30049
|
+
[k: string]: unknown;
|
|
29863
30050
|
}
|
|
29864
30051
|
}
|
|
29865
30052
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.362.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.363.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.363.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.363.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "bc89cd5c876f133860943d52335e4090a5629651"
|
|
84
84
|
}
|