@mittwald/api-client 4.209.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.
@@ -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",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.208.0';
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?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
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?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
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?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
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?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
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?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
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>;
@@ -4851,12 +4855,6 @@ export declare namespace MittwaldAPIV2 {
4851
4855
  name: string;
4852
4856
  url: string;
4853
4857
  }
4854
- interface MarketplaceExtensionStatistics {
4855
- /**
4856
- * The amout of instances for this extension. Accurate for the Contributor. Publicly rounded to the next lower hundred.
4857
- */
4858
- amountOfInstances?: number;
4859
- }
4860
4858
  interface MarketplacePublicKey {
4861
4859
  algorithm: string;
4862
4860
  key: string;
@@ -4873,9 +4871,6 @@ export declare namespace MittwaldAPIV2 {
4873
4871
  */
4874
4872
  successorId?: string;
4875
4873
  }
4876
- interface MarketplaceWebhookUrl {
4877
- url: string;
4878
- }
4879
4874
  interface MarketplaceExtensionInstanceHealth {
4880
4875
  aggregateReference: {
4881
4876
  aggregate: string;
@@ -4888,6 +4883,10 @@ export declare namespace MittwaldAPIV2 {
4888
4883
  removalIsPending: boolean;
4889
4884
  webhooksAreHalted: boolean;
4890
4885
  }
4886
+ interface MarketplaceExtensionSecret {
4887
+ secretId: string;
4888
+ usableUntil?: string;
4889
+ }
4891
4890
  interface MarketplaceUnpublishedExtension {
4892
4891
  /**
4893
4892
  * The assets/media (images and videos) of the extension.
@@ -4934,7 +4933,7 @@ export declare namespace MittwaldAPIV2 {
4934
4933
  */
4935
4934
  logoRefId?: string;
4936
4935
  name: string;
4937
- pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy;
4936
+ pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
4938
4937
  /**
4939
4938
  * Whether the extension has been published by the contributor.
4940
4939
  */
@@ -4955,6 +4954,22 @@ export declare namespace MittwaldAPIV2 {
4955
4954
  };
4956
4955
  tags: string[];
4957
4956
  }
4957
+ interface MarketplaceWebhookUrl {
4958
+ url: string;
4959
+ }
4960
+ interface MarketplaceContractPartner {
4961
+ contractPartner: {
4962
+ address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
4963
+ company?: string;
4964
+ email: string;
4965
+ firstName: string;
4966
+ lastName: string;
4967
+ };
4968
+ createdAt: string;
4969
+ extensionId: string;
4970
+ extensionInstanceId: string;
4971
+ parentCustomerId: string;
4972
+ }
4958
4973
  /**
4959
4974
  * A few words to promote your Extension.
4960
4975
  */
@@ -4962,10 +4977,20 @@ export declare namespace MittwaldAPIV2 {
4962
4977
  de: string;
4963
4978
  en?: string;
4964
4979
  }
4980
+ interface MarketplaceUrlFrontendFragment {
4981
+ url: string;
4982
+ }
4965
4983
  type MarketplaceContributorState = "enabled" | "disabled";
4966
- interface MarketplaceExtensionSecret {
4967
- secretId: string;
4968
- usableUntil?: string;
4984
+ type MarketplaceContributorImprint = {
4985
+ text: string;
4986
+ } | {
4987
+ url: string;
4988
+ };
4989
+ interface MarketplaceExtensionStatistics {
4990
+ /**
4991
+ * The amout of instances for this extension. Accurate for the Contributor. Publicly rounded to the next lower hundred.
4992
+ */
4993
+ amountOfInstances?: number;
4969
4994
  }
4970
4995
  interface MarketplaceOwnExtension {
4971
4996
  assets: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
@@ -4995,7 +5020,7 @@ export declare namespace MittwaldAPIV2 {
4995
5020
  */
4996
5021
  logoRefId?: string;
4997
5022
  name: string;
4998
- pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
5023
+ pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
4999
5024
  published: boolean;
5000
5025
  requestedChanges?: {
5001
5026
  context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
@@ -5024,14 +5049,6 @@ export declare namespace MittwaldAPIV2 {
5024
5049
  verified: boolean;
5025
5050
  webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5026
5051
  }
5027
- interface MarketplaceUrlFrontendFragment {
5028
- url: string;
5029
- }
5030
- type MarketplaceContributorImprint = {
5031
- text: string;
5032
- } | {
5033
- url: string;
5034
- };
5035
5052
  /**
5036
5053
  * A strategy for pricing that occurs monthly.
5037
5054
  */
@@ -5041,18 +5058,82 @@ export declare namespace MittwaldAPIV2 {
5041
5058
  */
5042
5059
  netPrice: number;
5043
5060
  }
5044
- interface MarketplaceContractPartner {
5045
- contractPartner: {
5046
- address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
5047
- company?: string;
5048
- email: string;
5049
- firstName: string;
5050
- lastName: string;
5061
+ interface MarketplaceContributor {
5062
+ customerId: string;
5063
+ description?: string;
5064
+ descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
5065
+ /**
5066
+ * @deprecated
5067
+ */
5068
+ email: string;
5069
+ homepage?: string;
5070
+ id: string;
5071
+ imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
5072
+ logoRefId?: string;
5073
+ name: string;
5074
+ /**
5075
+ * @deprecated
5076
+ */
5077
+ phone?: string;
5078
+ state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
5079
+ supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
5080
+ /**
5081
+ * Whether the support information is inherited from the customer.
5082
+ */
5083
+ inherited: boolean;
5051
5084
  };
5052
- createdAt: string;
5053
- extensionId: string;
5054
- extensionInstanceId: string;
5055
- parentCustomerId: string;
5085
+ /**
5086
+ * @deprecated
5087
+ */
5088
+ url?: string;
5089
+ }
5090
+ interface MarketplaceOwnContributor {
5091
+ contactPersonUserId: string;
5092
+ contractOwner: MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
5093
+ contributorNumber: string;
5094
+ customerId: string;
5095
+ description?: string;
5096
+ descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
5097
+ /**
5098
+ * @deprecated
5099
+ */
5100
+ email: string;
5101
+ homepage?: string;
5102
+ id: string;
5103
+ imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
5104
+ logoRefId?: string;
5105
+ name: string;
5106
+ nameInherited: boolean;
5107
+ /**
5108
+ * @deprecated
5109
+ */
5110
+ phone?: string;
5111
+ state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
5112
+ supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
5113
+ /**
5114
+ * Whether the support information is inherited from the customer.
5115
+ */
5116
+ inherited: boolean;
5117
+ };
5118
+ /**
5119
+ * @deprecated
5120
+ */
5121
+ url?: string;
5122
+ }
5123
+ /**
5124
+ * A few words about the introduction as a contributor
5125
+ */
5126
+ interface MarketplaceLocalizedDescription {
5127
+ de: string;
5128
+ en?: string;
5129
+ }
5130
+ interface MarketplaceExtensionHealth {
5131
+ extensionInstances: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
5132
+ functional: boolean;
5133
+ id: string;
5134
+ inoperableReason?: string;
5135
+ published: boolean;
5136
+ withdrawalReason?: string;
5056
5137
  }
5057
5138
  interface MarketplaceExtension {
5058
5139
  /**
@@ -5101,7 +5182,7 @@ export declare namespace MittwaldAPIV2 {
5101
5182
  */
5102
5183
  logoRefId: string;
5103
5184
  name: string;
5104
- pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
5185
+ pricing?: MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy;
5105
5186
  /**
5106
5187
  * Whether the extension has been published by the contributor.
5107
5188
  */
@@ -5125,74 +5206,6 @@ export declare namespace MittwaldAPIV2 {
5125
5206
  */
5126
5207
  tags: string[];
5127
5208
  }
5128
- interface MarketplaceContributor {
5129
- customerId: string;
5130
- description?: string;
5131
- descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
5132
- /**
5133
- * @deprecated
5134
- */
5135
- email?: string;
5136
- homepage?: string;
5137
- id: string;
5138
- imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
5139
- logoRefId?: string;
5140
- name: string;
5141
- /**
5142
- * @deprecated
5143
- */
5144
- phone?: string;
5145
- state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
5146
- supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
5147
- /**
5148
- * Whether the support information is inherited from the customer.
5149
- */
5150
- inherited: boolean;
5151
- };
5152
- url?: string;
5153
- }
5154
- interface MarketplaceOwnContributor {
5155
- contactPersonUserId: string;
5156
- contractOwner: MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
5157
- contributorNumber: string;
5158
- customerId: string;
5159
- description?: string;
5160
- /**
5161
- * @deprecated
5162
- */
5163
- email?: string;
5164
- id: string;
5165
- imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
5166
- logoRefId?: string;
5167
- name: string;
5168
- /**
5169
- * @deprecated
5170
- */
5171
- phone?: string;
5172
- state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
5173
- supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
5174
- /**
5175
- * Whether the support information is inherited from the customer.
5176
- */
5177
- inherited: boolean;
5178
- };
5179
- url?: string;
5180
- }
5181
- interface MarketplaceExtensionHealth {
5182
- extensionInstances: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
5183
- functional: boolean;
5184
- id: string;
5185
- inoperableReason?: string;
5186
- published: boolean;
5187
- withdrawalReason?: string;
5188
- }
5189
- /**
5190
- * A few words about the introduction as a contributor
5191
- */
5192
- interface MarketplaceLocalizedDescription {
5193
- de: string;
5194
- en?: string;
5195
- }
5196
5209
  /**
5197
5210
  * AdditionalValidationSchema is a stringified custom validation schema, e.g password rules.
5198
5211
  */
@@ -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 {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.208.0';
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.209.0",
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": "f9c0c33b8d7c104b7feb67e7931e77f5ed45f218"
83
+ "gitHead": "80404e218fe66bb7f02f7bda7fb292414b90233b"
84
84
  }