@mittwald/api-client 4.229.0 → 4.230.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 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- 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 +47 -44
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +44 -43
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -227,6 +227,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
227
227
|
contributorRequestDeviatingContributorAvatarUpload: this.requestFunctionFactory(descriptors.contributorRequestDeviatingContributorAvatarUpload),
|
|
228
228
|
/** Delete deviating contributor avatar und return to the inherited customer avatar. */
|
|
229
229
|
contributorResetContributorAvatar: this.requestFunctionFactory(descriptors.contributorResetContributorAvatar),
|
|
230
|
+
/** Start the verification process of a contributor. */
|
|
231
|
+
contributorRequestVerification: this.requestFunctionFactory(descriptors.contributorRequestVerification),
|
|
230
232
|
/** Rotate the secret for an extension instance. */
|
|
231
233
|
contributorRotateSecretForExtensionInstance: this.requestFunctionFactory(descriptors.contributorRotateSecretForExtensionInstance),
|
|
232
234
|
/** Authenticate your external application using the extensionInstanceSecret. */
|
|
@@ -317,8 +319,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
317
319
|
customerGetPaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerGetPaymentMethod),
|
|
318
320
|
/** Get the link to update the marketplace payment method */
|
|
319
321
|
customerUpdatePaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerUpdatePaymentMethod),
|
|
320
|
-
/** Start the verification process of a contributor. */
|
|
321
|
-
contributorRequestVerification: this.requestFunctionFactory(descriptors.contributorRequestVerification),
|
|
322
322
|
};
|
|
323
323
|
/** The conversation API allows you to manage your support conversations. */
|
|
324
324
|
conversation = {
|
|
@@ -538,6 +538,12 @@ export const contributorResetContributorAvatar = {
|
|
|
538
538
|
method: "DELETE",
|
|
539
539
|
operationId: "contributor-reset-contributor-avatar",
|
|
540
540
|
};
|
|
541
|
+
/** Start the verification process of a contributor. */
|
|
542
|
+
export const contributorRequestVerification = {
|
|
543
|
+
path: "/v2/contributors/{contributorId}/verification-process",
|
|
544
|
+
method: "POST",
|
|
545
|
+
operationId: "contributor-request-verification",
|
|
546
|
+
};
|
|
541
547
|
/** Rotate the secret for an extension instance. */
|
|
542
548
|
export const contributorRotateSecretForExtensionInstance = {
|
|
543
549
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
|
@@ -2542,9 +2548,3 @@ export const verificationVerifyCompany = {
|
|
|
2542
2548
|
method: "POST",
|
|
2543
2549
|
operationId: "verification-verify-company",
|
|
2544
2550
|
};
|
|
2545
|
-
/** Start the verification process of a contributor. */
|
|
2546
|
-
export const contributorRequestVerification = {
|
|
2547
|
-
path: "/v2/contributors/{contributorId}/verification-process",
|
|
2548
|
-
method: "POST",
|
|
2549
|
-
operationId: "contributor-request-verification",
|
|
2550
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.229.0';
|
|
@@ -1893,6 +1893,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1893
1893
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1894
1894
|
projectId?: string | undefined;
|
|
1895
1895
|
certificateId?: string | undefined;
|
|
1896
|
+
hostnameSubstring?: string | undefined;
|
|
1896
1897
|
limit?: number | undefined;
|
|
1897
1898
|
skip?: number | undefined;
|
|
1898
1899
|
page?: number | undefined;
|
|
@@ -7120,6 +7120,50 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7120
7120
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7121
7121
|
[x: string]: unknown;
|
|
7122
7122
|
}, 429, "application/json">>>;
|
|
7123
|
+
/** Start the verification process of a contributor. */
|
|
7124
|
+
contributorRequestVerification: (request: {
|
|
7125
|
+
contributorId: string;
|
|
7126
|
+
headers?: {
|
|
7127
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7128
|
+
"x-access-token"?: string | undefined;
|
|
7129
|
+
} | undefined;
|
|
7130
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7131
|
+
headers?: Partial<{
|
|
7132
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7133
|
+
}>;
|
|
7134
|
+
} & {
|
|
7135
|
+
pathParameters: {
|
|
7136
|
+
contributorId: string;
|
|
7137
|
+
};
|
|
7138
|
+
} & {
|
|
7139
|
+
headers: {
|
|
7140
|
+
"x-access-token"?: string | undefined;
|
|
7141
|
+
} & Partial<{
|
|
7142
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7143
|
+
}>;
|
|
7144
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7145
|
+
[x: string]: unknown;
|
|
7146
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7147
|
+
[x: string]: unknown;
|
|
7148
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7149
|
+
headers?: Partial<{
|
|
7150
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7151
|
+
}>;
|
|
7152
|
+
} & {
|
|
7153
|
+
pathParameters: {
|
|
7154
|
+
contributorId: string;
|
|
7155
|
+
};
|
|
7156
|
+
} & {
|
|
7157
|
+
headers: {
|
|
7158
|
+
"x-access-token"?: string | undefined;
|
|
7159
|
+
} & Partial<{
|
|
7160
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7161
|
+
}>;
|
|
7162
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
7163
|
+
[x: string]: unknown;
|
|
7164
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7165
|
+
[x: string]: unknown;
|
|
7166
|
+
}, 429, "application/json">>>;
|
|
7123
7167
|
/** Rotate the secret for an extension instance. */
|
|
7124
7168
|
contributorRotateSecretForExtensionInstance: (request: {
|
|
7125
7169
|
contributorId: string;
|
|
@@ -10259,50 +10303,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10259
10303
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10260
10304
|
[x: string]: unknown;
|
|
10261
10305
|
}, 429, "application/json">>>;
|
|
10262
|
-
/** Start the verification process of a contributor. */
|
|
10263
|
-
contributorRequestVerification: (request: {
|
|
10264
|
-
contributorId: string;
|
|
10265
|
-
headers?: {
|
|
10266
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
10267
|
-
"x-access-token"?: string | undefined;
|
|
10268
|
-
} | undefined;
|
|
10269
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
10270
|
-
headers?: Partial<{
|
|
10271
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10272
|
-
}>;
|
|
10273
|
-
} & {
|
|
10274
|
-
pathParameters: {
|
|
10275
|
-
contributorId: string;
|
|
10276
|
-
};
|
|
10277
|
-
} & {
|
|
10278
|
-
headers: {
|
|
10279
|
-
"x-access-token"?: string | undefined;
|
|
10280
|
-
} & Partial<{
|
|
10281
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10282
|
-
}>;
|
|
10283
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
10284
|
-
[x: string]: unknown;
|
|
10285
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10286
|
-
[x: string]: unknown;
|
|
10287
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
10288
|
-
headers?: Partial<{
|
|
10289
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10290
|
-
}>;
|
|
10291
|
-
} & {
|
|
10292
|
-
pathParameters: {
|
|
10293
|
-
contributorId: string;
|
|
10294
|
-
};
|
|
10295
|
-
} & {
|
|
10296
|
-
headers: {
|
|
10297
|
-
"x-access-token"?: string | undefined;
|
|
10298
|
-
} & Partial<{
|
|
10299
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10300
|
-
}>;
|
|
10301
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
10302
|
-
[x: string]: unknown;
|
|
10303
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10304
|
-
[x: string]: unknown;
|
|
10305
|
-
}, 429, "application/json">>>;
|
|
10306
10306
|
};
|
|
10307
10307
|
/** The conversation API allows you to manage your support conversations. */
|
|
10308
10308
|
readonly conversation: {
|
|
@@ -16346,6 +16346,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16346
16346
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16347
16347
|
projectId?: string | undefined;
|
|
16348
16348
|
certificateId?: string | undefined;
|
|
16349
|
+
hostnameSubstring?: string | undefined;
|
|
16349
16350
|
limit?: number | undefined;
|
|
16350
16351
|
skip?: number | undefined;
|
|
16351
16352
|
page?: number | undefined;
|
|
@@ -16358,6 +16359,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16358
16359
|
queryParameters: {
|
|
16359
16360
|
projectId?: string | undefined;
|
|
16360
16361
|
certificateId?: string | undefined;
|
|
16362
|
+
hostnameSubstring?: string | undefined;
|
|
16361
16363
|
limit?: number | undefined;
|
|
16362
16364
|
skip?: number | undefined;
|
|
16363
16365
|
page?: number | undefined;
|
|
@@ -16382,6 +16384,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16382
16384
|
queryParameters: {
|
|
16383
16385
|
projectId?: string | undefined;
|
|
16384
16386
|
certificateId?: string | undefined;
|
|
16387
|
+
hostnameSubstring?: string | undefined;
|
|
16385
16388
|
limit?: number | undefined;
|
|
16386
16389
|
skip?: number | undefined;
|
|
16387
16390
|
page?: number | undefined;
|
|
@@ -183,6 +183,8 @@ export declare const contributorReceiptGetFileAccessToken: OpenAPIOperation<Requ
|
|
|
183
183
|
export declare const contributorRequestDeviatingContributorAvatarUpload: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
184
184
|
/** Delete deviating contributor avatar und return to the inherited customer avatar. */
|
|
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
|
+
/** Start the verification process of a contributor. */
|
|
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">>;
|
|
186
188
|
/** Rotate the secret for an extension instance. */
|
|
187
189
|
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">>;
|
|
188
190
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -851,5 +853,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
851
853
|
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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
852
854
|
/** Check if a company exists. */
|
|
853
855
|
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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
854
|
-
/** Start the verification process of a contributor. */
|
|
855
|
-
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">>;
|
|
@@ -362,6 +362,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
362
362
|
type RequestData = InferredRequestData<typeof descriptors.contributorResetContributorAvatar>;
|
|
363
363
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorResetContributorAvatar, TStatus>;
|
|
364
364
|
}
|
|
365
|
+
namespace ContributorRequestVerification {
|
|
366
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorRequestVerification>;
|
|
367
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRequestVerification, TStatus>;
|
|
368
|
+
}
|
|
365
369
|
namespace ContributorRotateSecretForExtensionInstance {
|
|
366
370
|
type RequestData = InferredRequestData<typeof descriptors.contributorRotateSecretForExtensionInstance>;
|
|
367
371
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRotateSecretForExtensionInstance, TStatus>;
|
|
@@ -1698,10 +1702,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1698
1702
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1699
1703
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1700
1704
|
}
|
|
1701
|
-
namespace ContributorRequestVerification {
|
|
1702
|
-
type RequestData = InferredRequestData<typeof descriptors.contributorRequestVerification>;
|
|
1703
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRequestVerification, TStatus>;
|
|
1704
|
-
}
|
|
1705
1705
|
}
|
|
1706
1706
|
namespace Components {
|
|
1707
1707
|
namespace Schemas {
|
|
@@ -10131,6 +10131,45 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10131
10131
|
}
|
|
10132
10132
|
}
|
|
10133
10133
|
}
|
|
10134
|
+
namespace V2ContributorsContributorIdVerificationProcess {
|
|
10135
|
+
namespace Post {
|
|
10136
|
+
namespace Parameters {
|
|
10137
|
+
type Path = {
|
|
10138
|
+
contributorId: string;
|
|
10139
|
+
};
|
|
10140
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10141
|
+
type Query = {};
|
|
10142
|
+
}
|
|
10143
|
+
namespace Responses {
|
|
10144
|
+
namespace $204 {
|
|
10145
|
+
namespace Content {
|
|
10146
|
+
type Empty = unknown;
|
|
10147
|
+
}
|
|
10148
|
+
}
|
|
10149
|
+
namespace $400 {
|
|
10150
|
+
namespace Content {
|
|
10151
|
+
interface ApplicationJson {
|
|
10152
|
+
[k: string]: unknown;
|
|
10153
|
+
}
|
|
10154
|
+
}
|
|
10155
|
+
}
|
|
10156
|
+
namespace $429 {
|
|
10157
|
+
namespace Content {
|
|
10158
|
+
interface ApplicationJson {
|
|
10159
|
+
[k: string]: unknown;
|
|
10160
|
+
}
|
|
10161
|
+
}
|
|
10162
|
+
}
|
|
10163
|
+
namespace Default {
|
|
10164
|
+
namespace Content {
|
|
10165
|
+
interface ApplicationJson {
|
|
10166
|
+
[k: string]: unknown;
|
|
10167
|
+
}
|
|
10168
|
+
}
|
|
10169
|
+
}
|
|
10170
|
+
}
|
|
10171
|
+
}
|
|
10172
|
+
}
|
|
10134
10173
|
namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret {
|
|
10135
10174
|
namespace Put {
|
|
10136
10175
|
namespace Parameters {
|
|
@@ -17872,6 +17911,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17872
17911
|
type Query = {
|
|
17873
17912
|
projectId?: string;
|
|
17874
17913
|
certificateId?: string;
|
|
17914
|
+
hostnameSubstring?: string;
|
|
17875
17915
|
limit?: number;
|
|
17876
17916
|
skip?: number;
|
|
17877
17917
|
page?: number;
|
|
@@ -26923,44 +26963,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26923
26963
|
}
|
|
26924
26964
|
}
|
|
26925
26965
|
}
|
|
26926
|
-
namespace V2ContributorsContributorIdVerificationProcess {
|
|
26927
|
-
namespace Post {
|
|
26928
|
-
namespace Parameters {
|
|
26929
|
-
type Path = {
|
|
26930
|
-
contributorId: string;
|
|
26931
|
-
};
|
|
26932
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26933
|
-
type Query = {};
|
|
26934
|
-
}
|
|
26935
|
-
namespace Responses {
|
|
26936
|
-
namespace $204 {
|
|
26937
|
-
namespace Content {
|
|
26938
|
-
type Empty = unknown;
|
|
26939
|
-
}
|
|
26940
|
-
}
|
|
26941
|
-
namespace $400 {
|
|
26942
|
-
namespace Content {
|
|
26943
|
-
interface ApplicationJson {
|
|
26944
|
-
[k: string]: unknown;
|
|
26945
|
-
}
|
|
26946
|
-
}
|
|
26947
|
-
}
|
|
26948
|
-
namespace $429 {
|
|
26949
|
-
namespace Content {
|
|
26950
|
-
interface ApplicationJson {
|
|
26951
|
-
[k: string]: unknown;
|
|
26952
|
-
}
|
|
26953
|
-
}
|
|
26954
|
-
}
|
|
26955
|
-
namespace Default {
|
|
26956
|
-
namespace Content {
|
|
26957
|
-
interface ApplicationJson {
|
|
26958
|
-
[k: string]: unknown;
|
|
26959
|
-
}
|
|
26960
|
-
}
|
|
26961
|
-
}
|
|
26962
|
-
}
|
|
26963
|
-
}
|
|
26964
|
-
}
|
|
26965
26966
|
}
|
|
26966
26967
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.229.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.230.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": "d50c01866bb27e7d9f697a1b6efdd955d8c8130d"
|
|
84
84
|
}
|