@mittwald/api-client 4.208.0 → 4.209.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.
@@ -307,6 +307,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
307
307
  extensionRequestAssetUpload: this.requestFunctionFactory(descriptors.extensionRequestAssetUpload),
308
308
  /** List Extensions. */
309
309
  extensionListExtensions: this.requestFunctionFactory(descriptors.extensionListExtensions),
310
+ /** Express interest to be a contributor. */
311
+ contributorExpressInterestToContribute: this.requestFunctionFactory(descriptors.contributorExpressInterestToContribute),
310
312
  };
311
313
  /** The conversation API allows you to manage your support conversations. */
312
314
  conversation = {
@@ -2500,3 +2500,9 @@ export const extensionListExtensions = {
2500
2500
  method: "GET",
2501
2501
  operationId: "extension-list-extensions",
2502
2502
  };
2503
+ /** Express interest to be a contributor. */
2504
+ export const contributorExpressInterestToContribute = {
2505
+ path: "/v2/customers/{customerId}/contributor",
2506
+ method: "POST",
2507
+ operationId: "contributor-express-interest-to-contribute",
2508
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.207.0';
1
+ export const MittwaldAPIClientVersion = '4.208.0';
@@ -437,6 +437,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
437
437
  getServiceLogs: (conf: {
438
438
  stackId: string;
439
439
  serviceId: string;
440
+ queryParameters?: {
441
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
442
+ tail?: number | undefined;
443
+ } | undefined;
440
444
  headers?: {
441
445
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
442
446
  "x-access-token"?: string | undefined;
@@ -3229,6 +3229,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3229
3229
  getServiceLogs: (request: {
3230
3230
  stackId: string;
3231
3231
  serviceId: string;
3232
+ queryParameters?: {
3233
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3234
+ tail?: number | undefined;
3235
+ } | undefined;
3232
3236
  headers?: {
3233
3237
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3234
3238
  "x-access-token"?: string | undefined;
@@ -3242,6 +3246,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3242
3246
  stackId: string;
3243
3247
  serviceId: string;
3244
3248
  };
3249
+ } & {
3250
+ queryParameters: {
3251
+ tail?: number | undefined;
3252
+ } & Partial<{
3253
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3254
+ }>;
3245
3255
  } & {
3246
3256
  headers: {
3247
3257
  "x-access-token"?: string | undefined;
@@ -3267,6 +3277,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3267
3277
  stackId: string;
3268
3278
  serviceId: string;
3269
3279
  };
3280
+ } & {
3281
+ queryParameters: {
3282
+ tail?: number | undefined;
3283
+ } & Partial<{
3284
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3285
+ }>;
3270
3286
  } & {
3271
3287
  headers: {
3272
3288
  "x-access-token"?: string | undefined;
@@ -9724,6 +9740,101 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9724
9740
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9725
9741
  [x: string]: unknown;
9726
9742
  }, 429, "application/json">>>;
9743
+ /** Express interest to be a contributor. */
9744
+ contributorExpressInterestToContribute: (request: {
9745
+ customerId: string;
9746
+ data?: {
9747
+ deviatingContactPersonUserId?: string | undefined;
9748
+ deviatingContractOwner?: {
9749
+ salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
9750
+ address: {
9751
+ street: string;
9752
+ houseNumber: string;
9753
+ city: string;
9754
+ zip: string;
9755
+ countryCode: string;
9756
+ addressPrefix?: string | undefined;
9757
+ };
9758
+ firstName?: string | undefined;
9759
+ lastName?: string | undefined;
9760
+ title?: string | undefined;
9761
+ company?: string | undefined;
9762
+ emailAddress?: string | undefined;
9763
+ phoneNumbers?: string[] | undefined;
9764
+ useFormalTerm?: boolean | undefined;
9765
+ } | undefined;
9766
+ deviatingName?: string | undefined;
9767
+ deviatingSupportInformation?: {
9768
+ email: string;
9769
+ phone?: string | undefined;
9770
+ } | undefined;
9771
+ imprint?: {
9772
+ text: string;
9773
+ } | {
9774
+ url: string;
9775
+ } | undefined;
9776
+ } | undefined;
9777
+ headers?: {
9778
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9779
+ "x-access-token"?: string | undefined;
9780
+ } | undefined;
9781
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9782
+ data: {
9783
+ deviatingContactPersonUserId?: string | undefined;
9784
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9785
+ deviatingName?: string | undefined;
9786
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9787
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9788
+ };
9789
+ } & {
9790
+ pathParameters: {
9791
+ customerId: string;
9792
+ };
9793
+ } & {
9794
+ headers?: Partial<{
9795
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9796
+ }>;
9797
+ } & {
9798
+ headers: {
9799
+ "x-access-token"?: string | undefined;
9800
+ } & Partial<{
9801
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9802
+ }>;
9803
+ }, import("@mittwald/api-client-commons").Response<{
9804
+ id: string;
9805
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9806
+ [x: string]: unknown;
9807
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9808
+ [x: string]: unknown;
9809
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9810
+ data: {
9811
+ deviatingContactPersonUserId?: string | undefined;
9812
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9813
+ deviatingName?: string | undefined;
9814
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9815
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9816
+ };
9817
+ } & {
9818
+ pathParameters: {
9819
+ customerId: string;
9820
+ };
9821
+ } & {
9822
+ headers?: Partial<{
9823
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9824
+ }>;
9825
+ } & {
9826
+ headers: {
9827
+ "x-access-token"?: string | undefined;
9828
+ } & Partial<{
9829
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9830
+ }>;
9831
+ }, import("@mittwald/api-client-commons").Response<{
9832
+ id: string;
9833
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9834
+ [x: string]: unknown;
9835
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9836
+ [x: string]: unknown;
9837
+ }, 429, "application/json">>>;
9727
9838
  };
9728
9839
  /** The conversation API allows you to manage your support conversations. */
9729
9840
  readonly conversation: {
@@ -25834,7 +25945,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25834
25945
  } & Partial<{
25835
25946
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25836
25947
  }>;
25837
- }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
25948
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<{
25838
25949
  [x: string]: unknown;
25839
25950
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
25840
25951
  [x: string]: unknown;
@@ -25865,7 +25976,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25865
25976
  } & Partial<{
25866
25977
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25867
25978
  }>;
25868
- }, import("@mittwald/api-client-commons").Response<string, 200, "text/plain"> | import("@mittwald/api-client-commons").Response<{
25979
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<{
25869
25980
  [x: string]: unknown;
25870
25981
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
25871
25982
  [x: string]: unknown;
@@ -576,7 +576,7 @@ export declare const projectFileSystemGetDirectories: OpenAPIOperation<RequestTy
576
576
  /** Get a Project directory filesystem usage. */
577
577
  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">>;
578
578
  /** Get a Project file's content. */
579
- 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.TextPlain>, 200, "text/plain"> | 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">>;
579
+ 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">>;
580
580
  /** Get a Project's file/filesystem authorization token. */
581
581
  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">>;
582
582
  /** Get a Project file's information. */
@@ -837,3 +837,5 @@ export declare const extensionRegisterExtension: OpenAPIOperation<RequestType<Si
837
837
  export declare const extensionRequestAssetUpload: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdAssets.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
838
838
  /** List Extensions. */
839
839
  export declare const extensionListExtensions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
840
+ /** Express interest to be a contributor. */
841
+ 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">>;
@@ -1670,6 +1670,10 @@ export declare namespace MittwaldAPIV2 {
1670
1670
  type RequestData = InferredRequestData<typeof descriptors.extensionListExtensions>;
1671
1671
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListExtensions, TStatus>;
1672
1672
  }
1673
+ namespace ContributorExpressInterestToContribute {
1674
+ type RequestData = InferredRequestData<typeof descriptors.contributorExpressInterestToContribute>;
1675
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorExpressInterestToContribute, TStatus>;
1676
+ }
1673
1677
  }
1674
1678
  namespace Components {
1675
1679
  namespace Schemas {
@@ -4853,6 +4857,11 @@ export declare namespace MittwaldAPIV2 {
4853
4857
  */
4854
4858
  amountOfInstances?: number;
4855
4859
  }
4860
+ interface MarketplacePublicKey {
4861
+ algorithm: string;
4862
+ key: string;
4863
+ serial: string;
4864
+ }
4856
4865
  /**
4857
4866
  * The Extension is deprecated by the contributor and will expire at the given date.
4858
4867
  */
@@ -4864,14 +4873,21 @@ export declare namespace MittwaldAPIV2 {
4864
4873
  */
4865
4874
  successorId?: string;
4866
4875
  }
4867
- interface MarketplacePublicKey {
4868
- algorithm: string;
4869
- key: string;
4870
- serial: string;
4871
- }
4872
4876
  interface MarketplaceWebhookUrl {
4873
4877
  url: string;
4874
4878
  }
4879
+ interface MarketplaceExtensionInstanceHealth {
4880
+ aggregateReference: {
4881
+ aggregate: string;
4882
+ domain: string;
4883
+ id: string;
4884
+ };
4885
+ id: string;
4886
+ instantiationIsPending: boolean;
4887
+ pendingWebhooksCount: number;
4888
+ removalIsPending: boolean;
4889
+ webhooksAreHalted: boolean;
4890
+ }
4875
4891
  interface MarketplaceUnpublishedExtension {
4876
4892
  /**
4877
4893
  * The assets/media (images and videos) of the extension.
@@ -4939,35 +4955,6 @@ export declare namespace MittwaldAPIV2 {
4939
4955
  };
4940
4956
  tags: string[];
4941
4957
  }
4942
- interface MarketplaceExtensionInstanceHealth {
4943
- aggregateReference: {
4944
- aggregate: string;
4945
- domain: string;
4946
- id: string;
4947
- };
4948
- id: string;
4949
- instantiationIsPending: boolean;
4950
- pendingWebhooksCount: number;
4951
- removalIsPending: boolean;
4952
- webhooksAreHalted: boolean;
4953
- }
4954
- interface MarketplaceExtensionSecret {
4955
- secretId: string;
4956
- usableUntil?: string;
4957
- }
4958
- interface MarketplaceContractPartner {
4959
- contractPartner: {
4960
- address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
4961
- company?: string;
4962
- email: string;
4963
- firstName: string;
4964
- lastName: string;
4965
- };
4966
- createdAt: string;
4967
- extensionId: string;
4968
- extensionInstanceId: string;
4969
- parentCustomerId: string;
4970
- }
4971
4958
  /**
4972
4959
  * A few words to promote your Extension.
4973
4960
  */
@@ -4976,14 +4963,10 @@ export declare namespace MittwaldAPIV2 {
4976
4963
  en?: string;
4977
4964
  }
4978
4965
  type MarketplaceContributorState = "enabled" | "disabled";
4979
- interface MarketplaceUrlFrontendFragment {
4980
- url: string;
4966
+ interface MarketplaceExtensionSecret {
4967
+ secretId: string;
4968
+ usableUntil?: string;
4981
4969
  }
4982
- type MarketplaceContributorImprint = {
4983
- text: string;
4984
- } | {
4985
- url: string;
4986
- };
4987
4970
  interface MarketplaceOwnExtension {
4988
4971
  assets: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
4989
4972
  backendComponents?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents;
@@ -5041,6 +5024,14 @@ export declare namespace MittwaldAPIV2 {
5041
5024
  verified: boolean;
5042
5025
  webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
5043
5026
  }
5027
+ interface MarketplaceUrlFrontendFragment {
5028
+ url: string;
5029
+ }
5030
+ type MarketplaceContributorImprint = {
5031
+ text: string;
5032
+ } | {
5033
+ url: string;
5034
+ };
5044
5035
  /**
5045
5036
  * A strategy for pricing that occurs monthly.
5046
5037
  */
@@ -5050,73 +5041,18 @@ export declare namespace MittwaldAPIV2 {
5050
5041
  */
5051
5042
  netPrice: number;
5052
5043
  }
5053
- interface MarketplaceContributor {
5054
- customerId: string;
5055
- description?: string;
5056
- descriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceLocalizedDescription;
5057
- /**
5058
- * @deprecated
5059
- */
5060
- email?: string;
5061
- homepage?: string;
5062
- id: string;
5063
- imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
5064
- logoRefId?: string;
5065
- name: string;
5066
- /**
5067
- * @deprecated
5068
- */
5069
- phone?: string;
5070
- state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
5071
- supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
5072
- /**
5073
- * Whether the support information is inherited from the customer.
5074
- */
5075
- inherited: boolean;
5076
- };
5077
- url?: string;
5078
- }
5079
- interface MarketplaceOwnContributor {
5080
- contactPersonUserId: string;
5081
- contractOwner: MittwaldAPIV2.Components.Schemas.MarketplaceContractOwner;
5082
- contributorNumber: string;
5083
- customerId: string;
5084
- description?: string;
5085
- /**
5086
- * @deprecated
5087
- */
5088
- email?: string;
5089
- id: string;
5090
- imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
5091
- logoRefId?: string;
5092
- name: string;
5093
- /**
5094
- * @deprecated
5095
- */
5096
- phone?: string;
5097
- state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
5098
- supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
5099
- /**
5100
- * Whether the support information is inherited from the customer.
5101
- */
5102
- inherited: boolean;
5044
+ interface MarketplaceContractPartner {
5045
+ contractPartner: {
5046
+ address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
5047
+ company?: string;
5048
+ email: string;
5049
+ firstName: string;
5050
+ lastName: string;
5103
5051
  };
5104
- url?: string;
5105
- }
5106
- /**
5107
- * A few words about the introduction as a contributor
5108
- */
5109
- interface MarketplaceLocalizedDescription {
5110
- de: string;
5111
- en?: string;
5112
- }
5113
- interface MarketplaceExtensionHealth {
5114
- extensionInstances: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
5115
- functional: boolean;
5116
- id: string;
5117
- inoperableReason?: string;
5118
- published: boolean;
5119
- withdrawalReason?: string;
5052
+ createdAt: string;
5053
+ extensionId: string;
5054
+ extensionInstanceId: string;
5055
+ parentCustomerId: string;
5120
5056
  }
5121
5057
  interface MarketplaceExtension {
5122
5058
  /**
@@ -5189,6 +5125,74 @@ export declare namespace MittwaldAPIV2 {
5189
5125
  */
5190
5126
  tags: string[];
5191
5127
  }
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
+ }
5192
5196
  /**
5193
5197
  * AdditionalValidationSchema is a stringified custom validation schema, e.g password rules.
5194
5198
  */
@@ -7780,7 +7784,9 @@ export declare namespace MittwaldAPIV2 {
7780
7784
  serviceId: string;
7781
7785
  };
7782
7786
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7783
- type Query = {};
7787
+ type Query = {
7788
+ tail?: number;
7789
+ };
7784
7790
  }
7785
7791
  namespace Responses {
7786
7792
  namespace $200 {
@@ -20138,7 +20144,7 @@ export declare namespace MittwaldAPIV2 {
20138
20144
  namespace Responses {
20139
20145
  namespace $200 {
20140
20146
  namespace Content {
20141
- type TextPlain = string;
20147
+ type ApplicationOctetStream = string;
20142
20148
  }
20143
20149
  }
20144
20150
  namespace $403 {
@@ -26390,5 +26396,56 @@ export declare namespace MittwaldAPIV2 {
26390
26396
  }
26391
26397
  }
26392
26398
  }
26399
+ namespace V2CustomersCustomerIdContributor {
26400
+ namespace Post {
26401
+ namespace Parameters {
26402
+ type Path = {
26403
+ customerId: string;
26404
+ };
26405
+ interface RequestBody {
26406
+ /**
26407
+ * 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.
26408
+ */
26409
+ deviatingContactPersonUserId?: string;
26410
+ deviatingContractOwner?: MittwaldAPIV2.Components.Schemas.CommonsContact;
26411
+ deviatingName?: string;
26412
+ deviatingSupportInformation?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
26413
+ imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
26414
+ }
26415
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
26416
+ type Query = {};
26417
+ }
26418
+ namespace Responses {
26419
+ namespace $201 {
26420
+ namespace Content {
26421
+ interface ApplicationJson {
26422
+ id: string;
26423
+ }
26424
+ }
26425
+ }
26426
+ namespace $400 {
26427
+ namespace Content {
26428
+ interface ApplicationJson {
26429
+ [k: string]: unknown;
26430
+ }
26431
+ }
26432
+ }
26433
+ namespace $429 {
26434
+ namespace Content {
26435
+ interface ApplicationJson {
26436
+ [k: string]: unknown;
26437
+ }
26438
+ }
26439
+ }
26440
+ namespace Default {
26441
+ namespace Content {
26442
+ interface ApplicationJson {
26443
+ [k: string]: unknown;
26444
+ }
26445
+ }
26446
+ }
26447
+ }
26448
+ }
26449
+ }
26393
26450
  }
26394
26451
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.207.0';
1
+ export declare const MittwaldAPIClientVersion = '4.208.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.208.0",
3
+ "version": "4.209.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": "6843d360a6d00be6dcd16d70d27c11e1c771fb00"
83
+ "gitHead": "f9c0c33b8d7c104b7feb67e7931e77f5ed45f218"
84
84
  }