@mittwald/api-client 0.0.0-development-6c3be68-20250827 → 0.0.0-development-dbfaa98-20250828
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 +5 -0
- package/dist/types/generated/v2/client.d.ts +116 -2
- package/dist/types/generated/v2/descriptors.d.ts +3 -1
- package/dist/types/generated/v2/types.d.ts +78 -12
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -311,6 +311,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
311
311
|
customerGetPaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerGetPaymentMethod),
|
|
312
312
|
/** Get the link to update the marketplace payment method */
|
|
313
313
|
customerUpdatePaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerUpdatePaymentMethod),
|
|
314
|
+
/** Express interest to be a contributor. */
|
|
315
|
+
contributorExpressInterestToContribute: this.requestFunctionFactory(descriptors.contributorExpressInterestToContribute),
|
|
314
316
|
};
|
|
315
317
|
/** The conversation API allows you to manage your support conversations. */
|
|
316
318
|
conversation = {
|
|
@@ -2536,3 +2536,9 @@ export const verificationVerifyCompany = {
|
|
|
2536
2536
|
method: "POST",
|
|
2537
2537
|
operationId: "verification-verify-company",
|
|
2538
2538
|
};
|
|
2539
|
+
/** Express interest to be a contributor. */
|
|
2540
|
+
export const contributorExpressInterestToContribute = {
|
|
2541
|
+
path: "/v2/customers/{customerId}/contributor",
|
|
2542
|
+
method: "POST",
|
|
2543
|
+
operationId: "contributor-express-interest-to-contribute",
|
|
2544
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '
|
|
1
|
+
export const MittwaldAPIClientVersion = '0.0.0-development-6c3be68-20250827';
|
|
@@ -462,6 +462,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
462
462
|
getServiceLogs: (conf: {
|
|
463
463
|
stackId: string;
|
|
464
464
|
serviceId: string;
|
|
465
|
+
queryParameters?: {
|
|
466
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
467
|
+
tail?: number | undefined;
|
|
468
|
+
} | undefined;
|
|
465
469
|
headers?: {
|
|
466
470
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
467
471
|
"x-access-token"?: string | undefined;
|
|
@@ -2298,6 +2302,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2298
2302
|
forwardAddress?: boolean | undefined;
|
|
2299
2303
|
catchAll?: boolean | undefined;
|
|
2300
2304
|
autoResponder?: boolean | undefined;
|
|
2305
|
+
mailArchive?: boolean | undefined;
|
|
2301
2306
|
limit?: number | undefined;
|
|
2302
2307
|
skip?: number | undefined;
|
|
2303
2308
|
page?: number | undefined;
|
|
@@ -3400,6 +3400,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3400
3400
|
getServiceLogs: (request: {
|
|
3401
3401
|
stackId: string;
|
|
3402
3402
|
serviceId: string;
|
|
3403
|
+
queryParameters?: {
|
|
3404
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3405
|
+
tail?: number | undefined;
|
|
3406
|
+
} | undefined;
|
|
3403
3407
|
headers?: {
|
|
3404
3408
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3405
3409
|
"x-access-token"?: string | undefined;
|
|
@@ -3413,6 +3417,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3413
3417
|
stackId: string;
|
|
3414
3418
|
serviceId: string;
|
|
3415
3419
|
};
|
|
3420
|
+
} & {
|
|
3421
|
+
queryParameters: {
|
|
3422
|
+
tail?: number | undefined;
|
|
3423
|
+
} & Partial<{
|
|
3424
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3425
|
+
}>;
|
|
3416
3426
|
} & {
|
|
3417
3427
|
headers: {
|
|
3418
3428
|
"x-access-token"?: string | undefined;
|
|
@@ -3438,6 +3448,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3438
3448
|
stackId: string;
|
|
3439
3449
|
serviceId: string;
|
|
3440
3450
|
};
|
|
3451
|
+
} & {
|
|
3452
|
+
queryParameters: {
|
|
3453
|
+
tail?: number | undefined;
|
|
3454
|
+
} & Partial<{
|
|
3455
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3456
|
+
}>;
|
|
3441
3457
|
} & {
|
|
3442
3458
|
headers: {
|
|
3443
3459
|
"x-access-token"?: string | undefined;
|
|
@@ -9901,6 +9917,101 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9901
9917
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9902
9918
|
[x: string]: unknown;
|
|
9903
9919
|
}, 429, "application/json">>>;
|
|
9920
|
+
/** Express interest to be a contributor. */
|
|
9921
|
+
contributorExpressInterestToContribute: (request: {
|
|
9922
|
+
customerId: string;
|
|
9923
|
+
data?: {
|
|
9924
|
+
deviatingContactPersonUserId?: string | undefined;
|
|
9925
|
+
deviatingContractOwner?: {
|
|
9926
|
+
salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
|
|
9927
|
+
address: {
|
|
9928
|
+
street: string;
|
|
9929
|
+
houseNumber: string;
|
|
9930
|
+
city: string;
|
|
9931
|
+
zip: string;
|
|
9932
|
+
countryCode: string;
|
|
9933
|
+
addressPrefix?: string | undefined;
|
|
9934
|
+
};
|
|
9935
|
+
firstName?: string | undefined;
|
|
9936
|
+
lastName?: string | undefined;
|
|
9937
|
+
title?: string | undefined;
|
|
9938
|
+
company?: string | undefined;
|
|
9939
|
+
emailAddress?: string | undefined;
|
|
9940
|
+
phoneNumbers?: string[] | undefined;
|
|
9941
|
+
useFormalTerm?: boolean | undefined;
|
|
9942
|
+
} | undefined;
|
|
9943
|
+
deviatingName?: string | undefined;
|
|
9944
|
+
deviatingSupportInformation?: {
|
|
9945
|
+
email: string;
|
|
9946
|
+
phone?: string | undefined;
|
|
9947
|
+
} | undefined;
|
|
9948
|
+
imprint?: {
|
|
9949
|
+
text: string;
|
|
9950
|
+
} | {
|
|
9951
|
+
url: string;
|
|
9952
|
+
} | undefined;
|
|
9953
|
+
} | undefined;
|
|
9954
|
+
headers?: {
|
|
9955
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
9956
|
+
"x-access-token"?: string | undefined;
|
|
9957
|
+
} | undefined;
|
|
9958
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9959
|
+
data: {
|
|
9960
|
+
deviatingContactPersonUserId?: string | undefined;
|
|
9961
|
+
deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
|
|
9962
|
+
deviatingName?: string | undefined;
|
|
9963
|
+
deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
9964
|
+
imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
|
|
9965
|
+
};
|
|
9966
|
+
} & {
|
|
9967
|
+
pathParameters: {
|
|
9968
|
+
customerId: string;
|
|
9969
|
+
};
|
|
9970
|
+
} & {
|
|
9971
|
+
headers?: Partial<{
|
|
9972
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9973
|
+
}>;
|
|
9974
|
+
} & {
|
|
9975
|
+
headers: {
|
|
9976
|
+
"x-access-token"?: string | undefined;
|
|
9977
|
+
} & Partial<{
|
|
9978
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
9979
|
+
}>;
|
|
9980
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
9981
|
+
id: string;
|
|
9982
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9983
|
+
[x: string]: unknown;
|
|
9984
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9985
|
+
[x: string]: unknown;
|
|
9986
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9987
|
+
data: {
|
|
9988
|
+
deviatingContactPersonUserId?: string | undefined;
|
|
9989
|
+
deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
|
|
9990
|
+
deviatingName?: string | undefined;
|
|
9991
|
+
deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
9992
|
+
imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
|
|
9993
|
+
};
|
|
9994
|
+
} & {
|
|
9995
|
+
pathParameters: {
|
|
9996
|
+
customerId: string;
|
|
9997
|
+
};
|
|
9998
|
+
} & {
|
|
9999
|
+
headers?: Partial<{
|
|
10000
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10001
|
+
}>;
|
|
10002
|
+
} & {
|
|
10003
|
+
headers: {
|
|
10004
|
+
"x-access-token"?: string | undefined;
|
|
10005
|
+
} & Partial<{
|
|
10006
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10007
|
+
}>;
|
|
10008
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
10009
|
+
id: string;
|
|
10010
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10011
|
+
[x: string]: unknown;
|
|
10012
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10013
|
+
[x: string]: unknown;
|
|
10014
|
+
}, 429, "application/json">>>;
|
|
9904
10015
|
};
|
|
9905
10016
|
/** The conversation API allows you to manage your support conversations. */
|
|
9906
10017
|
readonly conversation: {
|
|
@@ -17479,6 +17590,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17479
17590
|
forwardAddress?: boolean | undefined;
|
|
17480
17591
|
catchAll?: boolean | undefined;
|
|
17481
17592
|
autoResponder?: boolean | undefined;
|
|
17593
|
+
mailArchive?: boolean | undefined;
|
|
17482
17594
|
limit?: number | undefined;
|
|
17483
17595
|
skip?: number | undefined;
|
|
17484
17596
|
page?: number | undefined;
|
|
@@ -17503,6 +17615,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17503
17615
|
forwardAddress?: boolean | undefined;
|
|
17504
17616
|
catchAll?: boolean | undefined;
|
|
17505
17617
|
autoResponder?: boolean | undefined;
|
|
17618
|
+
mailArchive?: boolean | undefined;
|
|
17506
17619
|
limit?: number | undefined;
|
|
17507
17620
|
skip?: number | undefined;
|
|
17508
17621
|
page?: number | undefined;
|
|
@@ -17543,6 +17656,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
17543
17656
|
forwardAddress?: boolean | undefined;
|
|
17544
17657
|
catchAll?: boolean | undefined;
|
|
17545
17658
|
autoResponder?: boolean | undefined;
|
|
17659
|
+
mailArchive?: boolean | undefined;
|
|
17546
17660
|
limit?: number | undefined;
|
|
17547
17661
|
skip?: number | undefined;
|
|
17548
17662
|
page?: number | undefined;
|
|
@@ -26242,7 +26356,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26242
26356
|
} & Partial<{
|
|
26243
26357
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26244
26358
|
}>;
|
|
26245
|
-
}, import("@mittwald/api-client-commons").Response<string, 200, "
|
|
26359
|
+
}, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<{
|
|
26246
26360
|
[x: string]: unknown;
|
|
26247
26361
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26248
26362
|
[x: string]: unknown;
|
|
@@ -26273,7 +26387,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
26273
26387
|
} & Partial<{
|
|
26274
26388
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
26275
26389
|
}>;
|
|
26276
|
-
}, import("@mittwald/api-client-commons").Response<string, 200, "
|
|
26390
|
+
}, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<{
|
|
26277
26391
|
[x: string]: unknown;
|
|
26278
26392
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
26279
26393
|
[x: string]: unknown;
|
|
@@ -656,7 +656,7 @@ export declare const projectFileSystemGetDirectories: OpenAPIOperation<RequestTy
|
|
|
656
656
|
/** Get a Project directory filesystem usage. */
|
|
657
657
|
export declare const projectFileSystemGetDiskUsage: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemDiskUsage.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
658
658
|
/** Get a Project file's content. */
|
|
659
|
-
export declare const projectFileSystemGetFileContent: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$200.Content.
|
|
659
|
+
export declare const projectFileSystemGetFileContent: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdFilesystemFileContent.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
660
660
|
/** Get a Project's file/filesystem authorization token. */
|
|
661
661
|
export declare const projectFileSystemGetJwt: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdJwt.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json">>;
|
|
662
662
|
/** Get a Project file's information. */
|
|
@@ -849,3 +849,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
849
849
|
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">>;
|
|
850
850
|
/** Check if a company exists. */
|
|
851
851
|
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">>;
|
|
852
|
+
/** Express interest to be a contributor. */
|
|
853
|
+
export declare const contributorExpressInterestToContribute: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1694,6 +1694,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1694
1694
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1695
1695
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1696
1696
|
}
|
|
1697
|
+
namespace ContributorExpressInterestToContribute {
|
|
1698
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorExpressInterestToContribute>;
|
|
1699
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorExpressInterestToContribute, TStatus>;
|
|
1700
|
+
}
|
|
1697
1701
|
}
|
|
1698
1702
|
namespace Components {
|
|
1699
1703
|
namespace Schemas {
|
|
@@ -1702,6 +1706,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1702
1706
|
*/
|
|
1703
1707
|
type AppAction = "start" | "stop" | "restart";
|
|
1704
1708
|
type AppActionCapabilities = MittwaldAPIV2.Components.Schemas.AppAction[];
|
|
1709
|
+
/**
|
|
1710
|
+
* AdditionalValidationSchema is a stringified custom validation schema, e.g password rules.
|
|
1711
|
+
*/
|
|
1712
|
+
interface AppAdditionalValidationSchema {
|
|
1713
|
+
kind?: MittwaldAPIV2.Components.Schemas.AppAdditionalValidationSchemaKind;
|
|
1714
|
+
schema?: string;
|
|
1715
|
+
}
|
|
1716
|
+
/**
|
|
1717
|
+
* AdditionalValidationSchemaKind is an enum, describing the possible types of an additional validation schema.
|
|
1718
|
+
*/
|
|
1719
|
+
type AppAdditionalValidationSchemaKind = "password-rule";
|
|
1705
1720
|
/**
|
|
1706
1721
|
* An App is to be understood as a manifest for AppInstallations. E.g. 'WordPress' only exists inside our ecosystem, because there is an App -Manifest for it.
|
|
1707
1722
|
*/
|
|
@@ -5266,16 +5281,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5266
5281
|
}
|
|
5267
5282
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5268
5283
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
interface AppAdditionalValidationSchema {
|
|
5277
|
-
kind?: MittwaldAPIV2.Components.Schemas.AppAdditionalValidationSchemaKind;
|
|
5278
|
-
schema?: string;
|
|
5284
|
+
interface MailMailArchiveAuthenticationResponse {
|
|
5285
|
+
archive?: string[];
|
|
5286
|
+
auth: string;
|
|
5287
|
+
displayName?: string;
|
|
5288
|
+
error?: string;
|
|
5289
|
+
mail?: string[];
|
|
5290
|
+
role?: string;
|
|
5279
5291
|
}
|
|
5280
5292
|
interface CommonsAddress {
|
|
5281
5293
|
street: string;
|
|
@@ -7962,7 +7974,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7962
7974
|
serviceId: string;
|
|
7963
7975
|
};
|
|
7964
7976
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7965
|
-
type Query = {
|
|
7977
|
+
type Query = {
|
|
7978
|
+
tail?: number;
|
|
7979
|
+
};
|
|
7966
7980
|
}
|
|
7967
7981
|
namespace Responses {
|
|
7968
7982
|
namespace $200 {
|
|
@@ -19009,6 +19023,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19009
19023
|
forwardAddress?: boolean;
|
|
19010
19024
|
catchAll?: boolean;
|
|
19011
19025
|
autoResponder?: boolean;
|
|
19026
|
+
mailArchive?: boolean;
|
|
19012
19027
|
limit?: number;
|
|
19013
19028
|
skip?: number;
|
|
19014
19029
|
page?: number;
|
|
@@ -22053,7 +22068,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22053
22068
|
namespace Responses {
|
|
22054
22069
|
namespace $200 {
|
|
22055
22070
|
namespace Content {
|
|
22056
|
-
type
|
|
22071
|
+
type ApplicationOctetStream = string;
|
|
22057
22072
|
}
|
|
22058
22073
|
}
|
|
22059
22074
|
namespace $403 {
|
|
@@ -26687,5 +26702,56 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26687
26702
|
}
|
|
26688
26703
|
}
|
|
26689
26704
|
}
|
|
26705
|
+
namespace V2CustomersCustomerIdContributor {
|
|
26706
|
+
namespace Post {
|
|
26707
|
+
namespace Parameters {
|
|
26708
|
+
type Path = {
|
|
26709
|
+
customerId: string;
|
|
26710
|
+
};
|
|
26711
|
+
interface RequestBody {
|
|
26712
|
+
/**
|
|
26713
|
+
* A user, which can be contacted by mittwald, if problems arise. If not defined, the contact person will be the executing user. The user has to be a member of the underlying customer.
|
|
26714
|
+
*/
|
|
26715
|
+
deviatingContactPersonUserId?: string;
|
|
26716
|
+
deviatingContractOwner?: MittwaldAPIV2.Components.Schemas.CommonsContact;
|
|
26717
|
+
deviatingName?: string;
|
|
26718
|
+
deviatingSupportInformation?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
26719
|
+
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
|
|
26720
|
+
}
|
|
26721
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
26722
|
+
type Query = {};
|
|
26723
|
+
}
|
|
26724
|
+
namespace Responses {
|
|
26725
|
+
namespace $201 {
|
|
26726
|
+
namespace Content {
|
|
26727
|
+
interface ApplicationJson {
|
|
26728
|
+
id: string;
|
|
26729
|
+
}
|
|
26730
|
+
}
|
|
26731
|
+
}
|
|
26732
|
+
namespace $400 {
|
|
26733
|
+
namespace Content {
|
|
26734
|
+
interface ApplicationJson {
|
|
26735
|
+
[k: string]: unknown;
|
|
26736
|
+
}
|
|
26737
|
+
}
|
|
26738
|
+
}
|
|
26739
|
+
namespace $429 {
|
|
26740
|
+
namespace Content {
|
|
26741
|
+
interface ApplicationJson {
|
|
26742
|
+
[k: string]: unknown;
|
|
26743
|
+
}
|
|
26744
|
+
}
|
|
26745
|
+
}
|
|
26746
|
+
namespace Default {
|
|
26747
|
+
namespace Content {
|
|
26748
|
+
interface ApplicationJson {
|
|
26749
|
+
[k: string]: unknown;
|
|
26750
|
+
}
|
|
26751
|
+
}
|
|
26752
|
+
}
|
|
26753
|
+
}
|
|
26754
|
+
}
|
|
26755
|
+
}
|
|
26690
26756
|
}
|
|
26691
26757
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '0.0.0-development-6c3be68-20250827';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "0.0.0-development-
|
|
3
|
+
"version": "0.0.0-development-dbfaa98-20250828",
|
|
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": "^0.0.0-development-
|
|
49
|
+
"@mittwald/api-client-commons": "^0.0.0-development-dbfaa98-20250828",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^0.0.0-development-
|
|
53
|
+
"@mittwald/api-code-generator": "^0.0.0-development-dbfaa98-20250828",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.0",
|
|
55
55
|
"@types/node": "^22.10.1",
|
|
56
56
|
"@types/react": "^18.3.14",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "99a2c8eb6be739034515a2696efaf2b30840f0e7"
|
|
84
84
|
}
|