@mittwald/api-client 4.93.0 → 4.93.1

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.
@@ -281,8 +281,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
281
281
  getCustomerTokenInvite: this.requestFunctionFactory(descriptors.customerGetCustomerTokenInvite),
282
282
  /** Check if the customer profile has a valid contract partner configured. */
283
283
  isCustomerLegallyCompetent: this.requestFunctionFactory(descriptors.customerIsCustomerLegallyCompetent),
284
- /** Leave a Customer. */
285
- leaveCustomer: this.requestFunctionFactory(descriptors.customerLeaveCustomer),
286
284
  /** List CustomerInvites belonging to the executing user. */
287
285
  listCustomerInvites: this.requestFunctionFactory(descriptors.customerListCustomerInvites),
288
286
  /** List CustomerMemberships belonging to the executing user. */
@@ -667,8 +665,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
667
665
  getSelfMembershipForProject: this.requestFunctionFactory(descriptors.projectGetSelfMembershipForProject),
668
666
  /** Get a Server. */
669
667
  getServer: this.requestFunctionFactory(descriptors.projectGetServer),
670
- /** Leave a Project. */
671
- leaveProject: this.requestFunctionFactory(descriptors.projectLeaveProject),
672
668
  /** List Memberships belonging to a Project. */
673
669
  listMembershipsForProject: this.requestFunctionFactory(descriptors.projectListMembershipsForProject),
674
670
  /** List ProjectInvites belonging to the executing user. */
@@ -574,12 +574,6 @@ export const customerIsCustomerLegallyCompetent = {
574
574
  method: "GET",
575
575
  operationId: "customer-is-customer-legally-competent",
576
576
  };
577
- /** Leave a Customer. */
578
- export const customerLeaveCustomer = {
579
- path: "/v2/customers/{customerId}/actions/leave",
580
- method: "POST",
581
- operationId: "customer-leave-customer",
582
- };
583
577
  /** List CustomerInvites belonging to the executing user. */
584
578
  export const customerListCustomerInvites = {
585
579
  path: "/v2/customer-invites",
@@ -1498,12 +1492,6 @@ export const projectGetServer = {
1498
1492
  method: "GET",
1499
1493
  operationId: "project-get-server",
1500
1494
  };
1501
- /** Leave a Project. */
1502
- export const projectLeaveProject = {
1503
- path: "/v2/projects/{projectId}/leave",
1504
- method: "POST",
1505
- operationId: "project-leave-project",
1506
- };
1507
1495
  /** List Memberships belonging to a Project. */
1508
1496
  export const projectListMembershipsForProject = {
1509
1497
  path: "/v2/projects/{projectId}/memberships",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.92.0';
1
+ export const MittwaldAPIClientVersion = '4.93.0';
@@ -1456,9 +1456,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1456
1456
  blocked: boolean;
1457
1457
  context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
1458
1458
  contributorId: string;
1459
- deprecation?: {
1460
- deprecatedAt: string;
1461
- } | undefined;
1459
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
1462
1460
  description: string;
1463
1461
  detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
1464
1462
  disabled: boolean;
@@ -5076,9 +5076,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5076
5076
  blocked: boolean;
5077
5077
  context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5078
5078
  contributorId: string;
5079
- deprecation?: {
5080
- deprecatedAt: string;
5081
- } | undefined;
5079
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5082
5080
  description: string;
5083
5081
  detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5084
5082
  disabled: boolean;
@@ -5110,9 +5108,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5110
5108
  blocked: boolean;
5111
5109
  context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
5112
5110
  contributorId: string;
5113
- deprecation?: {
5114
- deprecatedAt: string;
5115
- } | undefined;
5111
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
5116
5112
  description: string;
5117
5113
  detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
5118
5114
  disabled: boolean;
@@ -7961,57 +7957,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7961
7957
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
7962
7958
  [x: string]: unknown;
7963
7959
  }, 429, "application/json">>>;
7964
- /** Leave a Customer. */
7965
- leaveCustomer: (request: {
7966
- customerId: string;
7967
- data?: {
7968
- [x: string]: unknown;
7969
- } | undefined;
7970
- headers?: {
7971
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7972
- "x-access-token"?: string | undefined;
7973
- } | undefined;
7974
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7975
- data: {
7976
- [x: string]: unknown;
7977
- };
7978
- } & {
7979
- pathParameters: {
7980
- customerId: string;
7981
- };
7982
- } & {
7983
- headers?: Partial<{
7984
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7985
- }>;
7986
- } & {
7987
- headers: {
7988
- "x-access-token"?: string | undefined;
7989
- } & Partial<{
7990
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7991
- }>;
7992
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7993
- [x: string]: unknown;
7994
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7995
- data: {
7996
- [x: string]: unknown;
7997
- };
7998
- } & {
7999
- pathParameters: {
8000
- customerId: string;
8001
- };
8002
- } & {
8003
- headers?: Partial<{
8004
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8005
- }>;
8006
- } & {
8007
- headers: {
8008
- "x-access-token"?: string | undefined;
8009
- } & Partial<{
8010
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8011
- }>;
8012
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
8013
- [x: string]: unknown;
8014
- }, 429, "application/json">>>;
8015
7960
  /** List CustomerInvites belonging to the executing user. */
8016
7961
  listCustomerInvites: (request?: {
8017
7962
  headers?: {
@@ -18908,57 +18853,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18908
18853
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
18909
18854
  [x: string]: unknown;
18910
18855
  }, 429, "application/json">>>;
18911
- /** Leave a Project. */
18912
- leaveProject: (request: {
18913
- projectId: string;
18914
- data?: {
18915
- [x: string]: unknown;
18916
- } | undefined;
18917
- headers?: {
18918
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
18919
- "x-access-token"?: string | undefined;
18920
- } | undefined;
18921
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
18922
- data: {
18923
- [x: string]: unknown;
18924
- };
18925
- } & {
18926
- pathParameters: {
18927
- projectId: string;
18928
- };
18929
- } & {
18930
- headers?: Partial<{
18931
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18932
- }>;
18933
- } & {
18934
- headers: {
18935
- "x-access-token"?: string | undefined;
18936
- } & Partial<{
18937
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18938
- }>;
18939
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
18940
- [x: string]: unknown;
18941
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
18942
- data: {
18943
- [x: string]: unknown;
18944
- };
18945
- } & {
18946
- pathParameters: {
18947
- projectId: string;
18948
- };
18949
- } & {
18950
- headers?: Partial<{
18951
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18952
- }>;
18953
- } & {
18954
- headers: {
18955
- "x-access-token"?: string | undefined;
18956
- } & Partial<{
18957
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18958
- }>;
18959
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
18960
- [x: string]: unknown;
18961
- }, 429, "application/json">>>;
18962
18856
  /** List Memberships belonging to a Project. */
18963
18857
  listMembershipsForProject: (request: {
18964
18858
  projectId: string;
@@ -195,8 +195,6 @@ export declare const customerDeleteCustomer: OpenAPIOperation<RequestType<Simpli
195
195
  export declare const customerGetCustomerTokenInvite: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerTokenInvite.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
196
196
  /** Check if the customer profile has a valid contract partner configured. */
197
197
  export declare const customerIsCustomerLegallyCompetent: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdLegallyCompetent.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
198
- /** Leave a Customer. */
199
- export declare const customerLeaveCustomer: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdActionsLeave.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdActionsLeave.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdActionsLeave.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdActionsLeave.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdActionsLeave.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdActionsLeave.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdActionsLeave.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
200
198
  /** List CustomerInvites belonging to the executing user. */
201
199
  export declare const customerListCustomerInvites: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvites.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
202
200
  /** List CustomerMemberships belonging to the executing user. */
@@ -503,8 +501,6 @@ export declare const projectGetProjectTokenInvite: OpenAPIOperation<RequestType<
503
501
  export declare const projectGetSelfMembershipForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMembershipsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
504
502
  /** Get a Server. */
505
503
  export declare const projectGetServer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
506
- /** Leave a Project. */
507
- export declare const projectLeaveProject: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLeave.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
508
504
  /** List Memberships belonging to a Project. */
509
505
  export declare const projectListMembershipsForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
510
506
  /** List ProjectInvites belonging to the executing user. */
@@ -386,10 +386,6 @@ export declare namespace MittwaldAPIV2 {
386
386
  type RequestData = InferredRequestData<typeof descriptors.customerIsCustomerLegallyCompetent>;
387
387
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerIsCustomerLegallyCompetent, TStatus>;
388
388
  }
389
- namespace CustomerLeaveCustomer {
390
- type RequestData = InferredRequestData<typeof descriptors.customerLeaveCustomer>;
391
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerLeaveCustomer, TStatus>;
392
- }
393
389
  namespace CustomerListCustomerInvites {
394
390
  type RequestData = InferredRequestData<typeof descriptors.customerListCustomerInvites>;
395
391
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerListCustomerInvites, TStatus>;
@@ -1002,10 +998,6 @@ export declare namespace MittwaldAPIV2 {
1002
998
  type RequestData = InferredRequestData<typeof descriptors.projectGetServer>;
1003
999
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetServer, TStatus>;
1004
1000
  }
1005
- namespace ProjectLeaveProject {
1006
- type RequestData = InferredRequestData<typeof descriptors.projectLeaveProject>;
1007
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectLeaveProject, TStatus>;
1008
- }
1009
1001
  namespace ProjectListMembershipsForProject {
1010
1002
  type RequestData = InferredRequestData<typeof descriptors.projectListMembershipsForProject>;
1011
1003
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListMembershipsForProject, TStatus>;
@@ -2401,12 +2393,7 @@ export declare namespace MittwaldAPIV2 {
2401
2393
  blocked: boolean;
2402
2394
  context: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
2403
2395
  contributorId: string;
2404
- /**
2405
- * The Extension is deprecated by the contributor and will expire at the given date.
2406
- */
2407
- deprecation?: {
2408
- deprecatedAt: string;
2409
- };
2396
+ deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
2410
2397
  description: string;
2411
2398
  detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
2412
2399
  disabled: boolean;
@@ -2446,6 +2433,12 @@ export declare namespace MittwaldAPIV2 {
2446
2433
  extensionInstanceUpdated?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponent;
2447
2434
  }
2448
2435
  type MarketplaceContext = "project" | "customer";
2436
+ /**
2437
+ * The Extension is deprecated by the contributor and will expire at the given date.
2438
+ */
2439
+ interface MarketplaceExtensionDeprecation {
2440
+ deprecatedAt: string;
2441
+ }
2449
2442
  /**
2450
2443
  * Language specific descriptions in various formats.
2451
2444
  */
@@ -2461,10 +2454,10 @@ export declare namespace MittwaldAPIV2 {
2461
2454
  en?: MittwaldAPIV2.Components.Schemas.MarketplaceDescriptionFormats;
2462
2455
  }
2463
2456
  interface MarketplaceExtensionHealth {
2464
- disfunctionalReason?: string;
2465
- extensionInstancesHealth: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
2457
+ extensionInstances: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceHealth[];
2466
2458
  functional: boolean;
2467
2459
  id: string;
2460
+ inoperableReason?: string;
2468
2461
  published: boolean;
2469
2462
  withdrawalReason?: string;
2470
2463
  }
@@ -2483,11 +2476,16 @@ export declare namespace MittwaldAPIV2 {
2483
2476
  pendingRemoval: boolean;
2484
2477
  }
2485
2478
  interface MarketplaceExtensionInstanceHealth {
2479
+ aggregateReference: {
2480
+ aggregate: string;
2481
+ domain: string;
2482
+ id: string;
2483
+ };
2486
2484
  id: string;
2487
- pendingInstallation: boolean;
2488
- pendingRemoval: boolean;
2489
- pendingWebhooks: number;
2490
- webhooksHalted: boolean;
2485
+ instantiationIsPending: boolean;
2486
+ pendingWebhooksCount: number;
2487
+ removalIsPending: boolean;
2488
+ webhooksAreHalted: boolean;
2491
2489
  }
2492
2490
  interface MarketplaceExternalComponent {
2493
2491
  name: string;
@@ -2502,6 +2500,7 @@ export declare namespace MittwaldAPIV2 {
2502
2500
  blocked?: boolean;
2503
2501
  context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
2504
2502
  contributorId: string;
2503
+ deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
2505
2504
  description?: string;
2506
2505
  detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
2507
2506
  disabled?: boolean;
@@ -8712,42 +8711,6 @@ export declare namespace MittwaldAPIV2 {
8712
8711
  }
8713
8712
  }
8714
8713
  }
8715
- namespace V2CustomerCustomerIdActionsLeave { }
8716
- namespace V2CustomersCustomerIdActionsLeave {
8717
- namespace Post {
8718
- namespace Parameters {
8719
- type Path = {
8720
- customerId: string;
8721
- };
8722
- interface RequestBody {
8723
- [k: string]: unknown;
8724
- }
8725
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8726
- type Query = {};
8727
- }
8728
- namespace Responses {
8729
- namespace $204 {
8730
- namespace Content {
8731
- type Empty = unknown;
8732
- }
8733
- }
8734
- namespace $429 {
8735
- namespace Content {
8736
- interface ApplicationJson {
8737
- [k: string]: unknown;
8738
- }
8739
- }
8740
- }
8741
- namespace Default {
8742
- namespace Content {
8743
- interface ApplicationJson {
8744
- [k: string]: unknown;
8745
- }
8746
- }
8747
- }
8748
- }
8749
- }
8750
- }
8751
8714
  namespace V2CustomerInvites {
8752
8715
  namespace Get {
8753
8716
  namespace Parameters {
@@ -10216,6 +10179,8 @@ export declare namespace MittwaldAPIV2 {
10216
10179
  }
10217
10180
  }
10218
10181
  namespace V2AppinstallationsAppInstallationIdDatabases { }
10182
+ namespace V2CustomerCustomerIdActionsLeave { }
10183
+ namespace V2CustomersCustomerIdActionsLeave { }
10219
10184
  namespace V2DomainsDomainIdScreenshotsNewest { }
10220
10185
  namespace V2FileTokenRulesToken { }
10221
10186
  namespace V2FileTypeRulesName { }
@@ -10265,6 +10230,7 @@ export declare namespace MittwaldAPIV2 {
10265
10230
  }
10266
10231
  }
10267
10232
  }
10233
+ namespace V2ProjectsProjectIdLeave { }
10268
10234
  namespace V2SignupEmail { }
10269
10235
  namespace V2SignupPasswordResetConfirm { }
10270
10236
  namespace V2UsersSelfIssues { }
@@ -16425,41 +16391,6 @@ export declare namespace MittwaldAPIV2 {
16425
16391
  }
16426
16392
  }
16427
16393
  }
16428
- namespace V2ProjectsProjectIdLeave {
16429
- namespace Post {
16430
- namespace Parameters {
16431
- type Path = {
16432
- projectId: string;
16433
- };
16434
- interface RequestBody {
16435
- [k: string]: unknown;
16436
- }
16437
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
16438
- type Query = {};
16439
- }
16440
- namespace Responses {
16441
- namespace $204 {
16442
- namespace Content {
16443
- type Empty = unknown;
16444
- }
16445
- }
16446
- namespace $429 {
16447
- namespace Content {
16448
- interface ApplicationJson {
16449
- [k: string]: unknown;
16450
- }
16451
- }
16452
- }
16453
- namespace Default {
16454
- namespace Content {
16455
- interface ApplicationJson {
16456
- [k: string]: unknown;
16457
- }
16458
- }
16459
- }
16460
- }
16461
- }
16462
- }
16463
16394
  namespace V2ProjectsProjectIdMemberships {
16464
16395
  namespace Get {
16465
16396
  namespace Parameters {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.92.0';
1
+ export declare const MittwaldAPIClientVersion = '4.93.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.93.0",
3
+ "version": "4.93.1",
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": "3adfe8830f8e191181f0bedc8c5e1ec0fd8d79f8"
83
+ "gitHead": "30a51c609dbb27c61019f1d87590b2c7d6a07366"
84
84
  }