@mittwald/api-client 4.206.0 → 4.208.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 +24 -24
- package/dist/esm/generated/v2/client.js +64 -64
- package/dist/esm/generated/v2/descriptors.js +208 -208
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +178 -170
- package/dist/types/generated/v2/client.d.ts +1538 -1510
- package/dist/types/generated/v2/descriptors.d.ts +70 -70
- package/dist/types/generated/v2/types.d.ts +5189 -5166
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -418,6 +418,12 @@ export const contractGetDetailOfContractByLeadFyndr = {
|
|
|
418
418
|
method: "GET",
|
|
419
419
|
operationId: "contract-get-detail-of-contract-by-lead-fyndr",
|
|
420
420
|
};
|
|
421
|
+
/** Return the Contract for the given Mail Address. */
|
|
422
|
+
export const contractGetDetailOfContractByMailAddress = {
|
|
423
|
+
path: "/v2/mail-addresses/{mailAddressId}/contract",
|
|
424
|
+
method: "GET",
|
|
425
|
+
operationId: "contract-get-detail-of-contract-by-mail-address",
|
|
426
|
+
};
|
|
421
427
|
/** Return the Contract for the given Project. */
|
|
422
428
|
export const contractGetDetailOfContractByProject = {
|
|
423
429
|
path: "/v2/projects/{projectId}/contract",
|
|
@@ -472,12 +478,6 @@ export const contributorGetLoginLink = {
|
|
|
472
478
|
method: "GET",
|
|
473
479
|
operationId: "contributor-get-login-link",
|
|
474
480
|
};
|
|
475
|
-
/** List ContractPartners of the contributor. */
|
|
476
|
-
export const contributorListContractPartnersOfContributor = {
|
|
477
|
-
path: "/v2/contributors/{contributorId}/contract-partners",
|
|
478
|
-
method: "GET",
|
|
479
|
-
operationId: "contributor-list-contract-partners-of-contributor",
|
|
480
|
-
};
|
|
481
481
|
/** List incoming Invoices of a Contributor. */
|
|
482
482
|
export const contributorListIncomingInvoices = {
|
|
483
483
|
path: "/v2/contributors/{contributorId}/invoices/incoming",
|
|
@@ -496,12 +496,6 @@ export const contributorReceiptGetFileAccessToken = {
|
|
|
496
496
|
method: "GET",
|
|
497
497
|
operationId: "contributor-receipt-get-file-access-token",
|
|
498
498
|
};
|
|
499
|
-
/** Rotate the secret for an extension instance. */
|
|
500
|
-
export const contributorRotateSecretForExtensionInstance = {
|
|
501
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
|
502
|
-
method: "PUT",
|
|
503
|
-
operationId: "contributor-rotate-secret-for-extension-instance",
|
|
504
|
-
};
|
|
505
499
|
/** Get all conversation the authenticated user has created or has access to. */
|
|
506
500
|
export const conversationListConversations = {
|
|
507
501
|
path: "/v2/conversations",
|
|
@@ -1150,108 +1144,12 @@ export const extensionCancelExtensionTermination = {
|
|
|
1150
1144
|
method: "DELETE",
|
|
1151
1145
|
operationId: "extension-cancel-extension-termination",
|
|
1152
1146
|
};
|
|
1153
|
-
/** Change the context of an Extension. */
|
|
1154
|
-
export const extensionChangeContext = {
|
|
1155
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/context",
|
|
1156
|
-
method: "PUT",
|
|
1157
|
-
operationId: "extension-change-context",
|
|
1158
|
-
};
|
|
1159
|
-
/** Consent to extension scopes. */
|
|
1160
|
-
export const extensionConsentToExtensionScopes = {
|
|
1161
|
-
path: "/v2/extension-instances/{extensionInstanceId}/scopes",
|
|
1162
|
-
method: "PATCH",
|
|
1163
|
-
operationId: "extension-consent-to-extension-scopes",
|
|
1164
|
-
};
|
|
1165
1147
|
/** Create the OnboardingProcess of a Contributor. */
|
|
1166
1148
|
export const extensionCreateContributorOnboardingProcess = {
|
|
1167
1149
|
path: "/v2/contributors/{contributorId}/onboarding-process",
|
|
1168
1150
|
method: "POST",
|
|
1169
1151
|
operationId: "extension-create-contributor-onboarding-process",
|
|
1170
1152
|
};
|
|
1171
|
-
/** List ExtensionInstances. */
|
|
1172
|
-
export const extensionListExtensionInstances = {
|
|
1173
|
-
path: "/v2/extension-instances",
|
|
1174
|
-
method: "GET",
|
|
1175
|
-
operationId: "extension-list-extension-instances",
|
|
1176
|
-
};
|
|
1177
|
-
/** Create an ExtensionInstance. */
|
|
1178
|
-
export const extensionCreateExtensionInstance = {
|
|
1179
|
-
path: "/v2/extension-instances",
|
|
1180
|
-
method: "POST",
|
|
1181
|
-
operationId: "extension-create-extension-instance",
|
|
1182
|
-
};
|
|
1183
|
-
/** Create an access token retrieval key for an extension instance. */
|
|
1184
|
-
export const extensionCreateRetrievalKey = {
|
|
1185
|
-
path: "/v2/extension-instances/{extensionInstanceId}/actions/create-access-token-retrieval-key",
|
|
1186
|
-
method: "POST",
|
|
1187
|
-
operationId: "extension-create-retrieval-key",
|
|
1188
|
-
};
|
|
1189
|
-
/** Get an ExtensionInstance. */
|
|
1190
|
-
export const extensionGetExtensionInstance = {
|
|
1191
|
-
path: "/v2/extension-instances/{extensionInstanceId}",
|
|
1192
|
-
method: "GET",
|
|
1193
|
-
operationId: "extension-get-extension-instance",
|
|
1194
|
-
};
|
|
1195
|
-
/** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
|
|
1196
|
-
export const extensionDeleteExtensionInstance = {
|
|
1197
|
-
path: "/v2/extension-instances/{extensionInstanceId}",
|
|
1198
|
-
method: "DELETE",
|
|
1199
|
-
operationId: "extension-delete-extension-instance",
|
|
1200
|
-
};
|
|
1201
|
-
/** Get Extension of own contributor. */
|
|
1202
|
-
export const extensionGetOwnExtension = {
|
|
1203
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
1204
|
-
method: "GET",
|
|
1205
|
-
operationId: "extension-get-own-extension",
|
|
1206
|
-
};
|
|
1207
|
-
/** Delete an extension. */
|
|
1208
|
-
export const extensionDeleteExtension = {
|
|
1209
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
1210
|
-
method: "DELETE",
|
|
1211
|
-
operationId: "extension-delete-extension",
|
|
1212
|
-
};
|
|
1213
|
-
/** Patch Extension. */
|
|
1214
|
-
export const extensionPatchExtension = {
|
|
1215
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
1216
|
-
method: "PATCH",
|
|
1217
|
-
operationId: "extension-patch-extension",
|
|
1218
|
-
};
|
|
1219
|
-
/** Disable an ExtensionInstance. */
|
|
1220
|
-
export const extensionDisableExtensionInstance = {
|
|
1221
|
-
path: "/v2/extension-instances/{extensionInstanceId}/actions/disable",
|
|
1222
|
-
method: "POST",
|
|
1223
|
-
operationId: "extension-disable-extension-instance",
|
|
1224
|
-
};
|
|
1225
|
-
/** Dry run a webhook with random or given values. */
|
|
1226
|
-
export const extensionDryRunWebhook = {
|
|
1227
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/actions/dry-run/{webhookKind}",
|
|
1228
|
-
method: "POST",
|
|
1229
|
-
operationId: "extension-dry-run-webhook",
|
|
1230
|
-
};
|
|
1231
|
-
/** Enable an ExtensionInstance. */
|
|
1232
|
-
export const extensionEnableExtensionInstance = {
|
|
1233
|
-
path: "/v2/extension-instances/{extensionInstanceId}/actions/enable",
|
|
1234
|
-
method: "POST",
|
|
1235
|
-
operationId: "extension-enable-extension-instance",
|
|
1236
|
-
};
|
|
1237
|
-
/** Generate an Extension secret for the given Extension. */
|
|
1238
|
-
export const extensionGenerateExtensionSecret = {
|
|
1239
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/secret",
|
|
1240
|
-
method: "POST",
|
|
1241
|
-
operationId: "extension-generate-extension-secret",
|
|
1242
|
-
};
|
|
1243
|
-
/** Generate a session token to transmit it to the extensions frontend fragment. */
|
|
1244
|
-
export const extensionGenerateSessionToken = {
|
|
1245
|
-
path: "/v2/extension-instances/{extensionInstanceId}/sessions/{sessionId}",
|
|
1246
|
-
method: "POST",
|
|
1247
|
-
operationId: "extension-generate-session-token",
|
|
1248
|
-
};
|
|
1249
|
-
/** Get a Contributor. */
|
|
1250
|
-
export const extensionGetContributor = {
|
|
1251
|
-
path: "/v2/contributors/{contributorId}",
|
|
1252
|
-
method: "GET",
|
|
1253
|
-
operationId: "extension-get-contributor",
|
|
1254
|
-
};
|
|
1255
1153
|
/** Get all open extension orders for given customer */
|
|
1256
1154
|
export const extensionGetCustomerExtensionInstanceOrders = {
|
|
1257
1155
|
path: "/v2/customers/{customerId}/extension-orders",
|
|
@@ -1270,114 +1168,18 @@ export const extensionUpdateExtensionInstanceContract = {
|
|
|
1270
1168
|
method: "PUT",
|
|
1271
1169
|
operationId: "extension-update-extension-instance-contract",
|
|
1272
1170
|
};
|
|
1273
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1274
|
-
export const extensionGetExtensionInstanceForCustomer = {
|
|
1275
|
-
path: "/v2/customers/{customerId}/extensions/{extensionId}",
|
|
1276
|
-
method: "GET",
|
|
1277
|
-
operationId: "extension-get-extension-instance-for-customer",
|
|
1278
|
-
};
|
|
1279
|
-
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1280
|
-
export const extensionGetExtensionInstanceForProject = {
|
|
1281
|
-
path: "/v2/projects/{projectId}/extensions/{extensionId}",
|
|
1282
|
-
method: "GET",
|
|
1283
|
-
operationId: "extension-get-extension-instance-for-project",
|
|
1284
|
-
};
|
|
1285
|
-
/** Get an Extension. */
|
|
1286
|
-
export const extensionGetExtension = {
|
|
1287
|
-
path: "/v2/extensions/{extensionId}",
|
|
1288
|
-
method: "GET",
|
|
1289
|
-
operationId: "extension-get-extension",
|
|
1290
|
-
};
|
|
1291
1171
|
/** Get all open extension orders for given project */
|
|
1292
1172
|
export const extensionGetProjectExtensionInstanceOrders = {
|
|
1293
1173
|
path: "/v2/projects/{projectId}/extension-orders",
|
|
1294
1174
|
method: "GET",
|
|
1295
1175
|
operationId: "extension-get-project-extension-instance-orders",
|
|
1296
1176
|
};
|
|
1297
|
-
/** Get the public key to verify the webhook signature. */
|
|
1298
|
-
export const extensionGetPublicKey = {
|
|
1299
|
-
path: "/v2/public-keys/{serial}",
|
|
1300
|
-
method: "GET",
|
|
1301
|
-
operationId: "extension-get-public-key",
|
|
1302
|
-
};
|
|
1303
|
-
/** Invalidate the given Extension secret immediately. */
|
|
1304
|
-
export const extensionInvalidateExtensionSecret = {
|
|
1305
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/secret/{extensionSecretId}",
|
|
1306
|
-
method: "DELETE",
|
|
1307
|
-
operationId: "extension-invalidate-extension-secret",
|
|
1308
|
-
};
|
|
1309
|
-
/** List Contributors. */
|
|
1310
|
-
export const extensionListContributors = {
|
|
1311
|
-
path: "/v2/contributors",
|
|
1312
|
-
method: "GET",
|
|
1313
|
-
operationId: "extension-list-contributors",
|
|
1314
|
-
};
|
|
1315
|
-
/** List Extensions. */
|
|
1316
|
-
export const extensionListExtensions = {
|
|
1317
|
-
path: "/v2/extensions",
|
|
1318
|
-
method: "GET",
|
|
1319
|
-
operationId: "extension-list-extensions",
|
|
1320
|
-
};
|
|
1321
|
-
/** List Extensions of own contributor. */
|
|
1322
|
-
export const extensionListOwnExtensions = {
|
|
1323
|
-
path: "/v2/contributors/{contributorId}/extensions",
|
|
1324
|
-
method: "GET",
|
|
1325
|
-
operationId: "extension-list-own-extensions",
|
|
1326
|
-
};
|
|
1327
|
-
/** Register an Extension. */
|
|
1328
|
-
export const extensionRegisterExtension = {
|
|
1329
|
-
path: "/v2/contributors/{contributorId}/extensions",
|
|
1330
|
-
method: "POST",
|
|
1331
|
-
operationId: "extension-register-extension",
|
|
1332
|
-
};
|
|
1333
|
-
/** List Scopes. */
|
|
1334
|
-
export const extensionListScopes = {
|
|
1335
|
-
path: "/v2/scopes",
|
|
1336
|
-
method: "GET",
|
|
1337
|
-
operationId: "extension-list-scopes",
|
|
1338
|
-
};
|
|
1339
1177
|
/** Order Extension with saved payment method */
|
|
1340
1178
|
export const extensionOrderExtension = {
|
|
1341
1179
|
path: "/v2/extensions/{extensionId}/order",
|
|
1342
1180
|
method: "POST",
|
|
1343
1181
|
operationId: "extension-order-extension",
|
|
1344
1182
|
};
|
|
1345
|
-
/** Remove an asset of an extension. */
|
|
1346
|
-
export const extensionRemoveAsset = {
|
|
1347
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/assets/{assetRefId}",
|
|
1348
|
-
method: "DELETE",
|
|
1349
|
-
operationId: "extension-remove-asset",
|
|
1350
|
-
};
|
|
1351
|
-
/** Add a logo to an extension. */
|
|
1352
|
-
export const extensionRequestLogoUpload = {
|
|
1353
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/logo",
|
|
1354
|
-
method: "POST",
|
|
1355
|
-
operationId: "extension-request-logo-upload",
|
|
1356
|
-
};
|
|
1357
|
-
/** Remove the logo of an extension. */
|
|
1358
|
-
export const extensionRemoveLogo = {
|
|
1359
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/logo",
|
|
1360
|
-
method: "DELETE",
|
|
1361
|
-
operationId: "extension-remove-logo",
|
|
1362
|
-
};
|
|
1363
|
-
/** Add an asset to an extension. */
|
|
1364
|
-
export const extensionRequestAssetUpload = {
|
|
1365
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/assets",
|
|
1366
|
-
method: "POST",
|
|
1367
|
-
operationId: "extension-request-asset-upload",
|
|
1368
|
-
};
|
|
1369
|
-
/** Start the verification process of an Extension. */
|
|
1370
|
-
export const extensionRequestExtensionVerification = {
|
|
1371
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/verification-process",
|
|
1372
|
-
method: "POST",
|
|
1373
|
-
operationId: "extension-request-extension-verification",
|
|
1374
|
-
};
|
|
1375
|
-
/** Publish or withdraw an Extension. */
|
|
1376
|
-
export const extensionSetExtensionPublishedState = {
|
|
1377
|
-
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/published",
|
|
1378
|
-
method: "PUT",
|
|
1379
|
-
operationId: "extension-set-extension-published-state",
|
|
1380
|
-
};
|
|
1381
1183
|
/** Creates or Updates Pricing for an Extension. */
|
|
1382
1184
|
export const extensionUpdateExtensionPricing = {
|
|
1383
1185
|
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/pricing",
|
|
@@ -2494,9 +2296,207 @@ export const verificationVerifyCompany = {
|
|
|
2494
2296
|
method: "POST",
|
|
2495
2297
|
operationId: "verification-verify-company",
|
|
2496
2298
|
};
|
|
2497
|
-
/**
|
|
2498
|
-
export const
|
|
2499
|
-
path: "/v2/
|
|
2299
|
+
/** List ContractPartners of the contributor. */
|
|
2300
|
+
export const contributorListContractPartnersOfContributor = {
|
|
2301
|
+
path: "/v2/contributors/{contributorId}/contract-partners",
|
|
2500
2302
|
method: "GET",
|
|
2501
|
-
operationId: "
|
|
2303
|
+
operationId: "contributor-list-contract-partners-of-contributor",
|
|
2304
|
+
};
|
|
2305
|
+
/** Get the public key to verify the webhook signature. */
|
|
2306
|
+
export const extensionGetPublicKey = {
|
|
2307
|
+
path: "/v2/public-keys/{serial}",
|
|
2308
|
+
method: "GET",
|
|
2309
|
+
operationId: "extension-get-public-key",
|
|
2310
|
+
};
|
|
2311
|
+
/** Remove an asset of an extension. */
|
|
2312
|
+
export const extensionRemoveAsset = {
|
|
2313
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/assets/{assetRefId}",
|
|
2314
|
+
method: "DELETE",
|
|
2315
|
+
operationId: "extension-remove-asset",
|
|
2316
|
+
};
|
|
2317
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
2318
|
+
export const extensionGetExtensionInstanceForCustomer = {
|
|
2319
|
+
path: "/v2/customers/{customerId}/extensions/{extensionId}",
|
|
2320
|
+
method: "GET",
|
|
2321
|
+
operationId: "extension-get-extension-instance-for-customer",
|
|
2322
|
+
};
|
|
2323
|
+
/** Generate an Extension secret for the given Extension. */
|
|
2324
|
+
export const extensionGenerateExtensionSecret = {
|
|
2325
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/secret",
|
|
2326
|
+
method: "POST",
|
|
2327
|
+
operationId: "extension-generate-extension-secret",
|
|
2328
|
+
};
|
|
2329
|
+
/** Disable an ExtensionInstance. */
|
|
2330
|
+
export const extensionDisableExtensionInstance = {
|
|
2331
|
+
path: "/v2/extension-instances/{extensionInstanceId}/actions/disable",
|
|
2332
|
+
method: "POST",
|
|
2333
|
+
operationId: "extension-disable-extension-instance",
|
|
2334
|
+
};
|
|
2335
|
+
/** Create an access token retrieval key for an extension instance. */
|
|
2336
|
+
export const extensionCreateRetrievalKey = {
|
|
2337
|
+
path: "/v2/extension-instances/{extensionInstanceId}/actions/create-access-token-retrieval-key",
|
|
2338
|
+
method: "POST",
|
|
2339
|
+
operationId: "extension-create-retrieval-key",
|
|
2340
|
+
};
|
|
2341
|
+
/** List Contributors. */
|
|
2342
|
+
export const extensionListContributors = {
|
|
2343
|
+
path: "/v2/contributors",
|
|
2344
|
+
method: "GET",
|
|
2345
|
+
operationId: "extension-list-contributors",
|
|
2346
|
+
};
|
|
2347
|
+
/** Get a Contributor. */
|
|
2348
|
+
export const extensionGetContributor = {
|
|
2349
|
+
path: "/v2/contributors/{contributorId}",
|
|
2350
|
+
method: "GET",
|
|
2351
|
+
operationId: "extension-get-contributor",
|
|
2352
|
+
};
|
|
2353
|
+
/** Enable an ExtensionInstance. */
|
|
2354
|
+
export const extensionEnableExtensionInstance = {
|
|
2355
|
+
path: "/v2/extension-instances/{extensionInstanceId}/actions/enable",
|
|
2356
|
+
method: "POST",
|
|
2357
|
+
operationId: "extension-enable-extension-instance",
|
|
2358
|
+
};
|
|
2359
|
+
/** List Scopes. */
|
|
2360
|
+
export const extensionListScopes = {
|
|
2361
|
+
path: "/v2/scopes",
|
|
2362
|
+
method: "GET",
|
|
2363
|
+
operationId: "extension-list-scopes",
|
|
2364
|
+
};
|
|
2365
|
+
/** Rotate the secret for an extension instance. */
|
|
2366
|
+
export const contributorRotateSecretForExtensionInstance = {
|
|
2367
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
|
|
2368
|
+
method: "PUT",
|
|
2369
|
+
operationId: "contributor-rotate-secret-for-extension-instance",
|
|
2370
|
+
};
|
|
2371
|
+
/** Get an Extension. */
|
|
2372
|
+
export const extensionGetExtension = {
|
|
2373
|
+
path: "/v2/extensions/{extensionId}",
|
|
2374
|
+
method: "GET",
|
|
2375
|
+
operationId: "extension-get-extension",
|
|
2376
|
+
};
|
|
2377
|
+
/** Add a logo to an extension. */
|
|
2378
|
+
export const extensionRequestLogoUpload = {
|
|
2379
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/logo",
|
|
2380
|
+
method: "POST",
|
|
2381
|
+
operationId: "extension-request-logo-upload",
|
|
2382
|
+
};
|
|
2383
|
+
/** Remove the logo of an extension. */
|
|
2384
|
+
export const extensionRemoveLogo = {
|
|
2385
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/logo",
|
|
2386
|
+
method: "DELETE",
|
|
2387
|
+
operationId: "extension-remove-logo",
|
|
2388
|
+
};
|
|
2389
|
+
/** Dry run a webhook with random or given values. */
|
|
2390
|
+
export const extensionDryRunWebhook = {
|
|
2391
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/actions/dry-run/{webhookKind}",
|
|
2392
|
+
method: "POST",
|
|
2393
|
+
operationId: "extension-dry-run-webhook",
|
|
2394
|
+
};
|
|
2395
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
2396
|
+
export const extensionGetExtensionInstanceForProject = {
|
|
2397
|
+
path: "/v2/projects/{projectId}/extensions/{extensionId}",
|
|
2398
|
+
method: "GET",
|
|
2399
|
+
operationId: "extension-get-extension-instance-for-project",
|
|
2400
|
+
};
|
|
2401
|
+
/** Get an ExtensionInstance. */
|
|
2402
|
+
export const extensionGetExtensionInstance = {
|
|
2403
|
+
path: "/v2/extension-instances/{extensionInstanceId}",
|
|
2404
|
+
method: "GET",
|
|
2405
|
+
operationId: "extension-get-extension-instance",
|
|
2406
|
+
};
|
|
2407
|
+
/** Delete a free ExtensionInstance. If the Extension is chargable the contract must be terminated instead. */
|
|
2408
|
+
export const extensionDeleteExtensionInstance = {
|
|
2409
|
+
path: "/v2/extension-instances/{extensionInstanceId}",
|
|
2410
|
+
method: "DELETE",
|
|
2411
|
+
operationId: "extension-delete-extension-instance",
|
|
2412
|
+
};
|
|
2413
|
+
/** List ExtensionInstances. */
|
|
2414
|
+
export const extensionListExtensionInstances = {
|
|
2415
|
+
path: "/v2/extension-instances",
|
|
2416
|
+
method: "GET",
|
|
2417
|
+
operationId: "extension-list-extension-instances",
|
|
2418
|
+
};
|
|
2419
|
+
/** Create an ExtensionInstance. */
|
|
2420
|
+
export const extensionCreateExtensionInstance = {
|
|
2421
|
+
path: "/v2/extension-instances",
|
|
2422
|
+
method: "POST",
|
|
2423
|
+
operationId: "extension-create-extension-instance",
|
|
2424
|
+
};
|
|
2425
|
+
/** Start the verification process of an Extension. */
|
|
2426
|
+
export const extensionRequestExtensionVerification = {
|
|
2427
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/verification-process",
|
|
2428
|
+
method: "POST",
|
|
2429
|
+
operationId: "extension-request-extension-verification",
|
|
2430
|
+
};
|
|
2431
|
+
/** Invalidate the given Extension secret immediately. */
|
|
2432
|
+
export const extensionInvalidateExtensionSecret = {
|
|
2433
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/secret/{extensionSecretId}",
|
|
2434
|
+
method: "DELETE",
|
|
2435
|
+
operationId: "extension-invalidate-extension-secret",
|
|
2436
|
+
};
|
|
2437
|
+
/** Generate a session token to transmit it to the extensions frontend fragment. */
|
|
2438
|
+
export const extensionGenerateSessionToken = {
|
|
2439
|
+
path: "/v2/extension-instances/{extensionInstanceId}/sessions/{sessionId}",
|
|
2440
|
+
method: "POST",
|
|
2441
|
+
operationId: "extension-generate-session-token",
|
|
2442
|
+
};
|
|
2443
|
+
/** Get Extension of own contributor. */
|
|
2444
|
+
export const extensionGetOwnExtension = {
|
|
2445
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
2446
|
+
method: "GET",
|
|
2447
|
+
operationId: "extension-get-own-extension",
|
|
2448
|
+
};
|
|
2449
|
+
/** Delete an extension. */
|
|
2450
|
+
export const extensionDeleteExtension = {
|
|
2451
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
2452
|
+
method: "DELETE",
|
|
2453
|
+
operationId: "extension-delete-extension",
|
|
2454
|
+
};
|
|
2455
|
+
/** Patch Extension. */
|
|
2456
|
+
export const extensionPatchExtension = {
|
|
2457
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}",
|
|
2458
|
+
method: "PATCH",
|
|
2459
|
+
operationId: "extension-patch-extension",
|
|
2460
|
+
};
|
|
2461
|
+
/** Consent to extension scopes. */
|
|
2462
|
+
export const extensionConsentToExtensionScopes = {
|
|
2463
|
+
path: "/v2/extension-instances/{extensionInstanceId}/scopes",
|
|
2464
|
+
method: "PATCH",
|
|
2465
|
+
operationId: "extension-consent-to-extension-scopes",
|
|
2466
|
+
};
|
|
2467
|
+
/** Change the context of an Extension. */
|
|
2468
|
+
export const extensionChangeContext = {
|
|
2469
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/context",
|
|
2470
|
+
method: "PUT",
|
|
2471
|
+
operationId: "extension-change-context",
|
|
2472
|
+
};
|
|
2473
|
+
/** Publish or withdraw an Extension. */
|
|
2474
|
+
export const extensionSetExtensionPublishedState = {
|
|
2475
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/published",
|
|
2476
|
+
method: "PUT",
|
|
2477
|
+
operationId: "extension-set-extension-published-state",
|
|
2478
|
+
};
|
|
2479
|
+
/** List Extensions of own contributor. */
|
|
2480
|
+
export const extensionListOwnExtensions = {
|
|
2481
|
+
path: "/v2/contributors/{contributorId}/extensions",
|
|
2482
|
+
method: "GET",
|
|
2483
|
+
operationId: "extension-list-own-extensions",
|
|
2484
|
+
};
|
|
2485
|
+
/** Register an Extension. */
|
|
2486
|
+
export const extensionRegisterExtension = {
|
|
2487
|
+
path: "/v2/contributors/{contributorId}/extensions",
|
|
2488
|
+
method: "POST",
|
|
2489
|
+
operationId: "extension-register-extension",
|
|
2490
|
+
};
|
|
2491
|
+
/** Add an asset to an extension. */
|
|
2492
|
+
export const extensionRequestAssetUpload = {
|
|
2493
|
+
path: "/v2/contributors/{contributorId}/extensions/{extensionId}/assets",
|
|
2494
|
+
method: "POST",
|
|
2495
|
+
operationId: "extension-request-asset-upload",
|
|
2496
|
+
};
|
|
2497
|
+
/** List Extensions. */
|
|
2498
|
+
export const extensionListExtensions = {
|
|
2499
|
+
path: "/v2/extensions",
|
|
2500
|
+
method: "GET",
|
|
2501
|
+
operationId: "extension-list-extensions",
|
|
2502
2502
|
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.207.0';
|