@mittwald/api-client 4.360.1 → 4.362.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.js +3 -3
- package/dist/esm/generated/v2/descriptors.js +7 -7
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +5 -0
- package/dist/types/generated/v2/client.d.ts +62 -44
- package/dist/types/generated/v2/descriptors.d.ts +4 -4
- package/dist/types/generated/v2/types.d.ts +52 -43
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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),
|
|
@@ -716,8 +716,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
716
716
|
changeEmail: this.requestFunctionFactory(descriptors.userChangeEmail),
|
|
717
717
|
/** Change your password. */
|
|
718
718
|
changePassword: this.requestFunctionFactory(descriptors.userChangePassword),
|
|
719
|
-
/** Check token for validity. */
|
|
720
|
-
checkToken: this.requestFunctionFactory(descriptors.userCheckToken),
|
|
721
719
|
/** Get your current multi factor auth status. */
|
|
722
720
|
getMfaStatus: this.requestFunctionFactory(descriptors.userGetMfaStatus),
|
|
723
721
|
/** Reset RecoveryCodes for MFA. */
|
|
@@ -804,6 +802,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
804
802
|
verifyPhoneNumber: this.requestFunctionFactory(descriptors.userVerifyPhoneNumber),
|
|
805
803
|
/** Verify your registration. */
|
|
806
804
|
verifyRegistration: this.requestFunctionFactory(descriptors.userVerifyRegistration),
|
|
805
|
+
/** Check token for validity. */
|
|
806
|
+
checkToken: this.requestFunctionFactory(descriptors.userCheckToken),
|
|
807
807
|
};
|
|
808
808
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
809
809
|
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",
|
|
@@ -2464,12 +2464,6 @@ export const userChangePassword = {
|
|
|
2464
2464
|
method: "PUT",
|
|
2465
2465
|
operationId: "user-change-password",
|
|
2466
2466
|
};
|
|
2467
|
-
/** Check token for validity. */
|
|
2468
|
-
export const userCheckToken = {
|
|
2469
|
-
path: "/v2/users/self/credentials/token",
|
|
2470
|
-
method: "POST",
|
|
2471
|
-
operationId: "user-check-token",
|
|
2472
|
-
};
|
|
2473
2467
|
/** Get your current multi factor auth status. */
|
|
2474
2468
|
export const userGetMfaStatus = {
|
|
2475
2469
|
path: "/v2/users/self/credentials/mfa",
|
|
@@ -2746,3 +2740,9 @@ export const verificationVerifyCompany = {
|
|
|
2746
2740
|
method: "POST",
|
|
2747
2741
|
operationId: "verification-verify-company",
|
|
2748
2742
|
};
|
|
2743
|
+
/** Check token for validity. */
|
|
2744
|
+
export const userCheckToken = {
|
|
2745
|
+
path: "/v2/users/self/credentials/token",
|
|
2746
|
+
method: "POST",
|
|
2747
|
+
operationId: "user-check-token",
|
|
2748
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.361.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;
|
|
@@ -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;
|
|
@@ -22333,43 +22351,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22333
22351
|
}, 202, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22334
22352
|
[x: string]: unknown;
|
|
22335
22353
|
}, 429, "application/json">>>;
|
|
22336
|
-
/** Check token for validity. */
|
|
22337
|
-
checkToken: (request?: {
|
|
22338
|
-
headers?: {
|
|
22339
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22340
|
-
"x-access-token"?: string | undefined;
|
|
22341
|
-
} | undefined;
|
|
22342
|
-
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22343
|
-
headers?: Partial<{
|
|
22344
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22345
|
-
}>;
|
|
22346
|
-
} & {
|
|
22347
|
-
headers: {
|
|
22348
|
-
"x-access-token"?: string | undefined;
|
|
22349
|
-
} & Partial<{
|
|
22350
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22351
|
-
}>;
|
|
22352
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
22353
|
-
id: string;
|
|
22354
|
-
publicToken: string;
|
|
22355
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22356
|
-
[x: string]: unknown;
|
|
22357
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22358
|
-
headers?: Partial<{
|
|
22359
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22360
|
-
}>;
|
|
22361
|
-
} & {
|
|
22362
|
-
headers: {
|
|
22363
|
-
"x-access-token"?: string | undefined;
|
|
22364
|
-
} & Partial<{
|
|
22365
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22366
|
-
}>;
|
|
22367
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
22368
|
-
id: string;
|
|
22369
|
-
publicToken: string;
|
|
22370
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
22371
|
-
[x: string]: unknown;
|
|
22372
|
-
}, 429, "application/json">>>;
|
|
22373
22354
|
/** Get your current multi factor auth status. */
|
|
22374
22355
|
getMfaStatus: (request?: {
|
|
22375
22356
|
headers?: {
|
|
@@ -24626,6 +24607,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24626
24607
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24627
24608
|
[x: string]: unknown;
|
|
24628
24609
|
}, 429, "application/json">>>;
|
|
24610
|
+
/** Check token for validity. */
|
|
24611
|
+
checkToken: (request?: {
|
|
24612
|
+
headers?: {
|
|
24613
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
24614
|
+
"x-access-token"?: string | undefined;
|
|
24615
|
+
} | undefined;
|
|
24616
|
+
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24617
|
+
headers?: Partial<{
|
|
24618
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24619
|
+
}>;
|
|
24620
|
+
} & {
|
|
24621
|
+
headers: {
|
|
24622
|
+
"x-access-token"?: string | undefined;
|
|
24623
|
+
} & Partial<{
|
|
24624
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24625
|
+
}>;
|
|
24626
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24627
|
+
id: string;
|
|
24628
|
+
publicToken: string;
|
|
24629
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24630
|
+
[x: string]: unknown;
|
|
24631
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24632
|
+
headers?: Partial<{
|
|
24633
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24634
|
+
}>;
|
|
24635
|
+
} & {
|
|
24636
|
+
headers: {
|
|
24637
|
+
"x-access-token"?: string | undefined;
|
|
24638
|
+
} & Partial<{
|
|
24639
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24640
|
+
}>;
|
|
24641
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
24642
|
+
id: string;
|
|
24643
|
+
publicToken: string;
|
|
24644
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
24645
|
+
[x: string]: unknown;
|
|
24646
|
+
}, 429, "application/json">>>;
|
|
24629
24647
|
};
|
|
24630
24648
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
24631
24649
|
readonly file: {
|
|
@@ -26537,9 +26555,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26537
26555
|
} & Partial<{
|
|
26538
26556
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26539
26557
|
}>;
|
|
26540
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26558
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
26541
26559
|
exists: boolean;
|
|
26542
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26560
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26543
26561
|
[x: string]: unknown;
|
|
26544
26562
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
26545
26563
|
data: {
|
|
@@ -26555,9 +26573,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26555
26573
|
} & Partial<{
|
|
26556
26574
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26557
26575
|
}>;
|
|
26558
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
26576
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
26559
26577
|
exists: boolean;
|
|
26560
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26578
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
26561
26579
|
[x: string]: unknown;
|
|
26562
26580
|
}, 429, "application/json">>>;
|
|
26563
26581
|
};
|
|
@@ -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">>;
|
|
@@ -825,8 +825,6 @@ export declare const userGetOwnEmail: OpenAPIOperation<RequestType<Simplify<null
|
|
|
825
825
|
export declare const userChangeEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmail.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
826
826
|
/** Change your password. */
|
|
827
827
|
export declare const userChangePassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Responses.$202.Content.ApplicationJson>, 202, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsPassword.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
828
|
-
/** Check token for validity. */
|
|
829
|
-
export declare const userCheckToken: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
830
828
|
/** Get your current multi factor auth status. */
|
|
831
829
|
export declare const userGetMfaStatus: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsMfa.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsMfa.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsMfa.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsMfa.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsMfa.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsMfa.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
832
830
|
/** Reset RecoveryCodes for MFA. */
|
|
@@ -919,3 +917,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
919
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">>;
|
|
920
918
|
/** Check if a company exists. */
|
|
921
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 token for validity. */
|
|
921
|
+
export declare const userCheckToken: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsToken.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1646,10 +1646,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1646
1646
|
type RequestData = InferredRequestData<typeof descriptors.userChangePassword>;
|
|
1647
1647
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userChangePassword, TStatus>;
|
|
1648
1648
|
}
|
|
1649
|
-
namespace UserCheckToken {
|
|
1650
|
-
type RequestData = InferredRequestData<typeof descriptors.userCheckToken>;
|
|
1651
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userCheckToken, TStatus>;
|
|
1652
|
-
}
|
|
1653
1649
|
namespace UserGetMfaStatus {
|
|
1654
1650
|
type RequestData = InferredRequestData<typeof descriptors.userGetMfaStatus>;
|
|
1655
1651
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetMfaStatus, TStatus>;
|
|
@@ -1834,6 +1830,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1834
1830
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1835
1831
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1836
1832
|
}
|
|
1833
|
+
namespace UserCheckToken {
|
|
1834
|
+
type RequestData = InferredRequestData<typeof descriptors.userCheckToken>;
|
|
1835
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userCheckToken, TStatus>;
|
|
1836
|
+
}
|
|
1837
1837
|
}
|
|
1838
1838
|
namespace Components {
|
|
1839
1839
|
namespace Schemas {
|
|
@@ -3833,9 +3833,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3833
3833
|
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
3834
3834
|
contributorId: string;
|
|
3835
3835
|
createdAt: string;
|
|
3836
|
+
deletionDeadline?: string;
|
|
3836
3837
|
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
|
|
3837
3838
|
/**
|
|
3838
|
-
* A short description of the
|
|
3839
|
+
* A short description of the capabilities of the Extension.
|
|
3839
3840
|
*/
|
|
3840
3841
|
description: string;
|
|
3841
3842
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
@@ -3852,6 +3853,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3852
3853
|
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
3853
3854
|
};
|
|
3854
3855
|
id: string;
|
|
3856
|
+
isDeletionScheduled?: boolean;
|
|
3855
3857
|
/**
|
|
3856
3858
|
* This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
|
|
3857
3859
|
*/
|
|
@@ -3961,6 +3963,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3961
3963
|
contributorName: string;
|
|
3962
3964
|
createdAt?: string;
|
|
3963
3965
|
disabled: boolean;
|
|
3966
|
+
extensionDeletionDeadline?: string;
|
|
3964
3967
|
extensionId: string;
|
|
3965
3968
|
extensionName: string;
|
|
3966
3969
|
extensionSubTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
@@ -4071,6 +4074,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4071
4074
|
blocked?: boolean;
|
|
4072
4075
|
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4073
4076
|
contributorId: string;
|
|
4077
|
+
deletionDeadline?: string;
|
|
4074
4078
|
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
|
|
4075
4079
|
description?: string;
|
|
4076
4080
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
@@ -4088,6 +4092,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4088
4092
|
};
|
|
4089
4093
|
functional: boolean;
|
|
4090
4094
|
id: string;
|
|
4095
|
+
isDeletionScheduled?: boolean;
|
|
4091
4096
|
/**
|
|
4092
4097
|
* This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
|
|
4093
4098
|
*/
|
|
@@ -4190,9 +4195,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4190
4195
|
blocked: boolean;
|
|
4191
4196
|
context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
4192
4197
|
contributorId: string;
|
|
4198
|
+
deletionDeadline?: string;
|
|
4193
4199
|
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
|
|
4194
4200
|
/**
|
|
4195
|
-
* A short description of the
|
|
4201
|
+
* A short description of the capabilities of the Extension.
|
|
4196
4202
|
*/
|
|
4197
4203
|
description?: string;
|
|
4198
4204
|
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
@@ -4206,6 +4212,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4206
4212
|
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
4207
4213
|
};
|
|
4208
4214
|
id: string;
|
|
4215
|
+
isDeletionScheduled?: boolean;
|
|
4209
4216
|
/**
|
|
4210
4217
|
* This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
|
|
4211
4218
|
*/
|
|
@@ -11855,7 +11862,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11855
11862
|
}
|
|
11856
11863
|
namespace $412 {
|
|
11857
11864
|
namespace Content {
|
|
11858
|
-
|
|
11865
|
+
interface ApplicationJson {
|
|
11866
|
+
[k: string]: unknown;
|
|
11867
|
+
}
|
|
11859
11868
|
}
|
|
11860
11869
|
}
|
|
11861
11870
|
namespace $429 {
|
|
@@ -27775,42 +27784,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27775
27784
|
}
|
|
27776
27785
|
}
|
|
27777
27786
|
}
|
|
27778
|
-
namespace V2SignupTokenCheck { }
|
|
27779
|
-
namespace V2UsersSelfCredentialsToken {
|
|
27780
|
-
namespace Post {
|
|
27781
|
-
namespace Parameters {
|
|
27782
|
-
type Path = {};
|
|
27783
|
-
interface RequestBody {
|
|
27784
|
-
}
|
|
27785
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27786
|
-
type Query = {};
|
|
27787
|
-
}
|
|
27788
|
-
namespace Responses {
|
|
27789
|
-
namespace $200 {
|
|
27790
|
-
namespace Content {
|
|
27791
|
-
interface ApplicationJson {
|
|
27792
|
-
id: string;
|
|
27793
|
-
publicToken: string;
|
|
27794
|
-
}
|
|
27795
|
-
}
|
|
27796
|
-
}
|
|
27797
|
-
namespace $429 {
|
|
27798
|
-
namespace Content {
|
|
27799
|
-
interface ApplicationJson {
|
|
27800
|
-
[k: string]: unknown;
|
|
27801
|
-
}
|
|
27802
|
-
}
|
|
27803
|
-
}
|
|
27804
|
-
namespace Default {
|
|
27805
|
-
namespace Content {
|
|
27806
|
-
interface ApplicationJson {
|
|
27807
|
-
[k: string]: unknown;
|
|
27808
|
-
}
|
|
27809
|
-
}
|
|
27810
|
-
}
|
|
27811
|
-
}
|
|
27812
|
-
}
|
|
27813
|
-
}
|
|
27814
27787
|
namespace V2SignupMfaConfirm { }
|
|
27815
27788
|
namespace V2UsersSelfCredentialsMfa {
|
|
27816
27789
|
namespace Get {
|
|
@@ -29880,5 +29853,41 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29880
29853
|
}
|
|
29881
29854
|
}
|
|
29882
29855
|
}
|
|
29856
|
+
namespace V2SignupTokenCheck { }
|
|
29857
|
+
namespace V2UsersSelfCredentialsToken {
|
|
29858
|
+
namespace Post {
|
|
29859
|
+
namespace Parameters {
|
|
29860
|
+
type Path = {};
|
|
29861
|
+
interface RequestBody {
|
|
29862
|
+
}
|
|
29863
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29864
|
+
type Query = {};
|
|
29865
|
+
}
|
|
29866
|
+
namespace Responses {
|
|
29867
|
+
namespace $200 {
|
|
29868
|
+
namespace Content {
|
|
29869
|
+
interface ApplicationJson {
|
|
29870
|
+
id: string;
|
|
29871
|
+
publicToken: string;
|
|
29872
|
+
}
|
|
29873
|
+
}
|
|
29874
|
+
}
|
|
29875
|
+
namespace $429 {
|
|
29876
|
+
namespace Content {
|
|
29877
|
+
interface ApplicationJson {
|
|
29878
|
+
[k: string]: unknown;
|
|
29879
|
+
}
|
|
29880
|
+
}
|
|
29881
|
+
}
|
|
29882
|
+
namespace Default {
|
|
29883
|
+
namespace Content {
|
|
29884
|
+
interface ApplicationJson {
|
|
29885
|
+
[k: string]: unknown;
|
|
29886
|
+
}
|
|
29887
|
+
}
|
|
29888
|
+
}
|
|
29889
|
+
}
|
|
29890
|
+
}
|
|
29891
|
+
}
|
|
29883
29892
|
}
|
|
29884
29893
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.361.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.362.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.362.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.362.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": "93dc29987351e358a2a3a8d595e0bcc8159c1694"
|
|
84
84
|
}
|