@mittwald/api-client 4.236.0 → 4.237.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 +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +1 -0
- package/dist/types/generated/v2/client.d.ts +46 -0
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +43 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -231,6 +231,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
231
231
|
contributorResetContributorAvatar: this.requestFunctionFactory(descriptors.contributorResetContributorAvatar),
|
|
232
232
|
/** Start the verification process of a contributor. */
|
|
233
233
|
contributorRequestVerification: this.requestFunctionFactory(descriptors.contributorRequestVerification),
|
|
234
|
+
/** Cancel the verification-process of a contributor. */
|
|
235
|
+
contributorCancelVerification: this.requestFunctionFactory(descriptors.contributorCancelVerification),
|
|
234
236
|
/** Rotate the secret for an extension instance. */
|
|
235
237
|
contributorRotateSecretForExtensionInstance: this.requestFunctionFactory(descriptors.contributorRotateSecretForExtensionInstance),
|
|
236
238
|
/** Authenticate your external application using the extensionInstanceSecret. */
|
|
@@ -544,6 +544,12 @@ export const contributorRequestVerification = {
|
|
|
544
544
|
method: "POST",
|
|
545
545
|
operationId: "contributor-request-verification",
|
|
546
546
|
};
|
|
547
|
+
/** Cancel the verification-process of a contributor. */
|
|
548
|
+
export const contributorCancelVerification = {
|
|
549
|
+
path: "/v2/contributors/{contributorId}/verification-process",
|
|
550
|
+
method: "DELETE",
|
|
551
|
+
operationId: "contributor-cancel-verification",
|
|
552
|
+
};
|
|
547
553
|
/** Rotate the secret for an extension instance. */
|
|
548
554
|
export const contributorRotateSecretForExtensionInstance = {
|
|
549
555
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.236.0';
|
|
@@ -26,6 +26,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
26
26
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
27
27
|
createdAt: string;
|
|
28
28
|
customDocumentRoot?: string | undefined;
|
|
29
|
+
deletionRequested?: boolean | undefined;
|
|
29
30
|
description: string;
|
|
30
31
|
disabled: boolean;
|
|
31
32
|
id: string;
|
|
@@ -116,6 +116,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
116
116
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
117
117
|
createdAt: string;
|
|
118
118
|
customDocumentRoot?: string | undefined;
|
|
119
|
+
deletionRequested?: boolean | undefined;
|
|
119
120
|
description: string;
|
|
120
121
|
disabled: boolean;
|
|
121
122
|
id: string;
|
|
@@ -155,6 +156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
155
156
|
appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
156
157
|
createdAt: string;
|
|
157
158
|
customDocumentRoot?: string | undefined;
|
|
159
|
+
deletionRequested?: boolean | undefined;
|
|
158
160
|
description: string;
|
|
159
161
|
disabled: boolean;
|
|
160
162
|
id: string;
|
|
@@ -7250,6 +7252,50 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7250
7252
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7251
7253
|
[x: string]: unknown;
|
|
7252
7254
|
}, 429, "application/json">>>;
|
|
7255
|
+
/** Cancel the verification-process of a contributor. */
|
|
7256
|
+
contributorCancelVerification: (request: {
|
|
7257
|
+
contributorId: string;
|
|
7258
|
+
headers?: {
|
|
7259
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7260
|
+
"x-access-token"?: string | undefined;
|
|
7261
|
+
} | undefined;
|
|
7262
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7263
|
+
headers?: Partial<{
|
|
7264
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7265
|
+
}>;
|
|
7266
|
+
} & {
|
|
7267
|
+
pathParameters: {
|
|
7268
|
+
contributorId: string;
|
|
7269
|
+
};
|
|
7270
|
+
} & {
|
|
7271
|
+
headers: {
|
|
7272
|
+
"x-access-token"?: string | undefined;
|
|
7273
|
+
} & Partial<{
|
|
7274
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7275
|
+
}>;
|
|
7276
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7277
|
+
[x: string]: unknown;
|
|
7278
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7279
|
+
[x: string]: unknown;
|
|
7280
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7281
|
+
headers?: Partial<{
|
|
7282
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7283
|
+
}>;
|
|
7284
|
+
} & {
|
|
7285
|
+
pathParameters: {
|
|
7286
|
+
contributorId: string;
|
|
7287
|
+
};
|
|
7288
|
+
} & {
|
|
7289
|
+
headers: {
|
|
7290
|
+
"x-access-token"?: string | undefined;
|
|
7291
|
+
} & Partial<{
|
|
7292
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7293
|
+
}>;
|
|
7294
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7295
|
+
[x: string]: unknown;
|
|
7296
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7297
|
+
[x: string]: unknown;
|
|
7298
|
+
}, 429, "application/json">>>;
|
|
7253
7299
|
/** Rotate the secret for an extension instance. */
|
|
7254
7300
|
contributorRotateSecretForExtensionInstance: (request: {
|
|
7255
7301
|
contributorId: string;
|
|
@@ -185,6 +185,8 @@ export declare const contributorRequestDeviatingContributorAvatarUpload: OpenAPI
|
|
|
185
185
|
export declare const contributorResetContributorAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
186
186
|
/** Start the verification process of a contributor. */
|
|
187
187
|
export declare const contributorRequestVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
188
|
+
/** Cancel the verification-process of a contributor. */
|
|
189
|
+
export declare const contributorCancelVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
188
190
|
/** Rotate the secret for an extension instance. */
|
|
189
191
|
export declare const contributorRotateSecretForExtensionInstance: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
190
192
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -366,6 +366,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
366
366
|
type RequestData = InferredRequestData<typeof descriptors.contributorRequestVerification>;
|
|
367
367
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRequestVerification, TStatus>;
|
|
368
368
|
}
|
|
369
|
+
namespace ContributorCancelVerification {
|
|
370
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorCancelVerification>;
|
|
371
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorCancelVerification, TStatus>;
|
|
372
|
+
}
|
|
369
373
|
namespace ContributorRotateSecretForExtensionInstance {
|
|
370
374
|
type RequestData = InferredRequestData<typeof descriptors.contributorRotateSecretForExtensionInstance>;
|
|
371
375
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRotateSecretForExtensionInstance, TStatus>;
|
|
@@ -1780,6 +1784,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1780
1784
|
appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
1781
1785
|
createdAt: string;
|
|
1782
1786
|
customDocumentRoot?: string;
|
|
1787
|
+
deletionRequested?: boolean;
|
|
1783
1788
|
description: string;
|
|
1784
1789
|
disabled: boolean;
|
|
1785
1790
|
id: string;
|
|
@@ -3427,6 +3432,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3427
3432
|
*/
|
|
3428
3433
|
type MarketplaceMonthlyPricePlanStrategy = {
|
|
3429
3434
|
description?: string;
|
|
3435
|
+
isBookingStopped: boolean;
|
|
3430
3436
|
key: string;
|
|
3431
3437
|
name?: string;
|
|
3432
3438
|
/**
|
|
@@ -10205,6 +10211,43 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10205
10211
|
}
|
|
10206
10212
|
}
|
|
10207
10213
|
}
|
|
10214
|
+
namespace Delete {
|
|
10215
|
+
namespace Parameters {
|
|
10216
|
+
type Path = {
|
|
10217
|
+
contributorId: string;
|
|
10218
|
+
};
|
|
10219
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10220
|
+
type Query = {};
|
|
10221
|
+
}
|
|
10222
|
+
namespace Responses {
|
|
10223
|
+
namespace $204 {
|
|
10224
|
+
namespace Content {
|
|
10225
|
+
type Empty = unknown;
|
|
10226
|
+
}
|
|
10227
|
+
}
|
|
10228
|
+
namespace $400 {
|
|
10229
|
+
namespace Content {
|
|
10230
|
+
interface ApplicationJson {
|
|
10231
|
+
[k: string]: unknown;
|
|
10232
|
+
}
|
|
10233
|
+
}
|
|
10234
|
+
}
|
|
10235
|
+
namespace $429 {
|
|
10236
|
+
namespace Content {
|
|
10237
|
+
interface ApplicationJson {
|
|
10238
|
+
[k: string]: unknown;
|
|
10239
|
+
}
|
|
10240
|
+
}
|
|
10241
|
+
}
|
|
10242
|
+
namespace Default {
|
|
10243
|
+
namespace Content {
|
|
10244
|
+
interface ApplicationJson {
|
|
10245
|
+
[k: string]: unknown;
|
|
10246
|
+
}
|
|
10247
|
+
}
|
|
10248
|
+
}
|
|
10249
|
+
}
|
|
10250
|
+
}
|
|
10208
10251
|
}
|
|
10209
10252
|
namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret {
|
|
10210
10253
|
namespace Put {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.236.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.237.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",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "9584ac15ebf21dcf30c0c648c707c10a827dc623"
|
|
84
84
|
}
|