@mittwald/api-client 4.422.0 → 4.425.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 +12 -0
- package/dist/esm/generated/v2/descriptors.js +36 -0
- package/dist/esm/generated/v3-next/client.js +12 -0
- package/dist/esm/generated/v3-next/descriptors.js +36 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +3 -4
- package/dist/types/generated/v2/client.d.ts +404 -12
- package/dist/types/generated/v2/descriptors.d.ts +12 -0
- package/dist/types/generated/v2/types.d.ts +364 -6
- package/dist/types/generated/v3-next/client-react.d.ts +3 -4
- package/dist/types/generated/v3-next/client.d.ts +404 -12
- package/dist/types/generated/v3-next/descriptors.d.ts +12 -0
- package/dist/types/generated/v3-next/types.d.ts +364 -6
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -214,6 +214,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
214
214
|
type RequestData = InferredRequestData<typeof descriptors.backupDeleteProjectBackup>;
|
|
215
215
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupDeleteProjectBackup, TStatus>;
|
|
216
216
|
}
|
|
217
|
+
namespace BackupUpdateProjectBackup {
|
|
218
|
+
type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackup>;
|
|
219
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupUpdateProjectBackup, TStatus>;
|
|
220
|
+
}
|
|
217
221
|
namespace BackupGetProjectBackupDatabaseDumps {
|
|
218
222
|
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumps>;
|
|
219
223
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumps, TStatus>;
|
|
@@ -1486,6 +1490,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1486
1490
|
type RequestData = InferredRequestData<typeof descriptors.projectDeleteProject>;
|
|
1487
1491
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectDeleteProject, TStatus>;
|
|
1488
1492
|
}
|
|
1493
|
+
namespace ProjectUpdateProject {
|
|
1494
|
+
type RequestData = InferredRequestData<typeof descriptors.projectUpdateProject>;
|
|
1495
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateProject, TStatus>;
|
|
1496
|
+
}
|
|
1489
1497
|
namespace ProjectRequestServerAvatarUpload {
|
|
1490
1498
|
type RequestData = InferredRequestData<typeof descriptors.projectRequestServerAvatarUpload>;
|
|
1491
1499
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectRequestServerAvatarUpload, TStatus>;
|
|
@@ -1526,6 +1534,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1526
1534
|
type RequestData = InferredRequestData<typeof descriptors.projectGetServer>;
|
|
1527
1535
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectGetServer, TStatus>;
|
|
1528
1536
|
}
|
|
1537
|
+
namespace ProjectUpdateServer {
|
|
1538
|
+
type RequestData = InferredRequestData<typeof descriptors.projectUpdateServer>;
|
|
1539
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectUpdateServer, TStatus>;
|
|
1540
|
+
}
|
|
1529
1541
|
namespace ProjectListCustomerProjects {
|
|
1530
1542
|
type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
|
|
1531
1543
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
|
|
@@ -1654,10 +1666,18 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1654
1666
|
type RequestData = InferredRequestData<typeof descriptors.storagespaceGetProjectStatistics>;
|
|
1655
1667
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetProjectStatistics, TStatus>;
|
|
1656
1668
|
}
|
|
1669
|
+
namespace StoragespaceUpdateProjectStatistics {
|
|
1670
|
+
type RequestData = InferredRequestData<typeof descriptors.storagespaceUpdateProjectStatistics>;
|
|
1671
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceUpdateProjectStatistics, TStatus>;
|
|
1672
|
+
}
|
|
1657
1673
|
namespace StoragespaceGetServerStatistics {
|
|
1658
1674
|
type RequestData = InferredRequestData<typeof descriptors.storagespaceGetServerStatistics>;
|
|
1659
1675
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetServerStatistics, TStatus>;
|
|
1660
1676
|
}
|
|
1677
|
+
namespace StoragespaceUpdateServerStatistics {
|
|
1678
|
+
type RequestData = InferredRequestData<typeof descriptors.storagespaceUpdateServerStatistics>;
|
|
1679
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceUpdateServerStatistics, TStatus>;
|
|
1680
|
+
}
|
|
1661
1681
|
namespace StoragespaceReplaceProjectNotificationThreshold {
|
|
1662
1682
|
type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold>;
|
|
1663
1683
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold, TStatus>;
|
|
@@ -1886,6 +1906,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1886
1906
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1887
1907
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1888
1908
|
}
|
|
1909
|
+
namespace ContainerAddTemplateComponent {
|
|
1910
|
+
type RequestData = InferredRequestData<typeof descriptors.containerAddTemplateComponent>;
|
|
1911
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerAddTemplateComponent, TStatus>;
|
|
1912
|
+
}
|
|
1889
1913
|
}
|
|
1890
1914
|
namespace Components {
|
|
1891
1915
|
namespace Schemas {
|
|
@@ -7005,6 +7029,18 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7005
7029
|
}
|
|
7006
7030
|
type DeMittwaldVerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
7007
7031
|
type DeMittwaldContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
7032
|
+
interface DeMittwaldContainerAddTemplateComponent {
|
|
7033
|
+
templateConfig: {
|
|
7034
|
+
templateId: string;
|
|
7035
|
+
/**
|
|
7036
|
+
* Values for template user inputs. Missing optional values are filled from template defaults.
|
|
7037
|
+
*/
|
|
7038
|
+
userInputs?: {
|
|
7039
|
+
name: string;
|
|
7040
|
+
value: string;
|
|
7041
|
+
}[];
|
|
7042
|
+
};
|
|
7043
|
+
}
|
|
7008
7044
|
interface DeMittwaldCommonsAddress {
|
|
7009
7045
|
street: string;
|
|
7010
7046
|
houseNumber: string;
|
|
@@ -9778,6 +9814,67 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
9778
9814
|
}
|
|
9779
9815
|
}
|
|
9780
9816
|
}
|
|
9817
|
+
namespace Patch {
|
|
9818
|
+
namespace Parameters {
|
|
9819
|
+
type Path = {
|
|
9820
|
+
projectBackupId: string;
|
|
9821
|
+
};
|
|
9822
|
+
interface RequestBody {
|
|
9823
|
+
/**
|
|
9824
|
+
* Description of the ProjectBackup.
|
|
9825
|
+
*/
|
|
9826
|
+
description?: string;
|
|
9827
|
+
/**
|
|
9828
|
+
* Time when to expire the Backup. Must be no more than one year in the future.
|
|
9829
|
+
*/
|
|
9830
|
+
expirationTime?: string;
|
|
9831
|
+
}
|
|
9832
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
9833
|
+
type Query = {};
|
|
9834
|
+
}
|
|
9835
|
+
namespace Responses {
|
|
9836
|
+
namespace $204 {
|
|
9837
|
+
namespace Content {
|
|
9838
|
+
type Empty = unknown;
|
|
9839
|
+
}
|
|
9840
|
+
}
|
|
9841
|
+
namespace $400 {
|
|
9842
|
+
namespace Content {
|
|
9843
|
+
interface ApplicationJson {
|
|
9844
|
+
[k: string]: unknown;
|
|
9845
|
+
}
|
|
9846
|
+
}
|
|
9847
|
+
}
|
|
9848
|
+
namespace $403 {
|
|
9849
|
+
namespace Content {
|
|
9850
|
+
interface ApplicationJson {
|
|
9851
|
+
[k: string]: unknown;
|
|
9852
|
+
}
|
|
9853
|
+
}
|
|
9854
|
+
}
|
|
9855
|
+
namespace $404 {
|
|
9856
|
+
namespace Content {
|
|
9857
|
+
interface ApplicationJson {
|
|
9858
|
+
[k: string]: unknown;
|
|
9859
|
+
}
|
|
9860
|
+
}
|
|
9861
|
+
}
|
|
9862
|
+
namespace $429 {
|
|
9863
|
+
namespace Content {
|
|
9864
|
+
interface ApplicationJson {
|
|
9865
|
+
[k: string]: unknown;
|
|
9866
|
+
}
|
|
9867
|
+
}
|
|
9868
|
+
}
|
|
9869
|
+
namespace Default {
|
|
9870
|
+
namespace Content {
|
|
9871
|
+
interface ApplicationJson {
|
|
9872
|
+
[k: string]: unknown;
|
|
9873
|
+
}
|
|
9874
|
+
}
|
|
9875
|
+
}
|
|
9876
|
+
}
|
|
9877
|
+
}
|
|
9781
9878
|
}
|
|
9782
9879
|
namespace V3NextProjectBackupsProjectBackupIdDatabaseDumps {
|
|
9783
9880
|
namespace Get {
|
|
@@ -14581,14 +14678,14 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
14581
14678
|
};
|
|
14582
14679
|
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
14583
14680
|
type Query = {
|
|
14584
|
-
limit?: number;
|
|
14585
|
-
skip?: number;
|
|
14586
|
-
page?: number;
|
|
14587
14681
|
since?: string;
|
|
14588
14682
|
until?: string;
|
|
14589
14683
|
status?: string;
|
|
14590
14684
|
triggeredByUser?: boolean;
|
|
14591
14685
|
sortOrder?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCronjobCronjobExecutionSortOrder;
|
|
14686
|
+
limit?: number;
|
|
14687
|
+
skip?: number;
|
|
14688
|
+
page?: number;
|
|
14592
14689
|
};
|
|
14593
14690
|
}
|
|
14594
14691
|
namespace Responses {
|
|
@@ -14819,9 +14916,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
14819
14916
|
executionId: string;
|
|
14820
14917
|
cronjobId: string;
|
|
14821
14918
|
};
|
|
14822
|
-
type Header = {
|
|
14823
|
-
"Accept-Language"?: "de" | "en";
|
|
14824
|
-
} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
14919
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
14825
14920
|
type Query = {};
|
|
14826
14921
|
}
|
|
14827
14922
|
namespace Responses {
|
|
@@ -26559,6 +26654,53 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
26559
26654
|
}
|
|
26560
26655
|
}
|
|
26561
26656
|
}
|
|
26657
|
+
namespace Patch {
|
|
26658
|
+
namespace Parameters {
|
|
26659
|
+
type Path = {
|
|
26660
|
+
projectId: string;
|
|
26661
|
+
};
|
|
26662
|
+
interface RequestBody {
|
|
26663
|
+
description?: string;
|
|
26664
|
+
}
|
|
26665
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
26666
|
+
type Query = {};
|
|
26667
|
+
}
|
|
26668
|
+
namespace Responses {
|
|
26669
|
+
namespace $204 {
|
|
26670
|
+
namespace Content {
|
|
26671
|
+
type Empty = unknown;
|
|
26672
|
+
}
|
|
26673
|
+
}
|
|
26674
|
+
namespace $400 {
|
|
26675
|
+
namespace Content {
|
|
26676
|
+
interface ApplicationJson {
|
|
26677
|
+
[k: string]: unknown;
|
|
26678
|
+
}
|
|
26679
|
+
}
|
|
26680
|
+
}
|
|
26681
|
+
namespace $403 {
|
|
26682
|
+
namespace Content {
|
|
26683
|
+
interface ApplicationJson {
|
|
26684
|
+
[k: string]: unknown;
|
|
26685
|
+
}
|
|
26686
|
+
}
|
|
26687
|
+
}
|
|
26688
|
+
namespace $429 {
|
|
26689
|
+
namespace Content {
|
|
26690
|
+
interface ApplicationJson {
|
|
26691
|
+
[k: string]: unknown;
|
|
26692
|
+
}
|
|
26693
|
+
}
|
|
26694
|
+
}
|
|
26695
|
+
namespace Default {
|
|
26696
|
+
namespace Content {
|
|
26697
|
+
interface ApplicationJson {
|
|
26698
|
+
[k: string]: unknown;
|
|
26699
|
+
}
|
|
26700
|
+
}
|
|
26701
|
+
}
|
|
26702
|
+
}
|
|
26703
|
+
}
|
|
26562
26704
|
}
|
|
26563
26705
|
namespace V3NextServersServerIdAvatar {
|
|
26564
26706
|
namespace Post {
|
|
@@ -27097,6 +27239,53 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
27097
27239
|
}
|
|
27098
27240
|
}
|
|
27099
27241
|
}
|
|
27242
|
+
namespace Patch {
|
|
27243
|
+
namespace Parameters {
|
|
27244
|
+
type Path = {
|
|
27245
|
+
serverId: string;
|
|
27246
|
+
};
|
|
27247
|
+
interface RequestBody {
|
|
27248
|
+
description?: string;
|
|
27249
|
+
}
|
|
27250
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
27251
|
+
type Query = {};
|
|
27252
|
+
}
|
|
27253
|
+
namespace Responses {
|
|
27254
|
+
namespace $204 {
|
|
27255
|
+
namespace Content {
|
|
27256
|
+
type Empty = unknown;
|
|
27257
|
+
}
|
|
27258
|
+
}
|
|
27259
|
+
namespace $400 {
|
|
27260
|
+
namespace Content {
|
|
27261
|
+
interface ApplicationJson {
|
|
27262
|
+
[k: string]: unknown;
|
|
27263
|
+
}
|
|
27264
|
+
}
|
|
27265
|
+
}
|
|
27266
|
+
namespace $403 {
|
|
27267
|
+
namespace Content {
|
|
27268
|
+
interface ApplicationJson {
|
|
27269
|
+
[k: string]: unknown;
|
|
27270
|
+
}
|
|
27271
|
+
}
|
|
27272
|
+
}
|
|
27273
|
+
namespace $429 {
|
|
27274
|
+
namespace Content {
|
|
27275
|
+
interface ApplicationJson {
|
|
27276
|
+
[k: string]: unknown;
|
|
27277
|
+
}
|
|
27278
|
+
}
|
|
27279
|
+
}
|
|
27280
|
+
namespace Default {
|
|
27281
|
+
namespace Content {
|
|
27282
|
+
interface ApplicationJson {
|
|
27283
|
+
[k: string]: unknown;
|
|
27284
|
+
}
|
|
27285
|
+
}
|
|
27286
|
+
}
|
|
27287
|
+
}
|
|
27288
|
+
}
|
|
27100
27289
|
}
|
|
27101
27290
|
namespace V3NextCustomersCustomerIdProjects {
|
|
27102
27291
|
namespace Get {
|
|
@@ -28667,6 +28856,53 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
28667
28856
|
}
|
|
28668
28857
|
}
|
|
28669
28858
|
}
|
|
28859
|
+
namespace Patch {
|
|
28860
|
+
namespace Parameters {
|
|
28861
|
+
type Path = {
|
|
28862
|
+
projectId: string;
|
|
28863
|
+
};
|
|
28864
|
+
interface RequestBody {
|
|
28865
|
+
notificationThresholdInBytes?: number;
|
|
28866
|
+
}
|
|
28867
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
28868
|
+
type Query = {};
|
|
28869
|
+
}
|
|
28870
|
+
namespace Responses {
|
|
28871
|
+
namespace $204 {
|
|
28872
|
+
namespace Content {
|
|
28873
|
+
type Empty = unknown;
|
|
28874
|
+
}
|
|
28875
|
+
}
|
|
28876
|
+
namespace $403 {
|
|
28877
|
+
namespace Content {
|
|
28878
|
+
interface ApplicationJson {
|
|
28879
|
+
[k: string]: unknown;
|
|
28880
|
+
}
|
|
28881
|
+
}
|
|
28882
|
+
}
|
|
28883
|
+
namespace $429 {
|
|
28884
|
+
namespace Content {
|
|
28885
|
+
interface ApplicationJson {
|
|
28886
|
+
[k: string]: unknown;
|
|
28887
|
+
}
|
|
28888
|
+
}
|
|
28889
|
+
}
|
|
28890
|
+
namespace $500 {
|
|
28891
|
+
namespace Content {
|
|
28892
|
+
interface ApplicationJson {
|
|
28893
|
+
[k: string]: unknown;
|
|
28894
|
+
}
|
|
28895
|
+
}
|
|
28896
|
+
}
|
|
28897
|
+
namespace Default {
|
|
28898
|
+
namespace Content {
|
|
28899
|
+
interface ApplicationJson {
|
|
28900
|
+
[k: string]: unknown;
|
|
28901
|
+
}
|
|
28902
|
+
}
|
|
28903
|
+
}
|
|
28904
|
+
}
|
|
28905
|
+
}
|
|
28670
28906
|
}
|
|
28671
28907
|
namespace V3NextServersServerIdStorageSpaceStatistics {
|
|
28672
28908
|
namespace Get {
|
|
@@ -28727,6 +28963,53 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
28727
28963
|
}
|
|
28728
28964
|
}
|
|
28729
28965
|
}
|
|
28966
|
+
namespace Patch {
|
|
28967
|
+
namespace Parameters {
|
|
28968
|
+
type Path = {
|
|
28969
|
+
serverId: string;
|
|
28970
|
+
};
|
|
28971
|
+
interface RequestBody {
|
|
28972
|
+
notificationThresholdInBytes?: number;
|
|
28973
|
+
}
|
|
28974
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
28975
|
+
type Query = {};
|
|
28976
|
+
}
|
|
28977
|
+
namespace Responses {
|
|
28978
|
+
namespace $204 {
|
|
28979
|
+
namespace Content {
|
|
28980
|
+
type Empty = unknown;
|
|
28981
|
+
}
|
|
28982
|
+
}
|
|
28983
|
+
namespace $403 {
|
|
28984
|
+
namespace Content {
|
|
28985
|
+
interface ApplicationJson {
|
|
28986
|
+
[k: string]: unknown;
|
|
28987
|
+
}
|
|
28988
|
+
}
|
|
28989
|
+
}
|
|
28990
|
+
namespace $429 {
|
|
28991
|
+
namespace Content {
|
|
28992
|
+
interface ApplicationJson {
|
|
28993
|
+
[k: string]: unknown;
|
|
28994
|
+
}
|
|
28995
|
+
}
|
|
28996
|
+
}
|
|
28997
|
+
namespace $500 {
|
|
28998
|
+
namespace Content {
|
|
28999
|
+
interface ApplicationJson {
|
|
29000
|
+
[k: string]: unknown;
|
|
29001
|
+
}
|
|
29002
|
+
}
|
|
29003
|
+
}
|
|
29004
|
+
namespace Default {
|
|
29005
|
+
namespace Content {
|
|
29006
|
+
interface ApplicationJson {
|
|
29007
|
+
[k: string]: unknown;
|
|
29008
|
+
}
|
|
29009
|
+
}
|
|
29010
|
+
}
|
|
29011
|
+
}
|
|
29012
|
+
}
|
|
28730
29013
|
}
|
|
28731
29014
|
namespace V3NextProjectsProjectIdStorageSpaceNotificationThreshold {
|
|
28732
29015
|
namespace Put {
|
|
@@ -31387,5 +31670,80 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31387
31670
|
}
|
|
31388
31671
|
}
|
|
31389
31672
|
}
|
|
31673
|
+
namespace V3NextStacksStackIdActionsAddTemplateComponent {
|
|
31674
|
+
namespace Post {
|
|
31675
|
+
namespace Parameters {
|
|
31676
|
+
type Path = {
|
|
31677
|
+
stackId: string;
|
|
31678
|
+
};
|
|
31679
|
+
type RequestBody = MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerAddTemplateComponent;
|
|
31680
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31681
|
+
type Query = {};
|
|
31682
|
+
}
|
|
31683
|
+
namespace Responses {
|
|
31684
|
+
namespace $204 {
|
|
31685
|
+
namespace Content {
|
|
31686
|
+
type Empty = unknown;
|
|
31687
|
+
}
|
|
31688
|
+
}
|
|
31689
|
+
namespace $400 {
|
|
31690
|
+
namespace Content {
|
|
31691
|
+
interface ApplicationJson {
|
|
31692
|
+
[k: string]: unknown;
|
|
31693
|
+
}
|
|
31694
|
+
}
|
|
31695
|
+
}
|
|
31696
|
+
namespace $403 {
|
|
31697
|
+
namespace Content {
|
|
31698
|
+
interface ApplicationJson {
|
|
31699
|
+
[k: string]: unknown;
|
|
31700
|
+
}
|
|
31701
|
+
}
|
|
31702
|
+
}
|
|
31703
|
+
namespace $404 {
|
|
31704
|
+
namespace Content {
|
|
31705
|
+
interface ApplicationJson {
|
|
31706
|
+
[k: string]: unknown;
|
|
31707
|
+
}
|
|
31708
|
+
}
|
|
31709
|
+
}
|
|
31710
|
+
namespace $409 {
|
|
31711
|
+
namespace Content {
|
|
31712
|
+
interface ApplicationJson {
|
|
31713
|
+
[k: string]: unknown;
|
|
31714
|
+
}
|
|
31715
|
+
}
|
|
31716
|
+
}
|
|
31717
|
+
namespace $412 {
|
|
31718
|
+
namespace Content {
|
|
31719
|
+
interface ApplicationJson {
|
|
31720
|
+
[k: string]: unknown;
|
|
31721
|
+
}
|
|
31722
|
+
}
|
|
31723
|
+
}
|
|
31724
|
+
namespace $429 {
|
|
31725
|
+
namespace Content {
|
|
31726
|
+
interface ApplicationJson {
|
|
31727
|
+
[k: string]: unknown;
|
|
31728
|
+
}
|
|
31729
|
+
}
|
|
31730
|
+
}
|
|
31731
|
+
namespace $500 {
|
|
31732
|
+
namespace Content {
|
|
31733
|
+
interface ApplicationJson {
|
|
31734
|
+
[k: string]: unknown;
|
|
31735
|
+
}
|
|
31736
|
+
}
|
|
31737
|
+
}
|
|
31738
|
+
namespace Default {
|
|
31739
|
+
namespace Content {
|
|
31740
|
+
interface ApplicationJson {
|
|
31741
|
+
[k: string]: unknown;
|
|
31742
|
+
}
|
|
31743
|
+
}
|
|
31744
|
+
}
|
|
31745
|
+
}
|
|
31746
|
+
}
|
|
31747
|
+
}
|
|
31390
31748
|
}
|
|
31391
31749
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.424.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.425.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.425.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.425.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": "313c1704a7947d9ded070af134b5f9cc83f514d1"
|
|
110
110
|
}
|