@@ -3877,6 +3877,17 @@ export declare module MittwaldAPIV2 {
3877
3877
>;
3878
3878
}
3879
3879
3880
+ namespace ContributorPatchContributor {
3881
+ type RequestData = InferredRequestData<
3882
+ typeof descriptors.contributorPatchContributor
3883
+ >;
3884
+ type ResponseData<TStatus extends HttpStatus = 200> =
3885
+ InferredResponseData<
3886
+ typeof descriptors.contributorPatchContributor,
3887
+ TStatus
3888
+ >;
3889
+ }
3890
+
3880
3891
namespace ExtensionEnableExtensionInstance {
3881
3892
type RequestData = InferredRequestData<
3882
3893
typeof descriptors.extensionEnableExtensionInstance
@@ -8055,7 +8066,7 @@ export declare module MittwaldAPIV2 {
8055
8066
*/
8056
8067
logoRefId?: string;
8057
8068
name: string;
8058
- pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy ;
8069
+ pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy ;
8059
8070
/**
8060
8071
* Whether the extension has been published by the contributor.
8061
8072
*/
@@ -8154,9 +8165,7 @@ export declare module MittwaldAPIV2 {
8154
8165
*/
8155
8166
logoRefId?: string;
8156
8167
name: string;
8157
- pricing?:
8158
- | MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy
8159
- | MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
8168
+ pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
8160
8169
published: boolean;
8161
8170
requestedChanges?: {
8162
8171
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
@@ -8205,7 +8214,7 @@ export declare module MittwaldAPIV2 {
8205
8214
/**
8206
8215
* @deprecated
8207
8216
*/
8208
- email? : string;
8217
+ email: string;
8209
8218
homepage?: string;
8210
8219
id: string;
8211
8220
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
@@ -8222,6 +8231,9 @@ export declare module MittwaldAPIV2 {
8222
8231
*/
8223
8232
inherited: boolean;
8224
8233
};
8234
+ /**
8235
+ * @deprecated
8236
+ */
8225
8237
url?: string;
8226
8238
}
8227
8239
@@ -8231,14 +8243,17 @@ export declare module MittwaldAPIV2 {
8231
8243
contributorNumber: string;
8232
8244
customerId: string;
8233
8245
description?: string;
8246
+ descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
8234
8247
/**
8235
8248
* @deprecated
8236
8249
*/
8237
- email?: string;
8250
+ email: string;
8251
+ homepage?: string;
8238
8252
id: string;
8239
8253
imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
8240
8254
logoRefId?: string;
8241
8255
name: string;
8256
+ nameInherited: boolean;
8242
8257
/**
8243
8258
* @deprecated
8244
8259
*/
@@ -8250,6 +8265,9 @@ export declare module MittwaldAPIV2 {
8250
8265
*/
8251
8266
inherited: boolean;
8252
8267
};
8268
+ /**
8269
+ * @deprecated
8270
+ */
8253
8271
url?: string;
8254
8272
}
8255
8273
@@ -8324,9 +8342,7 @@ export declare module MittwaldAPIV2 {
8324
8342
*/
8325
8343
logoRefId: string;
8326
8344
name: string;
8327
- pricing?:
8328
- | MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy
8329
- | MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
8345
+ pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
8330
8346
/**
8331
8347
* Whether the extension has been published by the contributor.
8332
8348
*/
@@ -31966,6 +31982,69 @@ export declare module MittwaldAPIV2 {
31966
31982
}
31967
31983
}
31968
31984
}
31985
+
31986
+ namespace Patch {
31987
+ namespace Parameters {
31988
+ export type Path = {
31989
+ contributorId: string;
31990
+ };
31991
+
31992
+ export interface RequestBody {
31993
+ contactPersonUserId?: string;
31994
+ descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
31995
+ deviatingContractOwner?: MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
31996
+ deviatingName?: string;
31997
+ deviatingSupportInformation?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
31998
+ homepage?: string;
31999
+ imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
32000
+ }
32001
+
32002
+ export type Header =
32003
+ {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
32004
+
32005
+ export type Query = {};
32006
+ }
32007
+ namespace Responses {
32008
+ namespace $200 {
32009
+ namespace Content {
32010
+ export type ApplicationJson =
32011
+ MittwaldAPIV2.Components.Schemas.MarketplaceOwnContributor;
32012
+ }
32013
+ }
32014
+
32015
+ namespace $400 {
32016
+ namespace Content {
32017
+ export interface ApplicationJson {
32018
+ [k: string]: unknown;
32019
+ }
32020
+ }
32021
+ }
32022
+
32023
+ namespace $404 {
32024
+ namespace Content {
32025
+ export interface ApplicationJson {
32026
+ [k: string]: unknown;
32027
+ }
32028
+ }
32029
+ }
32030
+
32031
+ namespace $429 {
32032
+ namespace Content {
32033
+ export interface ApplicationJson {
32034
+ [k: string]: unknown;
32035
+ }
32036
+ }
32037
+ }
32038
+
32039
+ namespace Default {
32040
+ namespace Content {
32041
+ export interface ApplicationJson {
32042
+ [k: string]: unknown;
32043
+ }
32044
+ }
32045
+ }
32046
+ }
32047
+ }
31969
32048
}
31970
32049
31971
32050
namespace V2ExtensionInstancesExtensionInstanceIdActionsEnable {
0 commit comments