@mittwald/api-client 4.448.0 → 4.449.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.js +6 -0
- package/dist/esm/generated/v2/descriptors.js +18 -0
- package/dist/esm/generated/v3-next/client.js +6 -0
- package/dist/esm/generated/v3-next/descriptors.js +18 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +6 -2
- package/dist/types/generated/v2/client.d.ts +158 -23
- package/dist/types/generated/v2/descriptors.d.ts +9 -3
- package/dist/types/generated/v2/types.d.ts +194 -12
- package/dist/types/generated/v3-next/client-react.d.ts +6 -2
- package/dist/types/generated/v3-next/client.d.ts +158 -23
- package/dist/types/generated/v3-next/descriptors.d.ts +9 -3
- package/dist/types/generated/v3-next/types.d.ts +194 -12
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1870,6 +1870,18 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1870
1870
|
type RequestData = InferredRequestData<typeof descriptors.appGetAppInstallationSystemSoftware>;
|
|
1871
1871
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppInstallationSystemSoftware, TStatus>;
|
|
1872
1872
|
}
|
|
1873
|
+
namespace AppDetachAppinstallationStaging {
|
|
1874
|
+
type RequestData = InferredRequestData<typeof descriptors.appDetachAppinstallationStaging>;
|
|
1875
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appDetachAppinstallationStaging, TStatus>;
|
|
1876
|
+
}
|
|
1877
|
+
namespace AppPromoteAppinstallationStaging {
|
|
1878
|
+
type RequestData = InferredRequestData<typeof descriptors.appPromoteAppinstallationStaging>;
|
|
1879
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appPromoteAppinstallationStaging, TStatus>;
|
|
1880
|
+
}
|
|
1881
|
+
namespace AppRequestAppinstallationStaging {
|
|
1882
|
+
type RequestData = InferredRequestData<typeof descriptors.appRequestAppinstallationStaging>;
|
|
1883
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appRequestAppinstallationStaging, TStatus>;
|
|
1884
|
+
}
|
|
1873
1885
|
}
|
|
1874
1886
|
namespace Components {
|
|
1875
1887
|
namespace Schemas {
|
|
@@ -2088,6 +2100,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
2088
2100
|
screenshotId?: string;
|
|
2089
2101
|
screenshotRef?: string;
|
|
2090
2102
|
shortId: string;
|
|
2103
|
+
/**
|
|
2104
|
+
* The source AppInstallation ID for a staging AppInstallation.
|
|
2105
|
+
*/
|
|
2106
|
+
sourceAppInstallationId?: string;
|
|
2107
|
+
staging?: boolean;
|
|
2091
2108
|
systemSoftware: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppInstalledSystemSoftware[];
|
|
2092
2109
|
updateAvailable: boolean;
|
|
2093
2110
|
updatePolicy: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppAppUpdatePolicy;
|
|
@@ -3003,7 +3020,15 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
3003
3020
|
emailAddress?: string;
|
|
3004
3021
|
firstName?: string;
|
|
3005
3022
|
lastName?: string;
|
|
3023
|
+
/**
|
|
3024
|
+
* German electronic invoicing routing ID (XRechnung). Only allowed for public authorities and requires a company.
|
|
3025
|
+
*/
|
|
3026
|
+
leitwegId?: string;
|
|
3006
3027
|
phoneNumbers?: string[];
|
|
3028
|
+
/**
|
|
3029
|
+
* Purchase order reference the customer wants to see on their invoices.
|
|
3030
|
+
*/
|
|
3031
|
+
purchaseOrderReference?: string;
|
|
3007
3032
|
salutation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCommonsSalutation;
|
|
3008
3033
|
title?: string;
|
|
3009
3034
|
useFormalTerm?: boolean;
|
|
@@ -3547,7 +3572,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
3547
3572
|
creationDate: string;
|
|
3548
3573
|
customerId: string;
|
|
3549
3574
|
customerNumber: string;
|
|
3550
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[];
|
|
3575
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[];
|
|
3551
3576
|
executingUserRoles?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[];
|
|
3552
3577
|
flags?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[];
|
|
3553
3578
|
isAllowedToPlaceOrders?: boolean;
|
|
@@ -4215,6 +4240,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4215
4240
|
* Whether the extension has been published by the contributor.
|
|
4216
4241
|
*/
|
|
4217
4242
|
published: true;
|
|
4243
|
+
/**
|
|
4244
|
+
* Date of the first publishing.
|
|
4245
|
+
*/
|
|
4246
|
+
publishedAt: string;
|
|
4218
4247
|
scopes: string[];
|
|
4219
4248
|
/**
|
|
4220
4249
|
* @deprecated
|
|
@@ -4365,7 +4394,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4365
4394
|
}
|
|
4366
4395
|
interface DeMittwaldMarketplaceExtensionStatistics {
|
|
4367
4396
|
/**
|
|
4368
|
-
* The
|
|
4397
|
+
* The amount of instances for this extension. Accurate for the Contributor. Publicly rounded to the next lower hundred.
|
|
4369
4398
|
*/
|
|
4370
4399
|
amountOfInstances?: number;
|
|
4371
4400
|
}
|
|
@@ -4439,6 +4468,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4439
4468
|
blocked?: boolean;
|
|
4440
4469
|
context?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
|
|
4441
4470
|
contributorId: string;
|
|
4471
|
+
createdAt?: string;
|
|
4442
4472
|
deletionDeadline?: string;
|
|
4443
4473
|
deprecation?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceExtensionDeprecation;
|
|
4444
4474
|
description?: string;
|
|
@@ -4466,6 +4496,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4466
4496
|
pricing?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceMonthlyPricePlanStrategy;
|
|
4467
4497
|
pricingDetails?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplacePricePlanDetails;
|
|
4468
4498
|
published: boolean;
|
|
4499
|
+
/**
|
|
4500
|
+
* Date of the first publishing.
|
|
4501
|
+
*/
|
|
4502
|
+
publishedAt?: string;
|
|
4469
4503
|
requestedChanges?: {
|
|
4470
4504
|
context?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldMarketplaceContext;
|
|
4471
4505
|
purgeScopes?: boolean;
|
|
@@ -4593,6 +4627,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4593
4627
|
* Whether the extension has been published by the contributor.
|
|
4594
4628
|
*/
|
|
4595
4629
|
published?: false;
|
|
4630
|
+
/**
|
|
4631
|
+
* Date of the first publishing.
|
|
4632
|
+
*/
|
|
4633
|
+
publishedAt?: string;
|
|
4596
4634
|
scopes: string[];
|
|
4597
4635
|
/**
|
|
4598
4636
|
* @deprecated
|
|
@@ -4933,7 +4971,15 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4933
4971
|
emailAddress?: string;
|
|
4934
4972
|
firstName?: string;
|
|
4935
4973
|
lastName?: string;
|
|
4974
|
+
/**
|
|
4975
|
+
* German electronic invoicing routing ID (XRechnung). Only allowed for public authorities and requires a company.
|
|
4976
|
+
*/
|
|
4977
|
+
leitwegId?: string;
|
|
4936
4978
|
phoneNumbers?: string[];
|
|
4979
|
+
/**
|
|
4980
|
+
* Purchase order reference printed on the invoice. Not allowed together with a leitwegId.
|
|
4981
|
+
*/
|
|
4982
|
+
purchaseOrderReference?: string;
|
|
4937
4983
|
salutation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCommonsSalutation;
|
|
4938
4984
|
title?: string;
|
|
4939
4985
|
useFormalTerm?: boolean;
|
|
@@ -7209,6 +7255,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7209
7255
|
reasons: {
|
|
7210
7256
|
domainAgeTooSmall: boolean;
|
|
7211
7257
|
domainDoesNotExist: boolean;
|
|
7258
|
+
inRedemptionPeriod: boolean;
|
|
7212
7259
|
transferLock: boolean;
|
|
7213
7260
|
wrongAuthCode: boolean;
|
|
7214
7261
|
};
|
|
@@ -19856,9 +19903,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
19856
19903
|
namespace Responses {
|
|
19857
19904
|
namespace $204 {
|
|
19858
19905
|
namespace Content {
|
|
19859
|
-
|
|
19860
|
-
[k: string]: unknown;
|
|
19861
|
-
}
|
|
19906
|
+
type Empty = unknown;
|
|
19862
19907
|
}
|
|
19863
19908
|
}
|
|
19864
19909
|
namespace $412 {
|
|
@@ -20056,9 +20101,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
20056
20101
|
namespace Responses {
|
|
20057
20102
|
namespace $204 {
|
|
20058
20103
|
namespace Content {
|
|
20059
|
-
|
|
20060
|
-
[k: string]: unknown;
|
|
20061
|
-
}
|
|
20104
|
+
type Empty = unknown;
|
|
20062
20105
|
}
|
|
20063
20106
|
}
|
|
20064
20107
|
namespace $400 {
|
|
@@ -20161,9 +20204,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
20161
20204
|
namespace Responses {
|
|
20162
20205
|
namespace $204 {
|
|
20163
20206
|
namespace Content {
|
|
20164
|
-
|
|
20165
|
-
[k: string]: unknown;
|
|
20166
|
-
}
|
|
20207
|
+
type Empty = unknown;
|
|
20167
20208
|
}
|
|
20168
20209
|
}
|
|
20169
20210
|
namespace $400 {
|
|
@@ -20800,7 +20841,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
20800
20841
|
limit?: number;
|
|
20801
20842
|
skip?: number;
|
|
20802
20843
|
page?: number;
|
|
20803
|
-
sort?: "name" | "pricing.priceInCents";
|
|
20844
|
+
sort?: "name" | "pricing.priceInCents" | "relevance";
|
|
20804
20845
|
order?: "asc" | "desc";
|
|
20805
20846
|
};
|
|
20806
20847
|
}
|
|
@@ -31330,5 +31371,146 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31330
31371
|
}
|
|
31331
31372
|
}
|
|
31332
31373
|
}
|
|
31374
|
+
namespace V3NextAppInstallationsAppInstallationIdActionsDetachStaging {
|
|
31375
|
+
namespace Post {
|
|
31376
|
+
namespace Parameters {
|
|
31377
|
+
type Path = {
|
|
31378
|
+
appInstallationId: string;
|
|
31379
|
+
};
|
|
31380
|
+
interface RequestBody {
|
|
31381
|
+
description: string;
|
|
31382
|
+
}
|
|
31383
|
+
type Header = {};
|
|
31384
|
+
type Query = {};
|
|
31385
|
+
}
|
|
31386
|
+
namespace Responses {
|
|
31387
|
+
namespace $200 {
|
|
31388
|
+
namespace Content {
|
|
31389
|
+
type Empty = unknown;
|
|
31390
|
+
}
|
|
31391
|
+
}
|
|
31392
|
+
namespace $404 {
|
|
31393
|
+
namespace Content {
|
|
31394
|
+
interface ApplicationJson {
|
|
31395
|
+
[k: string]: unknown;
|
|
31396
|
+
}
|
|
31397
|
+
}
|
|
31398
|
+
}
|
|
31399
|
+
namespace $412 {
|
|
31400
|
+
namespace Content {
|
|
31401
|
+
interface ApplicationJson {
|
|
31402
|
+
[k: string]: unknown;
|
|
31403
|
+
}
|
|
31404
|
+
}
|
|
31405
|
+
}
|
|
31406
|
+
namespace $429 {
|
|
31407
|
+
namespace Content {
|
|
31408
|
+
interface ApplicationJson {
|
|
31409
|
+
[k: string]: unknown;
|
|
31410
|
+
}
|
|
31411
|
+
}
|
|
31412
|
+
}
|
|
31413
|
+
namespace Default {
|
|
31414
|
+
namespace Content {
|
|
31415
|
+
interface ApplicationJson {
|
|
31416
|
+
[k: string]: unknown;
|
|
31417
|
+
}
|
|
31418
|
+
}
|
|
31419
|
+
}
|
|
31420
|
+
}
|
|
31421
|
+
}
|
|
31422
|
+
}
|
|
31423
|
+
namespace V3NextAppInstallationsAppInstallationIdActionsPromoteStaging {
|
|
31424
|
+
namespace Post {
|
|
31425
|
+
namespace Parameters {
|
|
31426
|
+
type Path = {
|
|
31427
|
+
appInstallationId: string;
|
|
31428
|
+
};
|
|
31429
|
+
type Header = {};
|
|
31430
|
+
type Query = {};
|
|
31431
|
+
}
|
|
31432
|
+
namespace Responses {
|
|
31433
|
+
namespace $200 {
|
|
31434
|
+
namespace Content {
|
|
31435
|
+
type Empty = unknown;
|
|
31436
|
+
}
|
|
31437
|
+
}
|
|
31438
|
+
namespace $404 {
|
|
31439
|
+
namespace Content {
|
|
31440
|
+
interface ApplicationJson {
|
|
31441
|
+
[k: string]: unknown;
|
|
31442
|
+
}
|
|
31443
|
+
}
|
|
31444
|
+
}
|
|
31445
|
+
namespace $412 {
|
|
31446
|
+
namespace Content {
|
|
31447
|
+
interface ApplicationJson {
|
|
31448
|
+
[k: string]: unknown;
|
|
31449
|
+
}
|
|
31450
|
+
}
|
|
31451
|
+
}
|
|
31452
|
+
namespace $429 {
|
|
31453
|
+
namespace Content {
|
|
31454
|
+
interface ApplicationJson {
|
|
31455
|
+
[k: string]: unknown;
|
|
31456
|
+
}
|
|
31457
|
+
}
|
|
31458
|
+
}
|
|
31459
|
+
namespace Default {
|
|
31460
|
+
namespace Content {
|
|
31461
|
+
interface ApplicationJson {
|
|
31462
|
+
[k: string]: unknown;
|
|
31463
|
+
}
|
|
31464
|
+
}
|
|
31465
|
+
}
|
|
31466
|
+
}
|
|
31467
|
+
}
|
|
31468
|
+
}
|
|
31469
|
+
namespace V3NextAppInstallationsAppInstallationIdActionsStaging {
|
|
31470
|
+
namespace Post {
|
|
31471
|
+
namespace Parameters {
|
|
31472
|
+
type Path = {
|
|
31473
|
+
appInstallationId: string;
|
|
31474
|
+
};
|
|
31475
|
+
interface RequestBody {
|
|
31476
|
+
description: string;
|
|
31477
|
+
domain: string;
|
|
31478
|
+
installationPath?: string;
|
|
31479
|
+
}
|
|
31480
|
+
type Header = {};
|
|
31481
|
+
type Query = {};
|
|
31482
|
+
}
|
|
31483
|
+
namespace Responses {
|
|
31484
|
+
namespace $201 {
|
|
31485
|
+
namespace Content {
|
|
31486
|
+
interface ApplicationJson {
|
|
31487
|
+
id: string;
|
|
31488
|
+
}
|
|
31489
|
+
}
|
|
31490
|
+
}
|
|
31491
|
+
namespace $404 {
|
|
31492
|
+
namespace Content {
|
|
31493
|
+
interface ApplicationJson {
|
|
31494
|
+
[k: string]: unknown;
|
|
31495
|
+
}
|
|
31496
|
+
}
|
|
31497
|
+
}
|
|
31498
|
+
namespace $429 {
|
|
31499
|
+
namespace Content {
|
|
31500
|
+
interface ApplicationJson {
|
|
31501
|
+
[k: string]: unknown;
|
|
31502
|
+
}
|
|
31503
|
+
}
|
|
31504
|
+
}
|
|
31505
|
+
namespace Default {
|
|
31506
|
+
namespace Content {
|
|
31507
|
+
interface ApplicationJson {
|
|
31508
|
+
[k: string]: unknown;
|
|
31509
|
+
}
|
|
31510
|
+
}
|
|
31511
|
+
}
|
|
31512
|
+
}
|
|
31513
|
+
}
|
|
31514
|
+
}
|
|
31333
31515
|
}
|
|
31334
31516
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.448.2';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.449.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",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"test:compile": "run tsc --noEmit"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@mittwald/api-client-commons": "^4.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.449.0",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.449.0",
|
|
80
80
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
81
81
|
"@types/node": "^22.18.11",
|
|
82
82
|
"@types/react": "^18.3.26",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"optional": true
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "7807d143b550d9636adf3f89972f9888f8411a5a"
|
|
110
110
|
}
|