@mittwald/api-client 4.210.0 → 4.211.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 -1
- package/dist/types/generated/v2/client.d.ts +151 -4
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +71 -5
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -257,6 +257,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
257
257
|
extensionListContributors: this.requestFunctionFactory(descriptors.extensionListContributors),
|
|
258
258
|
/** Get a Contributor. */
|
|
259
259
|
extensionGetContributor: this.requestFunctionFactory(descriptors.extensionGetContributor),
|
|
260
|
+
/** Patch Contributor. */
|
|
261
|
+
contributorPatchContributor: this.requestFunctionFactory(descriptors.contributorPatchContributor),
|
|
260
262
|
/** Enable an ExtensionInstance. */
|
|
261
263
|
extensionEnableExtensionInstance: this.requestFunctionFactory(descriptors.extensionEnableExtensionInstance),
|
|
262
264
|
/** List Scopes. */
|
|
@@ -2350,6 +2350,12 @@ export const extensionGetContributor = {
|
|
|
2350
2350
|
method: "GET",
|
|
2351
2351
|
operationId: "extension-get-contributor",
|
|
2352
2352
|
};
|
|
2353
|
+
/** Patch Contributor. */
|
|
2354
|
+
export const contributorPatchContributor = {
|
|
2355
|
+
path: "/v2/contributors/{contributorId}",
|
|
2356
|
+
method: "PATCH",
|
|
2357
|
+
operationId: "contributor-patch-contributor",
|
|
2358
|
+
};
|
|
2353
2359
|
/** Enable an ExtensionInstance. */
|
|
2354
2360
|
export const extensionEnableExtensionInstance = {
|
|
2355
2361
|
path: "/v2/extension-instances/{extensionInstanceId}/actions/enable",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.210.0';
|
|
@@ -1182,7 +1182,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1182
1182
|
id: string;
|
|
1183
1183
|
logoRefId?: string | undefined;
|
|
1184
1184
|
name: string;
|
|
1185
|
-
pricing?:
|
|
1185
|
+
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
1186
1186
|
published: boolean;
|
|
1187
1187
|
requestedChanges?: {
|
|
1188
1188
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
@@ -7841,6 +7841,153 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7841
7841
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7842
7842
|
[x: string]: unknown;
|
|
7843
7843
|
}, 429, "application/json">>>;
|
|
7844
|
+
/** Patch Contributor. */
|
|
7845
|
+
contributorPatchContributor: (request: {
|
|
7846
|
+
contributorId: string;
|
|
7847
|
+
data?: {
|
|
7848
|
+
contactPersonUserId?: string | undefined;
|
|
7849
|
+
descriptions?: {
|
|
7850
|
+
de: string;
|
|
7851
|
+
en?: string | undefined;
|
|
7852
|
+
} | undefined;
|
|
7853
|
+
deviatingContractOwner?: {
|
|
7854
|
+
contact: {
|
|
7855
|
+
salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
|
|
7856
|
+
address: {
|
|
7857
|
+
street: string;
|
|
7858
|
+
houseNumber: string;
|
|
7859
|
+
city: string;
|
|
7860
|
+
zip: string;
|
|
7861
|
+
countryCode: string;
|
|
7862
|
+
addressPrefix?: string | undefined;
|
|
7863
|
+
};
|
|
7864
|
+
firstName?: string | undefined;
|
|
7865
|
+
lastName?: string | undefined;
|
|
7866
|
+
title?: string | undefined;
|
|
7867
|
+
company?: string | undefined;
|
|
7868
|
+
emailAddress?: string | undefined;
|
|
7869
|
+
phoneNumbers?: string[] | undefined;
|
|
7870
|
+
useFormalTerm?: boolean | undefined;
|
|
7871
|
+
};
|
|
7872
|
+
inherited: boolean;
|
|
7873
|
+
} | undefined;
|
|
7874
|
+
deviatingName?: string | undefined;
|
|
7875
|
+
deviatingSupportInformation?: {
|
|
7876
|
+
email: string;
|
|
7877
|
+
phone?: string | undefined;
|
|
7878
|
+
} | undefined;
|
|
7879
|
+
homepage?: string | undefined;
|
|
7880
|
+
imprint?: {
|
|
7881
|
+
text: string;
|
|
7882
|
+
} | {
|
|
7883
|
+
url: string;
|
|
7884
|
+
} | undefined;
|
|
7885
|
+
} | undefined;
|
|
7886
|
+
headers?: {
|
|
7887
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
7888
|
+
"x-access-token"?: string | undefined;
|
|
7889
|
+
} | undefined;
|
|
7890
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7891
|
+
data: {
|
|
7892
|
+
contactPersonUserId?: string | undefined;
|
|
7893
|
+
descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
|
|
7894
|
+
deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner | undefined;
|
|
7895
|
+
deviatingName?: string | undefined;
|
|
7896
|
+
deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
7897
|
+
homepage?: string | undefined;
|
|
7898
|
+
imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
|
|
7899
|
+
};
|
|
7900
|
+
} & {
|
|
7901
|
+
pathParameters: {
|
|
7902
|
+
contributorId: string;
|
|
7903
|
+
};
|
|
7904
|
+
} & {
|
|
7905
|
+
headers?: Partial<{
|
|
7906
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7907
|
+
}>;
|
|
7908
|
+
} & {
|
|
7909
|
+
headers: {
|
|
7910
|
+
"x-access-token"?: string | undefined;
|
|
7911
|
+
} & Partial<{
|
|
7912
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7913
|
+
}>;
|
|
7914
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7915
|
+
contactPersonUserId: string;
|
|
7916
|
+
contractOwner: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
|
|
7917
|
+
contributorNumber: string;
|
|
7918
|
+
customerId: string;
|
|
7919
|
+
description?: string | undefined;
|
|
7920
|
+
descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
|
|
7921
|
+
email: string;
|
|
7922
|
+
homepage?: string | undefined;
|
|
7923
|
+
id: string;
|
|
7924
|
+
imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
|
|
7925
|
+
logoRefId?: string | undefined;
|
|
7926
|
+
name: string;
|
|
7927
|
+
nameInherited: boolean;
|
|
7928
|
+
phone?: string | undefined;
|
|
7929
|
+
state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
|
|
7930
|
+
supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
7931
|
+
inherited: boolean;
|
|
7932
|
+
};
|
|
7933
|
+
url?: string | undefined;
|
|
7934
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7935
|
+
[x: string]: unknown;
|
|
7936
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7937
|
+
[x: string]: unknown;
|
|
7938
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7939
|
+
[x: string]: unknown;
|
|
7940
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
7941
|
+
data: {
|
|
7942
|
+
contactPersonUserId?: string | undefined;
|
|
7943
|
+
descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
|
|
7944
|
+
deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner | undefined;
|
|
7945
|
+
deviatingName?: string | undefined;
|
|
7946
|
+
deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
7947
|
+
homepage?: string | undefined;
|
|
7948
|
+
imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
|
|
7949
|
+
};
|
|
7950
|
+
} & {
|
|
7951
|
+
pathParameters: {
|
|
7952
|
+
contributorId: string;
|
|
7953
|
+
};
|
|
7954
|
+
} & {
|
|
7955
|
+
headers?: Partial<{
|
|
7956
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7957
|
+
}>;
|
|
7958
|
+
} & {
|
|
7959
|
+
headers: {
|
|
7960
|
+
"x-access-token"?: string | undefined;
|
|
7961
|
+
} & Partial<{
|
|
7962
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
7963
|
+
}>;
|
|
7964
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
7965
|
+
contactPersonUserId: string;
|
|
7966
|
+
contractOwner: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
|
|
7967
|
+
contributorNumber: string;
|
|
7968
|
+
customerId: string;
|
|
7969
|
+
description?: string | undefined;
|
|
7970
|
+
descriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription | undefined;
|
|
7971
|
+
email: string;
|
|
7972
|
+
homepage?: string | undefined;
|
|
7973
|
+
id: string;
|
|
7974
|
+
imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
|
|
7975
|
+
logoRefId?: string | undefined;
|
|
7976
|
+
name: string;
|
|
7977
|
+
nameInherited: boolean;
|
|
7978
|
+
phone?: string | undefined;
|
|
7979
|
+
state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
|
|
7980
|
+
supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
7981
|
+
inherited: boolean;
|
|
7982
|
+
};
|
|
7983
|
+
url?: string | undefined;
|
|
7984
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7985
|
+
[x: string]: unknown;
|
|
7986
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7987
|
+
[x: string]: unknown;
|
|
7988
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
7989
|
+
[x: string]: unknown;
|
|
7990
|
+
}, 429, "application/json">>>;
|
|
7844
7991
|
/** Enable an ExtensionInstance. */
|
|
7845
7992
|
extensionEnableExtensionInstance: (request: {
|
|
7846
7993
|
extensionInstanceId: string;
|
|
@@ -8819,7 +8966,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8819
8966
|
id: string;
|
|
8820
8967
|
logoRefId?: string | undefined;
|
|
8821
8968
|
name: string;
|
|
8822
|
-
pricing?:
|
|
8969
|
+
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
8823
8970
|
published: boolean;
|
|
8824
8971
|
requestedChanges?: {
|
|
8825
8972
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
@@ -8876,7 +9023,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8876
9023
|
id: string;
|
|
8877
9024
|
logoRefId?: string | undefined;
|
|
8878
9025
|
name: string;
|
|
8879
|
-
pricing?:
|
|
9026
|
+
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
8880
9027
|
published: boolean;
|
|
8881
9028
|
requestedChanges?: {
|
|
8882
9029
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
@@ -9070,7 +9217,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9070
9217
|
id: string;
|
|
9071
9218
|
logoRefId?: string | undefined;
|
|
9072
9219
|
name: string;
|
|
9073
|
-
pricing?:
|
|
9220
|
+
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
9074
9221
|
published: boolean;
|
|
9075
9222
|
requestedChanges?: {
|
|
9076
9223
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
@@ -9148,7 +9295,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9148
9295
|
id: string;
|
|
9149
9296
|
logoRefId?: string | undefined;
|
|
9150
9297
|
name: string;
|
|
9151
|
-
pricing?:
|
|
9298
|
+
pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy | undefined;
|
|
9152
9299
|
published: boolean;
|
|
9153
9300
|
requestedChanges?: {
|
|
9154
9301
|
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
@@ -787,6 +787,8 @@ export declare const extensionCreateRetrievalKey: OpenAPIOperation<RequestType<S
|
|
|
787
787
|
export declare const extensionListContributors: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
788
788
|
/** Get a Contributor. */
|
|
789
789
|
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">>;
|
|
790
|
+
/** Patch Contributor. */
|
|
791
|
+
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">>;
|
|
790
792
|
/** Enable an ExtensionInstance. */
|
|
791
793
|
export declare const extensionEnableExtensionInstance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$204.Content.ApplicationJson>, 204, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
792
794
|
/** List Scopes. */
|
|
@@ -1570,6 +1570,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1570
1570
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetContributor>;
|
|
1571
1571
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetContributor, TStatus>;
|
|
1572
1572
|
}
|
|
1573
|
+
namespace ContributorPatchContributor {
|
|
1574
|
+
type RequestData = InferredRequestData<typeof descriptors.contributorPatchContributor>;
|
|
1575
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorPatchContributor, TStatus>;
|
|
1576
|
+
}
|
|
1573
1577
|
namespace ExtensionEnableExtensionInstance {
|
|
1574
1578
|
type RequestData = InferredRequestData<typeof descriptors.extensionEnableExtensionInstance>;
|
|
1575
1579
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionEnableExtensionInstance, TStatus>;
|
|
@@ -4929,7 +4933,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4929
4933
|
*/
|
|
4930
4934
|
logoRefId?: string;
|
|
4931
4935
|
name: string;
|
|
4932
|
-
pricing?: MittwaldAPIV2.Components.Schemas.
|
|
4936
|
+
pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
|
|
4933
4937
|
/**
|
|
4934
4938
|
* Whether the extension has been published by the contributor.
|
|
4935
4939
|
*/
|
|
@@ -5016,7 +5020,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5016
5020
|
*/
|
|
5017
5021
|
logoRefId?: string;
|
|
5018
5022
|
name: string;
|
|
5019
|
-
pricing?: MittwaldAPIV2.Components.Schemas.
|
|
5023
|
+
pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
|
|
5020
5024
|
published: boolean;
|
|
5021
5025
|
requestedChanges?: {
|
|
5022
5026
|
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
@@ -5061,7 +5065,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5061
5065
|
/**
|
|
5062
5066
|
* @deprecated
|
|
5063
5067
|
*/
|
|
5064
|
-
email
|
|
5068
|
+
email: string;
|
|
5065
5069
|
homepage?: string;
|
|
5066
5070
|
id: string;
|
|
5067
5071
|
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
|
|
@@ -5078,6 +5082,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5078
5082
|
*/
|
|
5079
5083
|
inherited: boolean;
|
|
5080
5084
|
};
|
|
5085
|
+
/**
|
|
5086
|
+
* @deprecated
|
|
5087
|
+
*/
|
|
5081
5088
|
url?: string;
|
|
5082
5089
|
}
|
|
5083
5090
|
interface MarketplaceOwnContributor {
|
|
@@ -5086,14 +5093,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5086
5093
|
contributorNumber: string;
|
|
5087
5094
|
customerId: string;
|
|
5088
5095
|
description?: string;
|
|
5096
|
+
descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
|
|
5089
5097
|
/**
|
|
5090
5098
|
* @deprecated
|
|
5091
5099
|
*/
|
|
5092
|
-
email
|
|
5100
|
+
email: string;
|
|
5101
|
+
homepage?: string;
|
|
5093
5102
|
id: string;
|
|
5094
5103
|
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
|
|
5095
5104
|
logoRefId?: string;
|
|
5096
5105
|
name: string;
|
|
5106
|
+
nameInherited: boolean;
|
|
5097
5107
|
/**
|
|
5098
5108
|
* @deprecated
|
|
5099
5109
|
*/
|
|
@@ -5105,6 +5115,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5105
5115
|
*/
|
|
5106
5116
|
inherited: boolean;
|
|
5107
5117
|
};
|
|
5118
|
+
/**
|
|
5119
|
+
* @deprecated
|
|
5120
|
+
*/
|
|
5108
5121
|
url?: string;
|
|
5109
5122
|
}
|
|
5110
5123
|
/**
|
|
@@ -5169,7 +5182,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5169
5182
|
*/
|
|
5170
5183
|
logoRefId: string;
|
|
5171
5184
|
name: string;
|
|
5172
|
-
pricing?: MittwaldAPIV2.Components.Schemas.
|
|
5185
|
+
pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
|
|
5173
5186
|
/**
|
|
5174
5187
|
* Whether the extension has been published by the contributor.
|
|
5175
5188
|
*/
|
|
@@ -25156,6 +25169,59 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25156
25169
|
}
|
|
25157
25170
|
}
|
|
25158
25171
|
}
|
|
25172
|
+
namespace Patch {
|
|
25173
|
+
namespace Parameters {
|
|
25174
|
+
type Path = {
|
|
25175
|
+
contributorId: string;
|
|
25176
|
+
};
|
|
25177
|
+
interface RequestBody {
|
|
25178
|
+
contactPersonUserId?: string;
|
|
25179
|
+
descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
|
|
25180
|
+
deviatingContractOwner?: MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
|
|
25181
|
+
deviatingName?: string;
|
|
25182
|
+
deviatingSupportInformation?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
25183
|
+
homepage?: string;
|
|
25184
|
+
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
|
|
25185
|
+
}
|
|
25186
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
25187
|
+
type Query = {};
|
|
25188
|
+
}
|
|
25189
|
+
namespace Responses {
|
|
25190
|
+
namespace $200 {
|
|
25191
|
+
namespace Content {
|
|
25192
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnContributor;
|
|
25193
|
+
}
|
|
25194
|
+
}
|
|
25195
|
+
namespace $400 {
|
|
25196
|
+
namespace Content {
|
|
25197
|
+
interface ApplicationJson {
|
|
25198
|
+
[k: string]: unknown;
|
|
25199
|
+
}
|
|
25200
|
+
}
|
|
25201
|
+
}
|
|
25202
|
+
namespace $404 {
|
|
25203
|
+
namespace Content {
|
|
25204
|
+
interface ApplicationJson {
|
|
25205
|
+
[k: string]: unknown;
|
|
25206
|
+
}
|
|
25207
|
+
}
|
|
25208
|
+
}
|
|
25209
|
+
namespace $429 {
|
|
25210
|
+
namespace Content {
|
|
25211
|
+
interface ApplicationJson {
|
|
25212
|
+
[k: string]: unknown;
|
|
25213
|
+
}
|
|
25214
|
+
}
|
|
25215
|
+
}
|
|
25216
|
+
namespace Default {
|
|
25217
|
+
namespace Content {
|
|
25218
|
+
interface ApplicationJson {
|
|
25219
|
+
[k: string]: unknown;
|
|
25220
|
+
}
|
|
25221
|
+
}
|
|
25222
|
+
}
|
|
25223
|
+
}
|
|
25224
|
+
}
|
|
25159
25225
|
}
|
|
25160
25226
|
namespace V2ExtensionInstancesExtensionInstanceIdActionsEnable {
|
|
25161
25227
|
namespace Post {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.210.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.211.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": "80404e218fe66bb7f02f7bda7fb292414b90233b"
|
|
84
84
|
}
|