@mittwald/api-client 4.380.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.
- package/dist/esm/generated/v2/client-react.js +2 -2
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +19 -18
- package/dist/types/generated/v2/client.d.ts +76 -74
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +91 -57
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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. */
|
|
@@ -192,8 +194,6 @@ const buildMarketplaceApi = (baseClient) => ({
|
|
|
192
194
|
extensionListScopes: new ApiCallAsyncResourceFactory(descriptors.extensionListScopes, baseClient.marketplace.extensionListScopes).getApiResource,
|
|
193
195
|
/** Get payment method details */
|
|
194
196
|
customerGetPaymentMethod: new ApiCallAsyncResourceFactory(descriptors.marketplaceCustomerGetPaymentMethod, baseClient.marketplace.customerGetPaymentMethod).getApiResource,
|
|
195
|
-
/** List all Webhook Executions. */
|
|
196
|
-
extensionListAllExtensionInstanceWebhookExecutions: new ApiCallAsyncResourceFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions, baseClient.marketplace.extensionListAllExtensionInstanceWebhookExecutions).getApiResource,
|
|
197
197
|
});
|
|
198
198
|
const buildConversationApi = (baseClient) => ({
|
|
199
199
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -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. */
|
|
@@ -380,8 +382,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
380
382
|
customerGetPaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerGetPaymentMethod),
|
|
381
383
|
/** Get the link to update the marketplace payment method */
|
|
382
384
|
customerUpdatePaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerUpdatePaymentMethod),
|
|
383
|
-
/** List all Webhook Executions. */
|
|
384
|
-
extensionListAllExtensionInstanceWebhookExecutions: this.requestFunctionFactory(descriptors.extensionListAllExtensionInstanceWebhookExecutions),
|
|
385
385
|
};
|
|
386
386
|
/** The conversation API allows you to manage your support conversations. */
|
|
387
387
|
conversation = {
|
|
@@ -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",
|
|
@@ -2782,9 +2788,3 @@ export const verificationVerifyCompany = {
|
|
|
2782
2788
|
method: "POST",
|
|
2783
2789
|
operationId: "verification-verify-company",
|
|
2784
2790
|
};
|
|
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
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.382.0';
|
|
@@ -1471,6 +1471,24 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1471
1471
|
key: string;
|
|
1472
1472
|
serial: string;
|
|
1473
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[]>;
|
|
1474
1492
|
/** List Contributors. */
|
|
1475
1493
|
extensionListContributors: (conf?: {
|
|
1476
1494
|
headers?: {
|
|
@@ -1539,24 +1557,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1539
1557
|
last4: string;
|
|
1540
1558
|
} | undefined;
|
|
1541
1559
|
}>;
|
|
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[]>;
|
|
1560
1560
|
};
|
|
1561
1561
|
declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1562
1562
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
@@ -3039,6 +3039,7 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3039
3039
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
3040
3040
|
isEmployee: boolean;
|
|
3041
3041
|
isImpersonated: boolean;
|
|
3042
|
+
tokenId: string;
|
|
3042
3043
|
userId: string;
|
|
3043
3044
|
}>;
|
|
3044
3045
|
/** The timestamp of your latest password change. */
|
|
@@ -11288,6 +11288,80 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11288
11288
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
11289
11289
|
[x: string]: unknown;
|
|
11290
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">>>;
|
|
11291
11365
|
/** List Contributors. */
|
|
11292
11366
|
extensionListContributors: (request?: {
|
|
11293
11367
|
headers?: {
|
|
@@ -12373,80 +12447,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12373
12447
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12374
12448
|
[x: string]: unknown;
|
|
12375
12449
|
}, 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">>>;
|
|
12450
12450
|
};
|
|
12451
12451
|
/** The conversation API allows you to manage your support conversations. */
|
|
12452
12452
|
readonly conversation: {
|
|
@@ -23738,6 +23738,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23738
23738
|
}, import("@mittwald/api-client-commons").Response<{
|
|
23739
23739
|
isEmployee: boolean;
|
|
23740
23740
|
isImpersonated: boolean;
|
|
23741
|
+
tokenId: string;
|
|
23741
23742
|
userId: string;
|
|
23742
23743
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23743
23744
|
[x: string]: unknown;
|
|
@@ -23754,6 +23755,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23754
23755
|
}, import("@mittwald/api-client-commons").Response<{
|
|
23755
23756
|
isEmployee: boolean;
|
|
23756
23757
|
isImpersonated: boolean;
|
|
23758
|
+
tokenId: string;
|
|
23757
23759
|
userId: string;
|
|
23758
23760
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
23759
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. */
|
|
@@ -931,5 +933,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
931
933
|
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
934
|
/** Check if a company exists. */
|
|
933
935
|
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">>;
|
|
@@ -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>;
|
|
@@ -1858,10 +1862,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1858
1862
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1859
1863
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1860
1864
|
}
|
|
1861
|
-
namespace ExtensionListAllExtensionInstanceWebhookExecutions {
|
|
1862
|
-
type RequestData = InferredRequestData<typeof descriptors.extensionListAllExtensionInstanceWebhookExecutions>;
|
|
1863
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListAllExtensionInstanceWebhookExecutions, TStatus>;
|
|
1864
|
-
}
|
|
1865
1865
|
}
|
|
1866
1866
|
namespace Components {
|
|
1867
1867
|
namespace Schemas {
|
|
@@ -1879,7 +1879,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1879
1879
|
label?: "lts" | "stable" | "experimental" | "legacy stable" | "preview";
|
|
1880
1880
|
name: string;
|
|
1881
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
|
+
*/
|
|
1882
1890
|
replacesModelName?: string;
|
|
1891
|
+
/**
|
|
1892
|
+
* List of models which were replaced by this model.
|
|
1893
|
+
*/
|
|
1894
|
+
replacesModelNames: string[];
|
|
1883
1895
|
status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
|
|
1884
1896
|
termsOfServiceLink: string;
|
|
1885
1897
|
tokenFactor: number;
|
|
@@ -1950,7 +1962,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1950
1962
|
label?: "lts" | "stable" | "experimental" | "legacy stable" | "preview";
|
|
1951
1963
|
name: string;
|
|
1952
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
|
+
*/
|
|
1953
1973
|
replacesModelName?: string;
|
|
1974
|
+
/**
|
|
1975
|
+
* List of models which were replaced by this model.
|
|
1976
|
+
*/
|
|
1977
|
+
replacesModelNames: string[];
|
|
1954
1978
|
status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
|
|
1955
1979
|
termsOfServiceLink: string;
|
|
1956
1980
|
tokenFactor: number;
|
|
@@ -3085,6 +3109,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3085
3109
|
messageId: string;
|
|
3086
3110
|
type: "SERVICE_REQUEST";
|
|
3087
3111
|
}
|
|
3112
|
+
interface ConversationServiceRequestMailSendLimitIncreasePayload {
|
|
3113
|
+
mailAddressId: string;
|
|
3114
|
+
rateLimitId: string;
|
|
3115
|
+
}
|
|
3088
3116
|
interface ConversationServiceRequestRelocationPayload {
|
|
3089
3117
|
contact: {
|
|
3090
3118
|
email: string;
|
|
@@ -3130,8 +3158,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3130
3158
|
userId: string;
|
|
3131
3159
|
}
|
|
3132
3160
|
type ConversationServiceRequest = MittwaldAPIV2.Components.Schemas.ConversationGenericServiceRequest & {
|
|
3133
|
-
messageContent: "relocation" | "call";
|
|
3134
|
-
meta: MittwaldAPIV2.Components.Schemas.ConversationServiceRequestRelocationPayload;
|
|
3161
|
+
messageContent: "relocation" | "call" | "mailSendLimitIncrease";
|
|
3162
|
+
meta: MittwaldAPIV2.Components.Schemas.ConversationServiceRequestRelocationPayload | MittwaldAPIV2.Components.Schemas.ConversationServiceRequestMailSendLimitIncreasePayload;
|
|
3135
3163
|
};
|
|
3136
3164
|
type ConversationShareableAggregateReference = {
|
|
3137
3165
|
aggregate: "user";
|
|
@@ -4058,6 +4086,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4058
4086
|
removalIsPending: boolean;
|
|
4059
4087
|
webhooksAreHalted: boolean;
|
|
4060
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
|
+
}
|
|
4061
4099
|
interface MarketplaceExtensionSecret {
|
|
4062
4100
|
secretId: string;
|
|
4063
4101
|
usableUntil?: string;
|
|
@@ -6100,6 +6138,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6100
6138
|
}
|
|
6101
6139
|
interface UserCustomerMembership {
|
|
6102
6140
|
expiresAt?: string;
|
|
6141
|
+
id: string;
|
|
6103
6142
|
memberSince: string;
|
|
6104
6143
|
role: "owner" | "member" | "accountant";
|
|
6105
6144
|
}
|
|
@@ -6112,9 +6151,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6112
6151
|
}
|
|
6113
6152
|
interface UserProjectMembership {
|
|
6114
6153
|
expiresAt?: string;
|
|
6154
|
+
id?: string;
|
|
6115
6155
|
inherited: boolean;
|
|
6116
6156
|
memberSince: string;
|
|
6117
|
-
role: "owner" | "emailadmin" | "external";
|
|
6157
|
+
role: "owner" | "emailadmin" | "external" | "id";
|
|
6118
6158
|
}
|
|
6119
6159
|
interface UserUser {
|
|
6120
6160
|
avatarRef?: string;
|
|
@@ -6238,16 +6278,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6238
6278
|
}
|
|
6239
6279
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6240
6280
|
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
|
-
}
|
|
6251
6281
|
interface CommonsAddress {
|
|
6252
6282
|
street: string;
|
|
6253
6283
|
houseNumber: string;
|
|
@@ -19955,6 +19985,46 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19955
19985
|
}
|
|
19956
19986
|
}
|
|
19957
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
|
+
}
|
|
19958
20028
|
namespace V2Contributors {
|
|
19959
20029
|
namespace Get {
|
|
19960
20030
|
namespace Parameters {
|
|
@@ -28979,6 +29049,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
28979
29049
|
* Whether the current session is an impersonation.
|
|
28980
29050
|
*/
|
|
28981
29051
|
isImpersonated: boolean;
|
|
29052
|
+
/**
|
|
29053
|
+
* The ID of the token currently in use.
|
|
29054
|
+
*/
|
|
29055
|
+
tokenId: string;
|
|
28982
29056
|
/**
|
|
28983
29057
|
* ID of the executing user.
|
|
28984
29058
|
*/
|
|
@@ -30304,45 +30378,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
30304
30378
|
}
|
|
30305
30379
|
}
|
|
30306
30380
|
}
|
|
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
|
-
}
|
|
30347
30381
|
}
|
|
30348
30382
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
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.
|
|
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.
|
|
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.
|
|
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": "
|
|
83
|
+
"gitHead": "6a98afd422d25c1ccbed54378a198c47ac811849"
|
|
84
84
|
}
|