@mittwald/api-client 4.115.1 → 4.117.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 -0
- package/dist/esm/generated/v2/client.js +8 -0
- package/dist/esm/generated/v2/descriptors.js +24 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +44 -0
- package/dist/types/generated/v2/client.d.ts +509 -0
- package/dist/types/generated/v2/descriptors.d.ts +8 -0
- package/dist/types/generated/v2/types.d.ts +231 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -202,6 +202,8 @@ const buildMarketplaceApi = (baseClient) => ({
|
|
|
202
202
|
extensionGetExtensionInstanceForProject: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstanceForProject, baseClient.marketplace.extensionGetExtensionInstanceForProject).getApiResource,
|
|
203
203
|
/** Get an Extension. */
|
|
204
204
|
extensionGetExtension: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtension, baseClient.marketplace.extensionGetExtension).getApiResource,
|
|
205
|
+
/** Get Extension of own contributor. */
|
|
206
|
+
extensionGetOwnExtension: new ApiCallAsyncResourceFactory(descriptors.extensionGetOwnExtension, baseClient.marketplace.extensionGetOwnExtension).getApiResource,
|
|
205
207
|
/** Get the public key to verify the webhook signature. */
|
|
206
208
|
extensionGetPublicKey: new ApiCallAsyncResourceFactory(descriptors.extensionGetPublicKey, baseClient.marketplace.extensionGetPublicKey).getApiResource,
|
|
207
209
|
/** List Contributors. */
|
|
@@ -178,6 +178,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
178
178
|
extensionGetExtensionInstanceForProject: this.requestFunctionFactory(descriptors.extensionGetExtensionInstanceForProject),
|
|
179
179
|
/** Get an Extension. */
|
|
180
180
|
extensionGetExtension: this.requestFunctionFactory(descriptors.extensionGetExtension),
|
|
181
|
+
/** Get Extension of own contributor. */
|
|
182
|
+
extensionGetOwnExtension: this.requestFunctionFactory(descriptors.extensionGetOwnExtension),
|
|
183
|
+
/** Patch Extension. */
|
|
184
|
+
extensionPatchExtension: this.requestFunctionFactory(descriptors.extensionPatchExtension),
|
|
181
185
|
/** Get the public key to verify the webhook signature. */
|
|
182
186
|
extensionGetPublicKey: this.requestFunctionFactory(descriptors.extensionGetPublicKey),
|
|
183
187
|
/** List Contributors. */
|
|
@@ -186,6 +190,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
186
190
|
extensionListExtensions: this.requestFunctionFactory(descriptors.extensionListExtensions),
|
|
187
191
|
/** List Extensions of own contributor. */
|
|
188
192
|
extensionListOwnExtensions: this.requestFunctionFactory(descriptors.extensionListOwnExtensions),
|
|
193
|
+
/** Register an Extension. */
|
|
194
|
+
extensionRegisterExtension: this.requestFunctionFactory(descriptors.extensionRegisterExtension),
|
|
195
|
+
/** Generate a session key to transmit it to the extensions frontend fragment. */
|
|
196
|
+
extensionGenerateSessionKey: this.requestFunctionFactory(descriptors.extensionGenerateSessionKey),
|
|
189
197
|
};
|
|
190
198
|
/** The conversation API allows you to manage your support conversations. */
|
|
191
199
|
conversation = {
|
|
@@ -1024,6 +1024,18 @@ export const extensionGetExtension = {
|
|
|
1024
1024
|
method: "GET",
|
|
1025
1025
|
operationId: "extension-get-extension",
|
|
1026
1026
|
};
|
|
1027
|
+
/** Get Extension of own contributor. */
|
|
1028
|
+
export const extensionGetOwnExtension = {
|
|
1029
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
1030
|
+
method: "GET",
|
|
1031
|
+
operationId: "extension-get-own-extension",
|
|
1032
|
+
};
|
|
1033
|
+
/** Patch Extension. */
|
|
1034
|
+
export const extensionPatchExtension = {
|
|
1035
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
1036
|
+
method: "PATCH",
|
|
1037
|
+
operationId: "extension-patch-extension",
|
|
1038
|
+
};
|
|
1027
1039
|
/** Get the public key to verify the webhook signature. */
|
|
1028
1040
|
export const extensionGetPublicKey = {
|
|
1029
1041
|
path: "/v2/webhook-public-keys/{serial}",
|
|
@@ -1048,6 +1060,12 @@ export const extensionListOwnExtensions = {
|
|
|
1048
1060
|
method: "GET",
|
|
1049
1061
|
operationId: "extension-list-own-extensions",
|
|
1050
1062
|
};
|
|
1063
|
+
/** Register an Extension. */
|
|
1064
|
+
export const extensionRegisterExtension = {
|
|
1065
|
+
path: "/v2/contributors/{contributorId}/extensions",
|
|
1066
|
+
method: "POST",
|
|
1067
|
+
operationId: "extension-register-extension",
|
|
1068
|
+
};
|
|
1051
1069
|
/** Create a File. */
|
|
1052
1070
|
export const fileCreateFile = {
|
|
1053
1071
|
path: "/v2/files",
|
|
@@ -2026,3 +2044,9 @@ export const verificationVerifyCompany = {
|
|
|
2026
2044
|
method: "POST",
|
|
2027
2045
|
operationId: "verification-verify-company",
|
|
2028
2046
|
};
|
|
2047
|
+
/** Generate a session key to transmit it to the extensions frontend fragment. */
|
|
2048
|
+
export const extensionGenerateSessionKey = {
|
|
2049
|
+
path: "/v2/extension-instances/{extensionInstanceId}/session/{sessionId}",
|
|
2050
|
+
method: "POST",
|
|
2051
|
+
operationId: "extension-generate-session-key",
|
|
2052
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.116.0';
|
|
@@ -1493,6 +1493,50 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1493
1493
|
support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
1494
1494
|
tags: string[];
|
|
1495
1495
|
}>;
|
|
1496
|
+
/** Get Extension of own contributor. */
|
|
1497
|
+
extensionGetOwnExtension: (conf: {
|
|
1498
|
+
contributorId: string;
|
|
1499
|
+
extensionId: string;
|
|
1500
|
+
headers?: {
|
|
1501
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1502
|
+
"x-access-token"?: string | undefined;
|
|
1503
|
+
} | undefined;
|
|
1504
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1505
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
1506
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
1507
|
+
blocked?: boolean | undefined;
|
|
1508
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1509
|
+
contributorId: string;
|
|
1510
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1511
|
+
description?: string | undefined;
|
|
1512
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
1513
|
+
disabled?: boolean | undefined;
|
|
1514
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1515
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1516
|
+
frontendFragments?: {
|
|
1517
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1518
|
+
} | undefined;
|
|
1519
|
+
functional: boolean;
|
|
1520
|
+
id: string;
|
|
1521
|
+
logoRefId?: string | undefined;
|
|
1522
|
+
name: string;
|
|
1523
|
+
published: boolean;
|
|
1524
|
+
requestedChanges?: {
|
|
1525
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
1526
|
+
scopes?: string[];
|
|
1527
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
1528
|
+
} | undefined;
|
|
1529
|
+
scopes?: string[] | undefined;
|
|
1530
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
1531
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
1532
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
1533
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1534
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
1535
|
+
tags?: string[] | undefined;
|
|
1536
|
+
verificationRequested: boolean;
|
|
1537
|
+
verified: boolean;
|
|
1538
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
1539
|
+
}>;
|
|
1496
1540
|
/** Get the public key to verify the webhook signature. */
|
|
1497
1541
|
extensionGetPublicKey: (conf: {
|
|
1498
1542
|
serial: string;
|
|
@@ -5164,6 +5164,332 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5164
5164
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5165
5165
|
[x: string]: unknown;
|
|
5166
5166
|
}, 429, "application/json">>>;
|
|
5167
|
+
/** Get Extension of own contributor. */
|
|
5168
|
+
extensionGetOwnExtension: (request: {
|
|
5169
|
+
contributorId: string;
|
|
5170
|
+
extensionId: string;
|
|
5171
|
+
headers?: {
|
|
5172
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5173
|
+
"x-access-token"?: string | undefined;
|
|
5174
|
+
} | undefined;
|
|
5175
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5176
|
+
headers?: Partial<{
|
|
5177
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5178
|
+
}>;
|
|
5179
|
+
} & {
|
|
5180
|
+
pathParameters: {
|
|
5181
|
+
contributorId: string;
|
|
5182
|
+
extensionId: string;
|
|
5183
|
+
};
|
|
5184
|
+
} & {
|
|
5185
|
+
headers: {
|
|
5186
|
+
"x-access-token"?: string | undefined;
|
|
5187
|
+
} & Partial<{
|
|
5188
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5189
|
+
}>;
|
|
5190
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5191
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
5192
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
5193
|
+
blocked?: boolean | undefined;
|
|
5194
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
5195
|
+
contributorId: string;
|
|
5196
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
5197
|
+
description?: string | undefined;
|
|
5198
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5199
|
+
disabled?: boolean | undefined;
|
|
5200
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5201
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5202
|
+
frontendFragments?: {
|
|
5203
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5204
|
+
} | undefined;
|
|
5205
|
+
functional: boolean;
|
|
5206
|
+
id: string;
|
|
5207
|
+
logoRefId?: string | undefined;
|
|
5208
|
+
name: string;
|
|
5209
|
+
published: boolean;
|
|
5210
|
+
requestedChanges?: {
|
|
5211
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
5212
|
+
scopes?: string[];
|
|
5213
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
5214
|
+
} | undefined;
|
|
5215
|
+
scopes?: string[] | undefined;
|
|
5216
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
5217
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
5218
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
5219
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5220
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5221
|
+
tags?: string[] | undefined;
|
|
5222
|
+
verificationRequested: boolean;
|
|
5223
|
+
verified: boolean;
|
|
5224
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5225
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5226
|
+
[x: string]: unknown;
|
|
5227
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5228
|
+
[x: string]: unknown;
|
|
5229
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5230
|
+
headers?: Partial<{
|
|
5231
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5232
|
+
}>;
|
|
5233
|
+
} & {
|
|
5234
|
+
pathParameters: {
|
|
5235
|
+
contributorId: string;
|
|
5236
|
+
extensionId: string;
|
|
5237
|
+
};
|
|
5238
|
+
} & {
|
|
5239
|
+
headers: {
|
|
5240
|
+
"x-access-token"?: string | undefined;
|
|
5241
|
+
} & Partial<{
|
|
5242
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5243
|
+
}>;
|
|
5244
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5245
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
5246
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
5247
|
+
blocked?: boolean | undefined;
|
|
5248
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
5249
|
+
contributorId: string;
|
|
5250
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
5251
|
+
description?: string | undefined;
|
|
5252
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5253
|
+
disabled?: boolean | undefined;
|
|
5254
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5255
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5256
|
+
frontendFragments?: {
|
|
5257
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5258
|
+
} | undefined;
|
|
5259
|
+
functional: boolean;
|
|
5260
|
+
id: string;
|
|
5261
|
+
logoRefId?: string | undefined;
|
|
5262
|
+
name: string;
|
|
5263
|
+
published: boolean;
|
|
5264
|
+
requestedChanges?: {
|
|
5265
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
5266
|
+
scopes?: string[];
|
|
5267
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
5268
|
+
} | undefined;
|
|
5269
|
+
scopes?: string[] | undefined;
|
|
5270
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
5271
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
5272
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
5273
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5274
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5275
|
+
tags?: string[] | undefined;
|
|
5276
|
+
verificationRequested: boolean;
|
|
5277
|
+
verified: boolean;
|
|
5278
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5279
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5280
|
+
[x: string]: unknown;
|
|
5281
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5282
|
+
[x: string]: unknown;
|
|
5283
|
+
}, 429, "application/json">>>;
|
|
5284
|
+
/** Patch Extension. */
|
|
5285
|
+
extensionPatchExtension: (request: {
|
|
5286
|
+
contributorId: string;
|
|
5287
|
+
extensionId: string;
|
|
5288
|
+
data?: {
|
|
5289
|
+
deprecation?: {
|
|
5290
|
+
deprecatedAt: string;
|
|
5291
|
+
note?: string | undefined;
|
|
5292
|
+
successorId?: string | undefined;
|
|
5293
|
+
} | undefined;
|
|
5294
|
+
description?: string | undefined;
|
|
5295
|
+
detailedDescriptions?: {
|
|
5296
|
+
de: {
|
|
5297
|
+
markdown: string;
|
|
5298
|
+
plain?: string | undefined;
|
|
5299
|
+
};
|
|
5300
|
+
en?: {
|
|
5301
|
+
markdown: string;
|
|
5302
|
+
plain?: string | undefined;
|
|
5303
|
+
} | undefined;
|
|
5304
|
+
} | undefined;
|
|
5305
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5306
|
+
frontendFragments?: {
|
|
5307
|
+
[x: string]: {
|
|
5308
|
+
url: string;
|
|
5309
|
+
additionalProperties?: {
|
|
5310
|
+
[x: string]: string;
|
|
5311
|
+
} | undefined;
|
|
5312
|
+
};
|
|
5313
|
+
} | undefined;
|
|
5314
|
+
name?: string | undefined;
|
|
5315
|
+
scopes?: string[] | undefined;
|
|
5316
|
+
subTitle?: {
|
|
5317
|
+
de: string;
|
|
5318
|
+
en?: string | undefined;
|
|
5319
|
+
} | undefined;
|
|
5320
|
+
support?: {
|
|
5321
|
+
email?: string | undefined;
|
|
5322
|
+
phone?: string | undefined;
|
|
5323
|
+
} | undefined;
|
|
5324
|
+
tags?: string[] | undefined;
|
|
5325
|
+
webhookUrls?: {
|
|
5326
|
+
extensionAddedToContext: {
|
|
5327
|
+
url: string;
|
|
5328
|
+
};
|
|
5329
|
+
extensionInstanceRemovedFromContext: {
|
|
5330
|
+
url: string;
|
|
5331
|
+
};
|
|
5332
|
+
extensionInstanceSecretRotated: {
|
|
5333
|
+
url: string;
|
|
5334
|
+
};
|
|
5335
|
+
extensionInstanceUpdated: {
|
|
5336
|
+
url: string;
|
|
5337
|
+
};
|
|
5338
|
+
} | undefined;
|
|
5339
|
+
} | undefined;
|
|
5340
|
+
headers?: {
|
|
5341
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5342
|
+
"x-access-token"?: string | undefined;
|
|
5343
|
+
} | undefined;
|
|
5344
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5345
|
+
data: {
|
|
5346
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
5347
|
+
description?: string | undefined;
|
|
5348
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5349
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5350
|
+
frontendFragments?: {
|
|
5351
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5352
|
+
} | undefined;
|
|
5353
|
+
name?: string | undefined;
|
|
5354
|
+
scopes?: string[] | undefined;
|
|
5355
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5356
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5357
|
+
tags?: string[] | undefined;
|
|
5358
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5359
|
+
};
|
|
5360
|
+
} & {
|
|
5361
|
+
pathParameters: {
|
|
5362
|
+
contributorId: string;
|
|
5363
|
+
extensionId: string;
|
|
5364
|
+
};
|
|
5365
|
+
} & {
|
|
5366
|
+
headers?: Partial<{
|
|
5367
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5368
|
+
}>;
|
|
5369
|
+
} & {
|
|
5370
|
+
headers: {
|
|
5371
|
+
"x-access-token"?: string | undefined;
|
|
5372
|
+
} & Partial<{
|
|
5373
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5374
|
+
}>;
|
|
5375
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5376
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
5377
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
5378
|
+
blocked?: boolean | undefined;
|
|
5379
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
5380
|
+
contributorId: string;
|
|
5381
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
5382
|
+
description?: string | undefined;
|
|
5383
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5384
|
+
disabled?: boolean | undefined;
|
|
5385
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5386
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5387
|
+
frontendFragments?: {
|
|
5388
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5389
|
+
} | undefined;
|
|
5390
|
+
functional: boolean;
|
|
5391
|
+
id: string;
|
|
5392
|
+
logoRefId?: string | undefined;
|
|
5393
|
+
name: string;
|
|
5394
|
+
published: boolean;
|
|
5395
|
+
requestedChanges?: {
|
|
5396
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
5397
|
+
scopes?: string[];
|
|
5398
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
5399
|
+
} | undefined;
|
|
5400
|
+
scopes?: string[] | undefined;
|
|
5401
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
5402
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
5403
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
5404
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5405
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5406
|
+
tags?: string[] | undefined;
|
|
5407
|
+
verificationRequested: boolean;
|
|
5408
|
+
verified: boolean;
|
|
5409
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5410
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5411
|
+
[x: string]: unknown;
|
|
5412
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5413
|
+
[x: string]: unknown;
|
|
5414
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5415
|
+
[x: string]: unknown;
|
|
5416
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5417
|
+
[x: string]: unknown;
|
|
5418
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5419
|
+
data: {
|
|
5420
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
5421
|
+
description?: string | undefined;
|
|
5422
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5423
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5424
|
+
frontendFragments?: {
|
|
5425
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5426
|
+
} | undefined;
|
|
5427
|
+
name?: string | undefined;
|
|
5428
|
+
scopes?: string[] | undefined;
|
|
5429
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5430
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5431
|
+
tags?: string[] | undefined;
|
|
5432
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5433
|
+
};
|
|
5434
|
+
} & {
|
|
5435
|
+
pathParameters: {
|
|
5436
|
+
contributorId: string;
|
|
5437
|
+
extensionId: string;
|
|
5438
|
+
};
|
|
5439
|
+
} & {
|
|
5440
|
+
headers?: Partial<{
|
|
5441
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5442
|
+
}>;
|
|
5443
|
+
} & {
|
|
5444
|
+
headers: {
|
|
5445
|
+
"x-access-token"?: string | undefined;
|
|
5446
|
+
} & Partial<{
|
|
5447
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5448
|
+
}>;
|
|
5449
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5450
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
5451
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
5452
|
+
blocked?: boolean | undefined;
|
|
5453
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
5454
|
+
contributorId: string;
|
|
5455
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
5456
|
+
description?: string | undefined;
|
|
5457
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5458
|
+
disabled?: boolean | undefined;
|
|
5459
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5460
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5461
|
+
frontendFragments?: {
|
|
5462
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5463
|
+
} | undefined;
|
|
5464
|
+
functional: boolean;
|
|
5465
|
+
id: string;
|
|
5466
|
+
logoRefId?: string | undefined;
|
|
5467
|
+
name: string;
|
|
5468
|
+
published: boolean;
|
|
5469
|
+
requestedChanges?: {
|
|
5470
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
5471
|
+
scopes?: string[];
|
|
5472
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
5473
|
+
} | undefined;
|
|
5474
|
+
scopes?: string[] | undefined;
|
|
5475
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
5476
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
5477
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
5478
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5479
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5480
|
+
tags?: string[] | undefined;
|
|
5481
|
+
verificationRequested: boolean;
|
|
5482
|
+
verified: boolean;
|
|
5483
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5484
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5485
|
+
[x: string]: unknown;
|
|
5486
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5487
|
+
[x: string]: unknown;
|
|
5488
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5489
|
+
[x: string]: unknown;
|
|
5490
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5491
|
+
[x: string]: unknown;
|
|
5492
|
+
}, 429, "application/json">>>;
|
|
5167
5493
|
/** Get the public key to verify the webhook signature. */
|
|
5168
5494
|
extensionGetPublicKey: (request: {
|
|
5169
5495
|
serial: string;
|
|
@@ -5348,6 +5674,189 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5348
5674
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5349
5675
|
[x: string]: unknown;
|
|
5350
5676
|
}, 429, "application/json">>>;
|
|
5677
|
+
/** Register an Extension. */
|
|
5678
|
+
extensionRegisterExtension: (request: {
|
|
5679
|
+
data: {
|
|
5680
|
+
name: string;
|
|
5681
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
5682
|
+
description?: string | undefined;
|
|
5683
|
+
detailedDescriptions?: {
|
|
5684
|
+
de: {
|
|
5685
|
+
markdown: string;
|
|
5686
|
+
plain?: string | undefined;
|
|
5687
|
+
};
|
|
5688
|
+
en?: {
|
|
5689
|
+
markdown: string;
|
|
5690
|
+
plain?: string | undefined;
|
|
5691
|
+
} | undefined;
|
|
5692
|
+
} | undefined;
|
|
5693
|
+
externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5694
|
+
frontendFragments?: {
|
|
5695
|
+
[x: string]: {
|
|
5696
|
+
url: string;
|
|
5697
|
+
additionalProperties?: {
|
|
5698
|
+
[x: string]: string;
|
|
5699
|
+
} | undefined;
|
|
5700
|
+
};
|
|
5701
|
+
} | undefined;
|
|
5702
|
+
scopes?: string[] | undefined;
|
|
5703
|
+
subTitle?: {
|
|
5704
|
+
de: string;
|
|
5705
|
+
en?: string | undefined;
|
|
5706
|
+
} | undefined;
|
|
5707
|
+
support?: {
|
|
5708
|
+
email?: string | undefined;
|
|
5709
|
+
phone?: string | undefined;
|
|
5710
|
+
} | undefined;
|
|
5711
|
+
tags?: string[] | undefined;
|
|
5712
|
+
webhookURLs?: {
|
|
5713
|
+
extensionAddedToContext: {
|
|
5714
|
+
url: string;
|
|
5715
|
+
};
|
|
5716
|
+
extensionInstanceRemovedFromContext: {
|
|
5717
|
+
url: string;
|
|
5718
|
+
};
|
|
5719
|
+
extensionInstanceSecretRotated: {
|
|
5720
|
+
url: string;
|
|
5721
|
+
};
|
|
5722
|
+
extensionInstanceUpdated: {
|
|
5723
|
+
url: string;
|
|
5724
|
+
};
|
|
5725
|
+
} | undefined;
|
|
5726
|
+
};
|
|
5727
|
+
contributorId: string;
|
|
5728
|
+
headers?: {
|
|
5729
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5730
|
+
"x-access-token"?: string | undefined;
|
|
5731
|
+
} | undefined;
|
|
5732
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5733
|
+
data: {
|
|
5734
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
5735
|
+
description?: string | undefined;
|
|
5736
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5737
|
+
externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5738
|
+
frontendFragments?: {
|
|
5739
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5740
|
+
} | undefined;
|
|
5741
|
+
name: string;
|
|
5742
|
+
scopes?: string[] | undefined;
|
|
5743
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5744
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5745
|
+
tags?: string[] | undefined;
|
|
5746
|
+
webhookURLs?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5747
|
+
};
|
|
5748
|
+
} & {
|
|
5749
|
+
pathParameters: {
|
|
5750
|
+
contributorId: string;
|
|
5751
|
+
};
|
|
5752
|
+
} & {
|
|
5753
|
+
headers?: Partial<{
|
|
5754
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5755
|
+
}>;
|
|
5756
|
+
} & {
|
|
5757
|
+
headers: {
|
|
5758
|
+
"x-access-token"?: string | undefined;
|
|
5759
|
+
} & Partial<{
|
|
5760
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5761
|
+
}>;
|
|
5762
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5763
|
+
id: string;
|
|
5764
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5765
|
+
[x: string]: unknown;
|
|
5766
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5767
|
+
[x: string]: unknown;
|
|
5768
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5769
|
+
data: {
|
|
5770
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
5771
|
+
description?: string | undefined;
|
|
5772
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
5773
|
+
externalFrontend?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
5774
|
+
frontendFragments?: {
|
|
5775
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
5776
|
+
} | undefined;
|
|
5777
|
+
name: string;
|
|
5778
|
+
scopes?: string[] | undefined;
|
|
5779
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
5780
|
+
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
|
|
5781
|
+
tags?: string[] | undefined;
|
|
5782
|
+
webhookURLs?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
5783
|
+
};
|
|
5784
|
+
} & {
|
|
5785
|
+
pathParameters: {
|
|
5786
|
+
contributorId: string;
|
|
5787
|
+
};
|
|
5788
|
+
} & {
|
|
5789
|
+
headers?: Partial<{
|
|
5790
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5791
|
+
}>;
|
|
5792
|
+
} & {
|
|
5793
|
+
headers: {
|
|
5794
|
+
"x-access-token"?: string | undefined;
|
|
5795
|
+
} & Partial<{
|
|
5796
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5797
|
+
}>;
|
|
5798
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5799
|
+
id: string;
|
|
5800
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5801
|
+
[x: string]: unknown;
|
|
5802
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5803
|
+
[x: string]: unknown;
|
|
5804
|
+
}, 429, "application/json">>>;
|
|
5805
|
+
/** Generate a session key to transmit it to the extensions frontend fragment. */
|
|
5806
|
+
extensionGenerateSessionKey: (request: {
|
|
5807
|
+
extensionInstanceId: string;
|
|
5808
|
+
sessionId: string;
|
|
5809
|
+
headers?: {
|
|
5810
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5811
|
+
"x-access-token"?: string | undefined;
|
|
5812
|
+
} | undefined;
|
|
5813
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5814
|
+
headers?: Partial<{
|
|
5815
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5816
|
+
}>;
|
|
5817
|
+
} & {
|
|
5818
|
+
pathParameters: {
|
|
5819
|
+
extensionInstanceId: string;
|
|
5820
|
+
sessionId: string;
|
|
5821
|
+
};
|
|
5822
|
+
} & {
|
|
5823
|
+
headers: {
|
|
5824
|
+
"x-access-token"?: string | undefined;
|
|
5825
|
+
} & Partial<{
|
|
5826
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5827
|
+
}>;
|
|
5828
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5829
|
+
sessionKeyJwt?: string | undefined;
|
|
5830
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5831
|
+
[x: string]: unknown;
|
|
5832
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5833
|
+
[x: string]: unknown;
|
|
5834
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5835
|
+
[x: string]: unknown;
|
|
5836
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5837
|
+
headers?: Partial<{
|
|
5838
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5839
|
+
}>;
|
|
5840
|
+
} & {
|
|
5841
|
+
pathParameters: {
|
|
5842
|
+
extensionInstanceId: string;
|
|
5843
|
+
sessionId: string;
|
|
5844
|
+
};
|
|
5845
|
+
} & {
|
|
5846
|
+
headers: {
|
|
5847
|
+
"x-access-token"?: string | undefined;
|
|
5848
|
+
} & Partial<{
|
|
5849
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5850
|
+
}>;
|
|
5851
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5852
|
+
sessionKeyJwt?: string | undefined;
|
|
5853
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5854
|
+
[x: string]: unknown;
|
|
5855
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5856
|
+
[x: string]: unknown;
|
|
5857
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5858
|
+
[x: string]: unknown;
|
|
5859
|
+
}, 429, "application/json">>>;
|
|
5351
5860
|
};
|
|
5352
5861
|
/** The conversation API allows you to manage your support conversations. */
|
|
5353
5862
|
readonly conversation: {
|
|
@@ -345,6 +345,10 @@ export declare const extensionGetExtensionInstanceForCustomer: OpenAPIOperation<
|
|
|
345
345
|
export declare const extensionGetExtensionInstanceForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
346
346
|
/** Get an Extension. */
|
|
347
347
|
export declare const extensionGetExtension: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
348
|
+
/** Get Extension of own contributor. */
|
|
349
|
+
export declare const extensionGetOwnExtension: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
350
|
+
/** Patch Extension. */
|
|
351
|
+
export declare const extensionPatchExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
348
352
|
/** Get the public key to verify the webhook signature. */
|
|
349
353
|
export declare const extensionGetPublicKey: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2WebhookPublicKeysSerial.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2WebhookPublicKeysSerial.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2WebhookPublicKeysSerial.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2WebhookPublicKeysSerial.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2WebhookPublicKeysSerial.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2WebhookPublicKeysSerial.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2WebhookPublicKeysSerial.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
350
354
|
/** List Contributors. */
|
|
@@ -353,6 +357,8 @@ export declare const extensionListContributors: OpenAPIOperation<RequestType<Sim
|
|
|
353
357
|
export declare const extensionListExtensions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Extensions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
354
358
|
/** List Extensions of own contributor. */
|
|
355
359
|
export declare const extensionListOwnExtensions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
360
|
+
/** Register an Extension. */
|
|
361
|
+
export declare const extensionRegisterExtension: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensions.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
356
362
|
/** Create a File. */
|
|
357
363
|
export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
358
364
|
/** Get a File's meta. */
|
|
@@ -679,3 +685,5 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
|
|
|
679
685
|
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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
680
686
|
/** Check if a company exists. */
|
|
681
687
|
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.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
688
|
+
/** Generate a session key to transmit it to the extensions frontend fragment. */
|
|
689
|
+
export declare const extensionGenerateSessionKey: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdSessionSessionId.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -686,6 +686,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
686
686
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtension>;
|
|
687
687
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtension, TStatus>;
|
|
688
688
|
}
|
|
689
|
+
namespace ExtensionGetOwnExtension {
|
|
690
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionGetOwnExtension>;
|
|
691
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetOwnExtension, TStatus>;
|
|
692
|
+
}
|
|
693
|
+
namespace ExtensionPatchExtension {
|
|
694
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionPatchExtension>;
|
|
695
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionPatchExtension, TStatus>;
|
|
696
|
+
}
|
|
689
697
|
namespace ExtensionGetPublicKey {
|
|
690
698
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetPublicKey>;
|
|
691
699
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetPublicKey, TStatus>;
|
|
@@ -702,6 +710,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
702
710
|
type RequestData = InferredRequestData<typeof descriptors.extensionListOwnExtensions>;
|
|
703
711
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionListOwnExtensions, TStatus>;
|
|
704
712
|
}
|
|
713
|
+
namespace ExtensionRegisterExtension {
|
|
714
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionRegisterExtension>;
|
|
715
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionRegisterExtension, TStatus>;
|
|
716
|
+
}
|
|
705
717
|
namespace FileCreateFile {
|
|
706
718
|
type RequestData = InferredRequestData<typeof descriptors.fileCreateFile>;
|
|
707
719
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.fileCreateFile, TStatus>;
|
|
@@ -1354,6 +1366,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1354
1366
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1355
1367
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1356
1368
|
}
|
|
1369
|
+
namespace ExtensionGenerateSessionKey {
|
|
1370
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionGenerateSessionKey>;
|
|
1371
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGenerateSessionKey, TStatus>;
|
|
1372
|
+
}
|
|
1357
1373
|
}
|
|
1358
1374
|
namespace Components {
|
|
1359
1375
|
namespace Schemas {
|
|
@@ -2561,6 +2577,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2561
2577
|
removalIsPending: boolean;
|
|
2562
2578
|
webhooksAreHalted: boolean;
|
|
2563
2579
|
}
|
|
2580
|
+
interface MarketplaceExtensionSecret {
|
|
2581
|
+
secretId: string;
|
|
2582
|
+
usableUntil?: string;
|
|
2583
|
+
}
|
|
2564
2584
|
interface MarketplaceExtensionStatistics {
|
|
2565
2585
|
/**
|
|
2566
2586
|
* The amout of instances for this extension. Accurate for the Contributor. Publicly rounded to the next lower hundred.
|
|
@@ -2620,6 +2640,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2620
2640
|
webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
2621
2641
|
};
|
|
2622
2642
|
scopes?: string[];
|
|
2643
|
+
secrets: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
2623
2644
|
/**
|
|
2624
2645
|
* deprecated
|
|
2625
2646
|
*/
|
|
@@ -12506,6 +12527,113 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12506
12527
|
}
|
|
12507
12528
|
}
|
|
12508
12529
|
}
|
|
12530
|
+
namespace V2ContributorsContributorIdExtensionsExtensionId {
|
|
12531
|
+
namespace Get {
|
|
12532
|
+
namespace Parameters {
|
|
12533
|
+
type Path = {
|
|
12534
|
+
contributorId: string;
|
|
12535
|
+
extensionId: string;
|
|
12536
|
+
};
|
|
12537
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12538
|
+
type Query = {};
|
|
12539
|
+
}
|
|
12540
|
+
namespace Responses {
|
|
12541
|
+
namespace $200 {
|
|
12542
|
+
namespace Content {
|
|
12543
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
|
|
12544
|
+
}
|
|
12545
|
+
}
|
|
12546
|
+
namespace $404 {
|
|
12547
|
+
namespace Content {
|
|
12548
|
+
interface ApplicationJson {
|
|
12549
|
+
[k: string]: unknown;
|
|
12550
|
+
}
|
|
12551
|
+
}
|
|
12552
|
+
}
|
|
12553
|
+
namespace $429 {
|
|
12554
|
+
namespace Content {
|
|
12555
|
+
interface ApplicationJson {
|
|
12556
|
+
[k: string]: unknown;
|
|
12557
|
+
}
|
|
12558
|
+
}
|
|
12559
|
+
}
|
|
12560
|
+
namespace Default {
|
|
12561
|
+
namespace Content {
|
|
12562
|
+
interface ApplicationJson {
|
|
12563
|
+
[k: string]: unknown;
|
|
12564
|
+
}
|
|
12565
|
+
}
|
|
12566
|
+
}
|
|
12567
|
+
}
|
|
12568
|
+
}
|
|
12569
|
+
namespace Patch {
|
|
12570
|
+
namespace Parameters {
|
|
12571
|
+
type Path = {
|
|
12572
|
+
contributorId: string;
|
|
12573
|
+
extensionId: string;
|
|
12574
|
+
};
|
|
12575
|
+
interface RequestBody {
|
|
12576
|
+
deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
|
|
12577
|
+
description?: string;
|
|
12578
|
+
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
12579
|
+
externalFrontends?: MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[];
|
|
12580
|
+
frontendFragments?: {
|
|
12581
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
12582
|
+
};
|
|
12583
|
+
name?: string;
|
|
12584
|
+
scopes?: string[];
|
|
12585
|
+
subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
12586
|
+
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
12587
|
+
tags?: string[];
|
|
12588
|
+
webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
12589
|
+
}
|
|
12590
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12591
|
+
type Query = {};
|
|
12592
|
+
}
|
|
12593
|
+
namespace Responses {
|
|
12594
|
+
namespace $200 {
|
|
12595
|
+
namespace Content {
|
|
12596
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
|
|
12597
|
+
}
|
|
12598
|
+
}
|
|
12599
|
+
namespace $400 {
|
|
12600
|
+
namespace Content {
|
|
12601
|
+
interface ApplicationJson {
|
|
12602
|
+
[k: string]: unknown;
|
|
12603
|
+
}
|
|
12604
|
+
}
|
|
12605
|
+
}
|
|
12606
|
+
namespace $404 {
|
|
12607
|
+
namespace Content {
|
|
12608
|
+
interface ApplicationJson {
|
|
12609
|
+
[k: string]: unknown;
|
|
12610
|
+
}
|
|
12611
|
+
}
|
|
12612
|
+
}
|
|
12613
|
+
namespace $409 {
|
|
12614
|
+
namespace Content {
|
|
12615
|
+
interface ApplicationJson {
|
|
12616
|
+
[k: string]: unknown;
|
|
12617
|
+
}
|
|
12618
|
+
}
|
|
12619
|
+
}
|
|
12620
|
+
namespace $429 {
|
|
12621
|
+
namespace Content {
|
|
12622
|
+
interface ApplicationJson {
|
|
12623
|
+
[k: string]: unknown;
|
|
12624
|
+
}
|
|
12625
|
+
}
|
|
12626
|
+
}
|
|
12627
|
+
namespace Default {
|
|
12628
|
+
namespace Content {
|
|
12629
|
+
interface ApplicationJson {
|
|
12630
|
+
[k: string]: unknown;
|
|
12631
|
+
}
|
|
12632
|
+
}
|
|
12633
|
+
}
|
|
12634
|
+
}
|
|
12635
|
+
}
|
|
12636
|
+
}
|
|
12509
12637
|
namespace V2WebhookPublicKeysSerial {
|
|
12510
12638
|
namespace Get {
|
|
12511
12639
|
namespace Parameters {
|
|
@@ -12649,6 +12777,60 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12649
12777
|
}
|
|
12650
12778
|
}
|
|
12651
12779
|
}
|
|
12780
|
+
namespace Post {
|
|
12781
|
+
namespace Parameters {
|
|
12782
|
+
type Path = {
|
|
12783
|
+
contributorId: string;
|
|
12784
|
+
};
|
|
12785
|
+
interface RequestBody {
|
|
12786
|
+
context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
12787
|
+
description?: string;
|
|
12788
|
+
detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
|
|
12789
|
+
externalFrontend?: MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[];
|
|
12790
|
+
frontendFragments?: {
|
|
12791
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
12792
|
+
};
|
|
12793
|
+
name: string;
|
|
12794
|
+
scopes?: string[];
|
|
12795
|
+
subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
12796
|
+
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
12797
|
+
tags?: string[];
|
|
12798
|
+
webhookURLs?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
|
|
12799
|
+
}
|
|
12800
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12801
|
+
type Query = {};
|
|
12802
|
+
}
|
|
12803
|
+
namespace Responses {
|
|
12804
|
+
namespace $201 {
|
|
12805
|
+
namespace Content {
|
|
12806
|
+
interface ApplicationJson {
|
|
12807
|
+
id: string;
|
|
12808
|
+
}
|
|
12809
|
+
}
|
|
12810
|
+
}
|
|
12811
|
+
namespace $400 {
|
|
12812
|
+
namespace Content {
|
|
12813
|
+
interface ApplicationJson {
|
|
12814
|
+
[k: string]: unknown;
|
|
12815
|
+
}
|
|
12816
|
+
}
|
|
12817
|
+
}
|
|
12818
|
+
namespace $429 {
|
|
12819
|
+
namespace Content {
|
|
12820
|
+
interface ApplicationJson {
|
|
12821
|
+
[k: string]: unknown;
|
|
12822
|
+
}
|
|
12823
|
+
}
|
|
12824
|
+
}
|
|
12825
|
+
namespace Default {
|
|
12826
|
+
namespace Content {
|
|
12827
|
+
interface ApplicationJson {
|
|
12828
|
+
[k: string]: unknown;
|
|
12829
|
+
}
|
|
12830
|
+
}
|
|
12831
|
+
}
|
|
12832
|
+
}
|
|
12833
|
+
}
|
|
12652
12834
|
}
|
|
12653
12835
|
namespace V2Files {
|
|
12654
12836
|
namespace Post {
|
|
@@ -20706,5 +20888,54 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20706
20888
|
}
|
|
20707
20889
|
}
|
|
20708
20890
|
}
|
|
20891
|
+
namespace V2ExtensionInstancesExtensionInstanceIdSessionSessionId {
|
|
20892
|
+
namespace Post {
|
|
20893
|
+
namespace Parameters {
|
|
20894
|
+
type Path = {
|
|
20895
|
+
extensionInstanceId: string;
|
|
20896
|
+
sessionId: string;
|
|
20897
|
+
};
|
|
20898
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20899
|
+
type Query = {};
|
|
20900
|
+
}
|
|
20901
|
+
namespace Responses {
|
|
20902
|
+
namespace $200 {
|
|
20903
|
+
namespace Content {
|
|
20904
|
+
interface ApplicationJson {
|
|
20905
|
+
sessionKeyJwt?: string;
|
|
20906
|
+
}
|
|
20907
|
+
}
|
|
20908
|
+
}
|
|
20909
|
+
namespace $400 {
|
|
20910
|
+
namespace Content {
|
|
20911
|
+
interface ApplicationJson {
|
|
20912
|
+
[k: string]: unknown;
|
|
20913
|
+
}
|
|
20914
|
+
}
|
|
20915
|
+
}
|
|
20916
|
+
namespace $404 {
|
|
20917
|
+
namespace Content {
|
|
20918
|
+
interface ApplicationJson {
|
|
20919
|
+
[k: string]: unknown;
|
|
20920
|
+
}
|
|
20921
|
+
}
|
|
20922
|
+
}
|
|
20923
|
+
namespace $429 {
|
|
20924
|
+
namespace Content {
|
|
20925
|
+
interface ApplicationJson {
|
|
20926
|
+
[k: string]: unknown;
|
|
20927
|
+
}
|
|
20928
|
+
}
|
|
20929
|
+
}
|
|
20930
|
+
namespace Default {
|
|
20931
|
+
namespace Content {
|
|
20932
|
+
interface ApplicationJson {
|
|
20933
|
+
[k: string]: unknown;
|
|
20934
|
+
}
|
|
20935
|
+
}
|
|
20936
|
+
}
|
|
20937
|
+
}
|
|
20938
|
+
}
|
|
20939
|
+
}
|
|
20709
20940
|
}
|
|
20710
20941
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.116.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.117.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "9bd8871021073c82812dca52737fa7ef4086db63"
|
|
84
84
|
}
|