@mittwald/api-client 4.208.0 → 4.210.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.209.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 {
@@ -4847,11 +4851,10 @@ export declare namespace MittwaldAPIV2 {
4847
4851
  name: string;
4848
4852
  url: string;
4849
4853
  }
4850
- interface MarketplaceExtensionStatistics {
4851
- /**
4852
- * The amout of instances for this extension. Accurate for the Contributor. Publicly rounded to the next lower hundred.
4853
- */
4854
- amountOfInstances?: number;
4854
+ interface MarketplacePublicKey {
4855
+ algorithm: string;
4856
+ key: string;
4857
+ serial: string;
4855
4858
  }
4856
4859
  /**
4857
4860
  * The Extension is deprecated by the contributor and will expire at the given date.
@@ -4864,13 +4867,21 @@ export declare namespace MittwaldAPIV2 {
4864
4867
  */
4865
4868
  successorId?: string;
4866
4869
  }
4867
- interface MarketplacePublicKey {
4868
- algorithm: string;
4869
- key: string;
4870
- serial: string;
4870
+ interface MarketplaceExtensionInstanceHealth {
4871
+ aggregateReference: {
4872
+ aggregate: string;
4873
+ domain: string;
4874
+ id: string;
4875
+ };
4876
+ id: string;
4877
+ instantiationIsPending: boolean;
4878
+ pendingWebhooksCount: number;
4879
+ removalIsPending: boolean;
4880
+ webhooksAreHalted: boolean;
4871
4881
  }
4872
- interface MarketplaceWebhookUrl {
4873
- url: string;
4882
+ interface MarketplaceExtensionSecret {
4883
+ secretId: string;
4884
+ usableUntil?: string;
4874
4885
  }
4875
4886
  interface MarketplaceUnpublishedExtension {
4876
4887
  /**
@@ -4939,21 +4950,8 @@ export declare namespace MittwaldAPIV2 {
4939
4950
  };
4940
4951
  tags: string[];
4941
4952
  }
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;
4953
+ interface MarketplaceWebhookUrl {
4954
+ url: string;
4957
4955
  }
4958
4956
  interface MarketplaceContractPartner {
4959
4957
  contractPartner: {
@@ -4975,15 +4973,21 @@ export declare namespace MittwaldAPIV2 {
4975
4973
  de: string;
4976
4974
  en?: string;
4977
4975
  }
4978
- type MarketplaceContributorState = "enabled" | "disabled";
4979
4976
  interface MarketplaceUrlFrontendFragment {
4980
4977
  url: string;
4981
4978
  }
4979
+ type MarketplaceContributorState = "enabled" | "disabled";
4982
4980
  type MarketplaceContributorImprint = {
4983
4981
  text: string;
4984
4982
  } | {
4985
4983
  url: string;
4986
4984
  };
4985
+ interface MarketplaceExtensionStatistics {
4986
+ /**
4987
+ * The amout of instances for this extension. Accurate for the Contributor. Publicly rounded to the next lower hundred.
4988
+ */
4989
+ amountOfInstances?: number;
4990
+ }
4987
4991
  interface MarketplaceOwnExtension {
4988
4992
  assets: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
4989
4993
  backendComponents?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents;
@@ -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.209.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.210.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": "3ca3d287a7d9269ce9dbfd949074bb94cb5cc0eb"
84
84
  }