@mittwald/api-client 4.378.0 → 4.380.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.
@@ -192,6 +192,8 @@ const buildMarketplaceApi = (baseClient) => ({
192
192
  extensionListScopes: new ApiCallAsyncResourceFactory(descriptors.extensionListScopes, baseClient.marketplace.extensionListScopes).getApiResource,
193
193
  /** Get payment method details */
194
194
  customerGetPaymentMethod: new ApiCallAsyncResourceFactory(descriptors.marketplaceCustomerGetPaymentMethod, baseClient.marketplace.customerGetPaymentMethod).getApiResource,
195
+ /** List all Webhook Executions. */
196
+ extensionListAllExtensionInstanceWebhookExecutions: new ApiCallAsyncResourceFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions, baseClient.marketplace.extensionListAllExtensionInstanceWebhookExecutions).getApiResource,
195
197
  });
196
198
  const buildConversationApi = (baseClient) => ({
197
199
  /** Get all conversation the authenticated user has created or has access to. */
@@ -380,6 +380,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
380
380
  customerGetPaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerGetPaymentMethod),
381
381
  /** Get the link to update the marketplace payment method */
382
382
  customerUpdatePaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerUpdatePaymentMethod),
383
+ /** List all Webhook Executions. */
384
+ extensionListAllExtensionInstanceWebhookExecutions: this.requestFunctionFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions),
383
385
  };
384
386
  /** The conversation API allows you to manage your support conversations. */
385
387
  conversation = {
@@ -2782,3 +2782,9 @@ export const verificationVerifyCompany = {
2782
2782
  method: "POST",
2783
2783
  operationId: "verification-verify-company",
2784
2784
  };
2785
+ /** List all Webhook Executions. */
2786
+ export const extensionListAllExtensionInstanceWebhookExecutions = {
2787
+ path: "/v2/contributors/{contributorId}/webhook-executions",
2788
+ method: "GET",
2789
+ operationId: "extension-list-all-extension-instance-webhook-executions",
2790
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.377.0';
1
+ export const MittwaldAPIClientVersion = '4.379.0';
@@ -1278,9 +1278,11 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1278
1278
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1279
1279
  } | undefined;
1280
1280
  id: string;
1281
+ nextScheduledWebhookExecution?: string | undefined;
1281
1282
  pendingInstallation: boolean;
1282
1283
  pendingRemoval: boolean;
1283
1284
  variantKey?: string | undefined;
1285
+ webhookExecutionHalted: boolean;
1284
1286
  }>;
1285
1287
  /** Get Extension of own contributor. */
1286
1288
  extensionGetOwnExtension: (conf: {
@@ -1394,9 +1396,11 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1394
1396
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1395
1397
  } | undefined;
1396
1398
  id: string;
1399
+ nextScheduledWebhookExecution?: string | undefined;
1397
1400
  pendingInstallation: boolean;
1398
1401
  pendingRemoval: boolean;
1399
1402
  variantKey?: string | undefined;
1403
+ webhookExecutionHalted: boolean;
1400
1404
  }>;
1401
1405
  /** Get the ExtensionInstance of a specific project and extension, if existing. */
1402
1406
  extensionGetExtensionInstanceForProject: (conf: {
@@ -1426,9 +1430,11 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1426
1430
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1427
1431
  } | undefined;
1428
1432
  id: string;
1433
+ nextScheduledWebhookExecution?: string | undefined;
1429
1434
  pendingInstallation: boolean;
1430
1435
  pendingRemoval: boolean;
1431
1436
  variantKey?: string | undefined;
1437
+ webhookExecutionHalted: boolean;
1432
1438
  }>;
1433
1439
  /** Get an Extension. */
1434
1440
  extensionGetExtension: (conf: {
@@ -1533,6 +1539,24 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1533
1539
  last4: string;
1534
1540
  } | undefined;
1535
1541
  }>;
1542
+ /** List all Webhook Executions. */
1543
+ extensionListAllExtensionInstanceWebhookExecutions: (conf: {
1544
+ contributorId: string;
1545
+ headers?: {
1546
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1547
+ "x-access-token"?: string | undefined;
1548
+ } | undefined;
1549
+ queryParameters?: {
1550
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1551
+ extensionId?: string | undefined;
1552
+ extensionInstanceId?: string | undefined;
1553
+ limit?: number | undefined;
1554
+ skip?: number | undefined;
1555
+ page?: number | undefined;
1556
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
1557
+ order?: ("asc" | "desc")[] | undefined;
1558
+ } | undefined;
1559
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[]>;
1536
1560
  };
1537
1561
  declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
1538
1562
  /** Get all conversation the authenticated user has created or has access to. */
@@ -9877,9 +9877,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9877
9877
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9878
9878
  } | undefined;
9879
9879
  id: string;
9880
+ nextScheduledWebhookExecution?: string | undefined;
9880
9881
  pendingInstallation: boolean;
9881
9882
  pendingRemoval: boolean;
9882
9883
  variantKey?: string | undefined;
9884
+ webhookExecutionHalted: boolean;
9883
9885
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9884
9886
  [x: string]: unknown;
9885
9887
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9918,9 +9920,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9918
9920
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
9919
9921
  } | undefined;
9920
9922
  id: string;
9923
+ nextScheduledWebhookExecution?: string | undefined;
9921
9924
  pendingInstallation: boolean;
9922
9925
  pendingRemoval: boolean;
9923
9926
  variantKey?: string | undefined;
9927
+ webhookExecutionHalted: boolean;
9924
9928
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9925
9929
  [x: string]: unknown;
9926
9930
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -10930,9 +10934,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10930
10934
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
10931
10935
  } | undefined;
10932
10936
  id: string;
10937
+ nextScheduledWebhookExecution?: string | undefined;
10933
10938
  pendingInstallation: boolean;
10934
10939
  pendingRemoval: boolean;
10935
10940
  variantKey?: string | undefined;
10941
+ webhookExecutionHalted: boolean;
10936
10942
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10937
10943
  [x: string]: unknown;
10938
10944
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -10972,9 +10978,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10972
10978
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
10973
10979
  } | undefined;
10974
10980
  id: string;
10981
+ nextScheduledWebhookExecution?: string | undefined;
10975
10982
  pendingInstallation: boolean;
10976
10983
  pendingRemoval: boolean;
10977
10984
  variantKey?: string | undefined;
10985
+ webhookExecutionHalted: boolean;
10978
10986
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10979
10987
  [x: string]: unknown;
10980
10988
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11023,9 +11031,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11023
11031
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
11024
11032
  } | undefined;
11025
11033
  id: string;
11034
+ nextScheduledWebhookExecution?: string | undefined;
11026
11035
  pendingInstallation: boolean;
11027
11036
  pendingRemoval: boolean;
11028
11037
  variantKey?: string | undefined;
11038
+ webhookExecutionHalted: boolean;
11029
11039
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11030
11040
  [x: string]: unknown;
11031
11041
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -11065,9 +11075,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11065
11075
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
11066
11076
  } | undefined;
11067
11077
  id: string;
11078
+ nextScheduledWebhookExecution?: string | undefined;
11068
11079
  pendingInstallation: boolean;
11069
11080
  pendingRemoval: boolean;
11070
11081
  variantKey?: string | undefined;
11082
+ webhookExecutionHalted: boolean;
11071
11083
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11072
11084
  [x: string]: unknown;
11073
11085
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -12361,6 +12373,80 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12361
12373
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
12362
12374
  [x: string]: unknown;
12363
12375
  }, 429, "application/json">>>;
12376
+ /** List all Webhook Executions. */
12377
+ extensionListAllExtensionInstanceWebhookExecutions: (request: {
12378
+ contributorId: string;
12379
+ headers?: {
12380
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
12381
+ "x-access-token"?: string | undefined;
12382
+ } | undefined;
12383
+ queryParameters?: {
12384
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
12385
+ extensionId?: string | undefined;
12386
+ extensionInstanceId?: string | undefined;
12387
+ limit?: number | undefined;
12388
+ skip?: number | undefined;
12389
+ page?: number | undefined;
12390
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
12391
+ order?: ("asc" | "desc")[] | undefined;
12392
+ } | undefined;
12393
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
12394
+ headers?: Partial<{
12395
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12396
+ }>;
12397
+ } & {
12398
+ pathParameters: {
12399
+ contributorId: string;
12400
+ };
12401
+ } & {
12402
+ queryParameters: {
12403
+ extensionId?: string | undefined;
12404
+ extensionInstanceId?: string | undefined;
12405
+ limit?: number | undefined;
12406
+ skip?: number | undefined;
12407
+ page?: number | undefined;
12408
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
12409
+ order?: ("asc" | "desc")[] | undefined;
12410
+ } & Partial<{
12411
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12412
+ }>;
12413
+ } & {
12414
+ headers: {
12415
+ "x-access-token"?: string | undefined;
12416
+ } & Partial<{
12417
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12418
+ }>;
12419
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
12420
+ [x: string]: unknown;
12421
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
12422
+ headers?: Partial<{
12423
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12424
+ }>;
12425
+ } & {
12426
+ pathParameters: {
12427
+ contributorId: string;
12428
+ };
12429
+ } & {
12430
+ queryParameters: {
12431
+ extensionId?: string | undefined;
12432
+ extensionInstanceId?: string | undefined;
12433
+ limit?: number | undefined;
12434
+ skip?: number | undefined;
12435
+ page?: number | undefined;
12436
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
12437
+ order?: ("asc" | "desc")[] | undefined;
12438
+ } & Partial<{
12439
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12440
+ }>;
12441
+ } & {
12442
+ headers: {
12443
+ "x-access-token"?: string | undefined;
12444
+ } & Partial<{
12445
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
12446
+ }>;
12447
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
12448
+ [x: string]: unknown;
12449
+ }, 429, "application/json">>>;
12364
12450
  };
12365
12451
  /** The conversation API allows you to manage your support conversations. */
12366
12452
  readonly conversation: {
@@ -931,3 +931,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
931
931
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
932
932
  /** Check if a company exists. */
933
933
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
934
+ /** List all Webhook Executions. */
935
+ export declare const extensionListAllExtensionInstanceWebhookExecutions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdWebhookExecutions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdWebhookExecutions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdWebhookExecutions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdWebhookExecutions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdWebhookExecutions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdWebhookExecutions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1858,6 +1858,10 @@ export declare namespace MittwaldAPIV2 {
1858
1858
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1859
1859
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1860
1860
  }
1861
+ namespace ExtensionListAllExtensionInstanceWebhookExecutions {
1862
+ type RequestData = InferredRequestData<typeof descriptors.extensionListAllExtensionInstanceWebhookExecutions>;
1863
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListAllExtensionInstanceWebhookExecutions, TStatus>;
1864
+ }
1861
1865
  }
1862
1866
  namespace Components {
1863
1867
  namespace Schemas {
@@ -2777,7 +2781,7 @@ export declare namespace MittwaldAPIV2 {
2777
2781
  */
2778
2782
  volumes?: string[];
2779
2783
  }
2780
- type ContainerServiceStatus = "running" | "stopped" | "error" | "creating" | "starting";
2784
+ type ContainerServiceStatus = "running" | "stopped" | "error" | "creating" | "starting" | "stopping";
2781
2785
  interface ContainerSetRegistryCredentials {
2782
2786
  /**
2783
2787
  * Your registry password or access token.
@@ -4029,9 +4033,11 @@ export declare namespace MittwaldAPIV2 {
4029
4033
  [k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
4030
4034
  };
4031
4035
  id: string;
4036
+ nextScheduledWebhookExecution?: string;
4032
4037
  pendingInstallation: boolean;
4033
4038
  pendingRemoval: boolean;
4034
4039
  variantKey?: string;
4040
+ webhookExecutionHalted: boolean;
4035
4041
  }
4036
4042
  interface MarketplaceExtensionInstanceChargeability {
4037
4043
  isChargeable: boolean;
@@ -6232,6 +6238,16 @@ export declare namespace MittwaldAPIV2 {
6232
6238
  }
6233
6239
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6234
6240
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6241
+ interface MarketplaceExtensionInstanceWebhookExecution {
6242
+ attempts: number;
6243
+ contributorId: string;
6244
+ extensionId: string;
6245
+ extensionInstanceId: string;
6246
+ id: string;
6247
+ kind: "extensionAddedToContext" | "instanceUpdated" | "secretRotated" | "instanceRemovedFromContext";
6248
+ nextScheduledExecution?: string;
6249
+ state: "running" | "queued" | "halted" | "failed" | "successful";
6250
+ }
6235
6251
  interface CommonsAddress {
6236
6252
  street: string;
6237
6253
  houseNumber: string;
@@ -8630,11 +8646,11 @@ export declare namespace MittwaldAPIV2 {
8630
8646
  */
8631
8647
  description?: string;
8632
8648
  /**
8633
- * Execution schedule in crontab notation.
8649
+ * Execution schedule in crontab notation. The backup interval must not be more frequent than hourly.
8634
8650
  */
8635
8651
  schedule: string;
8636
8652
  /**
8637
- * TTL of the BackupSchedule as time string.
8653
+ * TTL of the BackupSchedule as a duration string. Must be at least 7d and no more than 365d.
8638
8654
  */
8639
8655
  ttl: string;
8640
8656
  }
@@ -8729,7 +8745,7 @@ export declare namespace MittwaldAPIV2 {
8729
8745
  */
8730
8746
  description?: string;
8731
8747
  /**
8732
- * Time when to expire the Backup.
8748
+ * Time when to expire the Backup. Must be at least 7 days and no more than one year in the future.
8733
8749
  */
8734
8750
  expirationTime: string;
8735
8751
  }
@@ -8873,11 +8889,11 @@ export declare namespace MittwaldAPIV2 {
8873
8889
  */
8874
8890
  description?: string;
8875
8891
  /**
8876
- * Execution schedule in crontab notation. Note that the schedule of isSystemBackup true items must be daily once.
8892
+ * Execution schedule in crontab notation. Note that the schedule of isSystemBackup true items must be daily once. For all other schedules the interval must not be more frequent than hourly.
8877
8893
  */
8878
8894
  schedule?: string;
8879
8895
  /**
8880
- * TTL of the ProjectBackupSchedule as time string.
8896
+ * TTL of the BackupSchedule as a duration string. Must be at least 7d and no more than 365d.
8881
8897
  */
8882
8898
  ttl?: string;
8883
8899
  }
@@ -9150,7 +9166,7 @@ export declare namespace MittwaldAPIV2 {
9150
9166
  };
9151
9167
  interface RequestBody {
9152
9168
  /**
9153
- * Time when to expire the Backup.
9169
+ * Time when to expire the Backup. Must be no more than one year in the future.
9154
9170
  */
9155
9171
  expirationTime?: string;
9156
9172
  }
@@ -30288,5 +30304,45 @@ export declare namespace MittwaldAPIV2 {
30288
30304
  }
30289
30305
  }
30290
30306
  }
30307
+ namespace V2ContributorsContributorIdWebhookExecutions {
30308
+ namespace Get {
30309
+ namespace Parameters {
30310
+ type Path = {
30311
+ contributorId: string;
30312
+ };
30313
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
30314
+ type Query = {
30315
+ extensionId?: string;
30316
+ extensionInstanceId?: string;
30317
+ limit?: number;
30318
+ skip?: number;
30319
+ page?: number;
30320
+ sort?: ("attempts" | "nextScheduledExecution")[];
30321
+ order?: ("asc" | "desc")[];
30322
+ };
30323
+ }
30324
+ namespace Responses {
30325
+ namespace $200 {
30326
+ namespace Content {
30327
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[];
30328
+ }
30329
+ }
30330
+ namespace $429 {
30331
+ namespace Content {
30332
+ interface ApplicationJson {
30333
+ [k: string]: unknown;
30334
+ }
30335
+ }
30336
+ }
30337
+ namespace Default {
30338
+ namespace Content {
30339
+ interface ApplicationJson {
30340
+ [k: string]: unknown;
30341
+ }
30342
+ }
30343
+ }
30344
+ }
30345
+ }
30346
+ }
30291
30347
  }
30292
30348
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.377.0';
1
+ export declare const MittwaldAPIClientVersion = '4.379.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.378.0",
3
+ "version": "4.380.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",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^4.378.0",
49
+ "@mittwald/api-client-commons": "^4.380.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.378.0",
53
+ "@mittwald/api-code-generator": "^4.380.0",
54
54
  "@mittwald/react-use-promise": "^2.6.2",
55
55
  "@types/node": "^22.18.11",
56
56
  "@types/react": "^18.3.26",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "c5a5646b967940a9aabf38c3118e892eb7e64e2d"
83
+ "gitHead": "b0cf6d460f03c5c4b402942cf69a184d3841396e"
84
84
  }