@mittwald/api-client 4.379.0 → 4.383.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.
@@ -182,6 +182,8 @@ const buildMarketplaceApi = (baseClient) => ({
182
182
  extensionGetProjectExtensionInstanceOrders: new ApiCallAsyncResourceFactory(descriptors.extensionGetProjectExtensionInstanceOrders, baseClient.marketplace.extensionGetProjectExtensionInstanceOrders).getApiResource,
183
183
  /** Get the public key to verify the webhook signature. */
184
184
  extensionGetPublicKey: new ApiCallAsyncResourceFactory(descriptors.extensionGetPublicKey, baseClient.marketplace.extensionGetPublicKey).getApiResource,
185
+ /** List all Webhook Executions. */
186
+ extensionListAllExtensionInstanceWebhookExecutions: new ApiCallAsyncResourceFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions, baseClient.marketplace.extensionListAllExtensionInstanceWebhookExecutions).getApiResource,
185
187
  /** List Contributors. */
186
188
  extensionListContributors: new ApiCallAsyncResourceFactory(descriptors.extensionListContributors, baseClient.marketplace.extensionListContributors).getApiResource,
187
189
  /** List Extensions. */
@@ -350,6 +350,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
350
350
  extensionGetPublicKey: this.requestFunctionFactory(descriptors.extensionGetPublicKey),
351
351
  /** Invalidate the given Extension secret immediately. */
352
352
  extensionInvalidateExtensionSecret: this.requestFunctionFactory(descriptors.extensionInvalidateExtensionSecret),
353
+ /** List all Webhook Executions. */
354
+ extensionListAllExtensionInstanceWebhookExecutions: this.requestFunctionFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions),
353
355
  /** List Contributors. */
354
356
  extensionListContributors: this.requestFunctionFactory(descriptors.extensionListContributors),
355
357
  /** List Extensions. */
@@ -1582,6 +1582,12 @@ export const extensionInvalidateExtensionSecret = {
1582
1582
  method: "DELETE",
1583
1583
  operationId: "extension-invalidate-extension-secret",
1584
1584
  };
1585
+ /** List all Webhook Executions. */
1586
+ export const extensionListAllExtensionInstanceWebhookExecutions = {
1587
+ path: "/v2/contributors/{contributorId}/webhook-executions",
1588
+ method: "GET",
1589
+ operationId: "extension-list-all-extension-instance-webhook-executions",
1590
+ };
1585
1591
  /** List Contributors. */
1586
1592
  export const extensionListContributors = {
1587
1593
  path: "/v2/contributors",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.378.0';
1
+ export const MittwaldAPIClientVersion = '4.382.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: {
@@ -1465,6 +1471,24 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1465
1471
  key: string;
1466
1472
  serial: string;
1467
1473
  }>;
1474
+ /** List all Webhook Executions. */
1475
+ extensionListAllExtensionInstanceWebhookExecutions: (conf: {
1476
+ contributorId: string;
1477
+ headers?: {
1478
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1479
+ "x-access-token"?: string | undefined;
1480
+ } | undefined;
1481
+ queryParameters?: {
1482
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1483
+ extensionId?: string | undefined;
1484
+ extensionInstanceId?: string | undefined;
1485
+ limit?: number | undefined;
1486
+ skip?: number | undefined;
1487
+ page?: number | undefined;
1488
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
1489
+ order?: ("asc" | "desc")[] | undefined;
1490
+ } | undefined;
1491
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[]>;
1468
1492
  /** List Contributors. */
1469
1493
  extensionListContributors: (conf?: {
1470
1494
  headers?: {
@@ -3015,6 +3039,7 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
3015
3039
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
3016
3040
  isEmployee: boolean;
3017
3041
  isImpersonated: boolean;
3042
+ tokenId: string;
3018
3043
  userId: string;
3019
3044
  }>;
3020
3045
  /** The timestamp of your latest password change. */
@@ -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<{
@@ -11276,6 +11288,80 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11276
11288
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
11277
11289
  [x: string]: unknown;
11278
11290
  }, 429, "application/json">>>;
11291
+ /** List all Webhook Executions. */
11292
+ extensionListAllExtensionInstanceWebhookExecutions: (request: {
11293
+ contributorId: string;
11294
+ headers?: {
11295
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
11296
+ "x-access-token"?: string | undefined;
11297
+ } | undefined;
11298
+ queryParameters?: {
11299
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
11300
+ extensionId?: string | undefined;
11301
+ extensionInstanceId?: string | undefined;
11302
+ limit?: number | undefined;
11303
+ skip?: number | undefined;
11304
+ page?: number | undefined;
11305
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
11306
+ order?: ("asc" | "desc")[] | undefined;
11307
+ } | undefined;
11308
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
11309
+ headers?: Partial<{
11310
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11311
+ }>;
11312
+ } & {
11313
+ pathParameters: {
11314
+ contributorId: string;
11315
+ };
11316
+ } & {
11317
+ queryParameters: {
11318
+ extensionId?: string | undefined;
11319
+ extensionInstanceId?: string | undefined;
11320
+ limit?: number | undefined;
11321
+ skip?: number | undefined;
11322
+ page?: number | undefined;
11323
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
11324
+ order?: ("asc" | "desc")[] | undefined;
11325
+ } & Partial<{
11326
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11327
+ }>;
11328
+ } & {
11329
+ headers: {
11330
+ "x-access-token"?: string | undefined;
11331
+ } & Partial<{
11332
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11333
+ }>;
11334
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11335
+ [x: string]: unknown;
11336
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
11337
+ headers?: Partial<{
11338
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11339
+ }>;
11340
+ } & {
11341
+ pathParameters: {
11342
+ contributorId: string;
11343
+ };
11344
+ } & {
11345
+ queryParameters: {
11346
+ extensionId?: string | undefined;
11347
+ extensionInstanceId?: string | undefined;
11348
+ limit?: number | undefined;
11349
+ skip?: number | undefined;
11350
+ page?: number | undefined;
11351
+ sort?: ("attempts" | "nextScheduledExecution")[] | undefined;
11352
+ order?: ("asc" | "desc")[] | undefined;
11353
+ } & Partial<{
11354
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11355
+ }>;
11356
+ } & {
11357
+ headers: {
11358
+ "x-access-token"?: string | undefined;
11359
+ } & Partial<{
11360
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
11361
+ }>;
11362
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
11363
+ [x: string]: unknown;
11364
+ }, 429, "application/json">>>;
11279
11365
  /** List Contributors. */
11280
11366
  extensionListContributors: (request?: {
11281
11367
  headers?: {
@@ -23652,6 +23738,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23652
23738
  }, import("@mittwald/api-client-commons").Response<{
23653
23739
  isEmployee: boolean;
23654
23740
  isImpersonated: boolean;
23741
+ tokenId: string;
23655
23742
  userId: string;
23656
23743
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23657
23744
  [x: string]: unknown;
@@ -23668,6 +23755,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23668
23755
  }, import("@mittwald/api-client-commons").Response<{
23669
23756
  isEmployee: boolean;
23670
23757
  isImpersonated: boolean;
23758
+ tokenId: string;
23671
23759
  userId: string;
23672
23760
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23673
23761
  [x: string]: unknown;
@@ -531,6 +531,8 @@ export declare const extensionGetProjectExtensionInstanceOrders: OpenAPIOperatio
531
531
  export declare const extensionGetPublicKey: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2PublicKeysSerial.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2PublicKeysSerial.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2PublicKeysSerial.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2PublicKeysSerial.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PublicKeysSerial.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PublicKeysSerial.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PublicKeysSerial.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
532
532
  /** Invalidate the given Extension secret immediately. */
533
533
  export declare const extensionInvalidateExtensionSecret: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdSecretExtensionSecretId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
534
+ /** List all Webhook Executions. */
535
+ 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">>;
534
536
  /** List Contributors. */
535
537
  export declare const extensionListContributors: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Contributors.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
536
538
  /** List Extensions. */
@@ -1058,6 +1058,10 @@ export declare namespace MittwaldAPIV2 {
1058
1058
  type RequestData = InferredRequestData<typeof descriptors.extensionInvalidateExtensionSecret>;
1059
1059
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionInvalidateExtensionSecret, TStatus>;
1060
1060
  }
1061
+ namespace ExtensionListAllExtensionInstanceWebhookExecutions {
1062
+ type RequestData = InferredRequestData<typeof descriptors.extensionListAllExtensionInstanceWebhookExecutions>;
1063
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListAllExtensionInstanceWebhookExecutions, TStatus>;
1064
+ }
1061
1065
  namespace ExtensionListContributors {
1062
1066
  type RequestData = InferredRequestData<typeof descriptors.extensionListContributors>;
1063
1067
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListContributors, TStatus>;
@@ -1875,7 +1879,19 @@ export declare namespace MittwaldAPIV2 {
1875
1879
  label?: "lts" | "stable" | "experimental" | "legacy stable" | "preview";
1876
1880
  name: string;
1877
1881
  removalAt?: string;
1882
+ /**
1883
+ * This model was replaced by this value.
1884
+ */
1885
+ replacedBy?: string;
1886
+ /**
1887
+ * @deprecated
1888
+ * This Field is deprecated. You can use replacesModelNames.
1889
+ */
1878
1890
  replacesModelName?: string;
1891
+ /**
1892
+ * List of models which were replaced by this model.
1893
+ */
1894
+ replacesModelNames: string[];
1879
1895
  status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
1880
1896
  termsOfServiceLink: string;
1881
1897
  tokenFactor: number;
@@ -1946,7 +1962,19 @@ export declare namespace MittwaldAPIV2 {
1946
1962
  label?: "lts" | "stable" | "experimental" | "legacy stable" | "preview";
1947
1963
  name: string;
1948
1964
  removalAt?: string;
1965
+ /**
1966
+ * This model was replaced by this value.
1967
+ */
1968
+ replacedBy?: string;
1969
+ /**
1970
+ * @deprecated
1971
+ * This Field is deprecated. You can use replacesModelNames.
1972
+ */
1949
1973
  replacesModelName?: string;
1974
+ /**
1975
+ * List of models which were replaced by this model.
1976
+ */
1977
+ replacesModelNames: string[];
1950
1978
  status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
1951
1979
  termsOfServiceLink: string;
1952
1980
  tokenFactor: number;
@@ -3081,6 +3109,10 @@ export declare namespace MittwaldAPIV2 {
3081
3109
  messageId: string;
3082
3110
  type: "SERVICE_REQUEST";
3083
3111
  }
3112
+ interface ConversationServiceRequestMailSendLimitIncreasePayload {
3113
+ mailAddressId: string;
3114
+ rateLimitId: string;
3115
+ }
3084
3116
  interface ConversationServiceRequestRelocationPayload {
3085
3117
  contact: {
3086
3118
  email: string;
@@ -3126,8 +3158,8 @@ export declare namespace MittwaldAPIV2 {
3126
3158
  userId: string;
3127
3159
  }
3128
3160
  type ConversationServiceRequest = MittwaldAPIV2.Components.Schemas.ConversationGenericServiceRequest & {
3129
- messageContent: "relocation" | "call";
3130
- meta: MittwaldAPIV2.Components.Schemas.ConversationServiceRequestRelocationPayload;
3161
+ messageContent: "relocation" | "call" | "mailSendLimitIncrease";
3162
+ meta: MittwaldAPIV2.Components.Schemas.ConversationServiceRequestRelocationPayload | MittwaldAPIV2.Components.Schemas.ConversationServiceRequestMailSendLimitIncreasePayload;
3131
3163
  };
3132
3164
  type ConversationShareableAggregateReference = {
3133
3165
  aggregate: "user";
@@ -4029,9 +4061,11 @@ export declare namespace MittwaldAPIV2 {
4029
4061
  [k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
4030
4062
  };
4031
4063
  id: string;
4064
+ nextScheduledWebhookExecution?: string;
4032
4065
  pendingInstallation: boolean;
4033
4066
  pendingRemoval: boolean;
4034
4067
  variantKey?: string;
4068
+ webhookExecutionHalted: boolean;
4035
4069
  }
4036
4070
  interface MarketplaceExtensionInstanceChargeability {
4037
4071
  isChargeable: boolean;
@@ -4052,6 +4086,16 @@ export declare namespace MittwaldAPIV2 {
4052
4086
  removalIsPending: boolean;
4053
4087
  webhooksAreHalted: boolean;
4054
4088
  }
4089
+ interface MarketplaceExtensionInstanceWebhookExecution {
4090
+ attempts: number;
4091
+ contributorId: string;
4092
+ extensionId: string;
4093
+ extensionInstanceId: string;
4094
+ id: string;
4095
+ kind: "extensionAddedToContext" | "instanceUpdated" | "secretRotated" | "instanceRemovedFromContext";
4096
+ nextScheduledExecution?: string;
4097
+ state: "running" | "queued" | "halted" | "failed" | "successful";
4098
+ }
4055
4099
  interface MarketplaceExtensionSecret {
4056
4100
  secretId: string;
4057
4101
  usableUntil?: string;
@@ -6094,6 +6138,7 @@ export declare namespace MittwaldAPIV2 {
6094
6138
  }
6095
6139
  interface UserCustomerMembership {
6096
6140
  expiresAt?: string;
6141
+ id: string;
6097
6142
  memberSince: string;
6098
6143
  role: "owner" | "member" | "accountant";
6099
6144
  }
@@ -6106,9 +6151,10 @@ export declare namespace MittwaldAPIV2 {
6106
6151
  }
6107
6152
  interface UserProjectMembership {
6108
6153
  expiresAt?: string;
6154
+ id?: string;
6109
6155
  inherited: boolean;
6110
6156
  memberSince: string;
6111
- role: "owner" | "emailadmin" | "external";
6157
+ role: "owner" | "emailadmin" | "external" | "id";
6112
6158
  }
6113
6159
  interface UserUser {
6114
6160
  avatarRef?: string;
@@ -19939,6 +19985,46 @@ export declare namespace MittwaldAPIV2 {
19939
19985
  }
19940
19986
  }
19941
19987
  }
19988
+ namespace V2ContributorsContributorIdWebhookExecutions {
19989
+ namespace Get {
19990
+ namespace Parameters {
19991
+ type Path = {
19992
+ contributorId: string;
19993
+ };
19994
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
19995
+ type Query = {
19996
+ extensionId?: string;
19997
+ extensionInstanceId?: string;
19998
+ limit?: number;
19999
+ skip?: number;
20000
+ page?: number;
20001
+ sort?: ("attempts" | "nextScheduledExecution")[];
20002
+ order?: ("asc" | "desc")[];
20003
+ };
20004
+ }
20005
+ namespace Responses {
20006
+ namespace $200 {
20007
+ namespace Content {
20008
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecution[];
20009
+ }
20010
+ }
20011
+ namespace $429 {
20012
+ namespace Content {
20013
+ interface ApplicationJson {
20014
+ [k: string]: unknown;
20015
+ }
20016
+ }
20017
+ }
20018
+ namespace Default {
20019
+ namespace Content {
20020
+ interface ApplicationJson {
20021
+ [k: string]: unknown;
20022
+ }
20023
+ }
20024
+ }
20025
+ }
20026
+ }
20027
+ }
19942
20028
  namespace V2Contributors {
19943
20029
  namespace Get {
19944
20030
  namespace Parameters {
@@ -28963,6 +29049,10 @@ export declare namespace MittwaldAPIV2 {
28963
29049
  * Whether the current session is an impersonation.
28964
29050
  */
28965
29051
  isImpersonated: boolean;
29052
+ /**
29053
+ * The ID of the token currently in use.
29054
+ */
29055
+ tokenId: string;
28966
29056
  /**
28967
29057
  * ID of the executing user.
28968
29058
  */
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.378.0';
1
+ export declare const MittwaldAPIClientVersion = '4.382.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.379.0",
3
+ "version": "4.383.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.379.0",
49
+ "@mittwald/api-client-commons": "^4.383.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.379.0",
53
+ "@mittwald/api-code-generator": "^4.383.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": "b9829e46aa83143f531064e091f469089515749e"
83
+ "gitHead": "6a98afd422d25c1ccbed54378a198c47ac811849"
84
84
  }