@mittwald/api-client 4.441.0 → 4.443.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 +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/generated/v3-next/client-react.js +2 -0
- package/dist/esm/generated/v3-next/client.js +2 -0
- package/dist/esm/generated/v3-next/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +22 -0
- package/dist/types/generated/v2/client.d.ts +89 -0
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +99 -17
- package/dist/types/generated/v3-next/client-react.d.ts +22 -0
- package/dist/types/generated/v3-next/client.d.ts +89 -0
- package/dist/types/generated/v3-next/descriptors.d.ts +2 -0
- package/dist/types/generated/v3-next/types.d.ts +99 -17
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -298,6 +298,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
298
298
|
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
|
|
299
299
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
|
|
300
300
|
}
|
|
301
|
+
namespace ContainerListAccessibleServices {
|
|
302
|
+
type RequestData = InferredRequestData<typeof descriptors.containerListAccessibleServices>;
|
|
303
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListAccessibleServices, TStatus>;
|
|
304
|
+
}
|
|
301
305
|
namespace ContainerListSelfStacks {
|
|
302
306
|
type RequestData = InferredRequestData<typeof descriptors.containerListSelfStacks>;
|
|
303
307
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListSelfStacks, TStatus>;
|
|
@@ -4312,6 +4316,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4312
4316
|
nextScheduledWebhookExecution?: string;
|
|
4313
4317
|
pendingInstallation: boolean;
|
|
4314
4318
|
pendingRemoval: boolean;
|
|
4319
|
+
scopeChangeAcceptanceDeadline?: string;
|
|
4315
4320
|
variantKey?: string;
|
|
4316
4321
|
webhookExecutionHalted: boolean;
|
|
4317
4322
|
}
|
|
@@ -5129,7 +5134,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
5129
5134
|
enableSpamProtection: boolean;
|
|
5130
5135
|
password: string;
|
|
5131
5136
|
/**
|
|
5132
|
-
*
|
|
5137
|
+
* Storage limit of the mailbox in bytes. Must be at least 209715200 (200 MiB), or -1 for an unlimited quota.
|
|
5133
5138
|
*/
|
|
5134
5139
|
quotaInBytes: number;
|
|
5135
5140
|
};
|
|
@@ -5153,21 +5158,24 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
5153
5158
|
forwardAddresses: string[];
|
|
5154
5159
|
}
|
|
5155
5160
|
interface DeMittwaldMailMailAddressBackup {
|
|
5161
|
+
/**
|
|
5162
|
+
* Name of the backup; an eight-digit date in YYYYMMDD format. Use it as the backupId path parameter to recover emails from this backup.
|
|
5163
|
+
*/
|
|
5156
5164
|
name: string;
|
|
5157
5165
|
}
|
|
5158
5166
|
interface DeMittwaldMailMailAddress {
|
|
5159
5167
|
address: string;
|
|
5160
5168
|
archive: {
|
|
5161
5169
|
/**
|
|
5162
|
-
*
|
|
5170
|
+
* Shows if the mail-archive is enabled.
|
|
5163
5171
|
*/
|
|
5164
5172
|
active: boolean;
|
|
5165
5173
|
/**
|
|
5166
|
-
*
|
|
5174
|
+
* Maximum available mail-archive storage in bytes.
|
|
5167
5175
|
*/
|
|
5168
5176
|
quota: number;
|
|
5169
5177
|
/**
|
|
5170
|
-
*
|
|
5178
|
+
* Current mail-archive usage in bytes.
|
|
5171
5179
|
*/
|
|
5172
5180
|
usedBytes: number;
|
|
5173
5181
|
};
|
|
@@ -5208,7 +5216,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
5208
5216
|
projectId: string;
|
|
5209
5217
|
rateLimitChangeRequest?: {
|
|
5210
5218
|
/**
|
|
5211
|
-
*
|
|
5219
|
+
* ID of the rate limit requested.
|
|
5212
5220
|
*/
|
|
5213
5221
|
rateLimitId: string;
|
|
5214
5222
|
};
|
|
@@ -5983,11 +5991,9 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
5983
5991
|
changes: {
|
|
5984
5992
|
after: {
|
|
5985
5993
|
name: string;
|
|
5986
|
-
purpose: "unspecified" | "primary" | "cache" | "custom";
|
|
5987
5994
|
};
|
|
5988
5995
|
before: {
|
|
5989
5996
|
name: string | null;
|
|
5990
|
-
purpose: string | null;
|
|
5991
5997
|
};
|
|
5992
5998
|
};
|
|
5993
5999
|
name: "app.database-linked";
|
|
@@ -6000,11 +6006,9 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6000
6006
|
changes: {
|
|
6001
6007
|
after: {
|
|
6002
6008
|
name: string | null;
|
|
6003
|
-
purpose: string | null;
|
|
6004
6009
|
};
|
|
6005
6010
|
before: {
|
|
6006
6011
|
name: string;
|
|
6007
|
-
purpose: "unspecified" | "primary" | "cache" | "custom";
|
|
6008
6012
|
};
|
|
6009
6013
|
};
|
|
6010
6014
|
name: "app.database-unlinked";
|
|
@@ -6042,6 +6046,21 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6042
6046
|
error?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6043
6047
|
};
|
|
6044
6048
|
}
|
|
6049
|
+
interface DeMittwaldActivitylogAppInstallationMainDatabaseChanged {
|
|
6050
|
+
changes: {
|
|
6051
|
+
after: {
|
|
6052
|
+
name: string | null;
|
|
6053
|
+
};
|
|
6054
|
+
before: {
|
|
6055
|
+
name: string | null;
|
|
6056
|
+
};
|
|
6057
|
+
};
|
|
6058
|
+
name: "app.main-database-changed";
|
|
6059
|
+
parameters: {
|
|
6060
|
+
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6061
|
+
database: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6062
|
+
};
|
|
6063
|
+
}
|
|
6045
6064
|
interface DeMittwaldActivitylogAppInstallationCopyRequested {
|
|
6046
6065
|
name: "app.copy-requested";
|
|
6047
6066
|
parameters: {
|
|
@@ -6220,7 +6239,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6220
6239
|
version: string | null;
|
|
6221
6240
|
};
|
|
6222
6241
|
};
|
|
6223
|
-
name: "database.mysql-version-set";
|
|
6242
|
+
name: "database.mysql-version-set" | "database.redis-version-set";
|
|
6224
6243
|
parameters: {
|
|
6225
6244
|
description: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6226
6245
|
name: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
@@ -6231,9 +6250,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6231
6250
|
changes: {
|
|
6232
6251
|
after?: {
|
|
6233
6252
|
aRecords: "managed";
|
|
6253
|
+
ttl?: (number | "auto") | null;
|
|
6234
6254
|
};
|
|
6235
6255
|
before?: {
|
|
6236
6256
|
aRecords: string[] | null;
|
|
6257
|
+
ttl?: (number | "auto") | null;
|
|
6237
6258
|
};
|
|
6238
6259
|
};
|
|
6239
6260
|
name: "dns.a-record-set-managed";
|
|
@@ -6309,9 +6330,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6309
6330
|
changes: {
|
|
6310
6331
|
after?: {
|
|
6311
6332
|
mx: "managed";
|
|
6333
|
+
ttl?: (number | "auto") | null;
|
|
6312
6334
|
};
|
|
6313
6335
|
before?: {
|
|
6314
6336
|
mx: {}[] | null;
|
|
6337
|
+
ttl?: (number | "auto") | null;
|
|
6315
6338
|
};
|
|
6316
6339
|
};
|
|
6317
6340
|
name: "dns.mx-record-set-managed";
|
|
@@ -6463,7 +6486,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6463
6486
|
name: string;
|
|
6464
6487
|
}
|
|
6465
6488
|
interface DeMittwaldActivitylogLogEntry {
|
|
6466
|
-
action: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsDomainDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsIngressDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCnameRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsSrvRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCaaRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsTxtRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseVersionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationCopyRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationFailed | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseLinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationAppVersionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogGenericAction;
|
|
6489
|
+
action: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsDomainDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsIngressDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCnameRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsSrvRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCaaRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsTxtRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseVersionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationCopyRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationFailed | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseLinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationMainDatabaseChanged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationAppVersionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogGenericAction;
|
|
6467
6490
|
aggregate: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAggregateReference;
|
|
6468
6491
|
dateTime: string;
|
|
6469
6492
|
/**
|
|
@@ -6867,11 +6890,6 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6867
6890
|
notificationThresholdInBytes?: number;
|
|
6868
6891
|
statisticCategories?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldStoragespaceStatisticsCategory[];
|
|
6869
6892
|
}
|
|
6870
|
-
interface DeMittwaldTaskAggregateReference {
|
|
6871
|
-
aggregate: string;
|
|
6872
|
-
domain: string;
|
|
6873
|
-
id: string;
|
|
6874
|
-
}
|
|
6875
6893
|
interface DeMittwaldSignupAccount {
|
|
6876
6894
|
email?: string;
|
|
6877
6895
|
/**
|
|
@@ -11286,6 +11304,63 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
11286
11304
|
}
|
|
11287
11305
|
}
|
|
11288
11306
|
}
|
|
11307
|
+
namespace V3NextServices {
|
|
11308
|
+
namespace Get {
|
|
11309
|
+
namespace Parameters {
|
|
11310
|
+
type Path = {};
|
|
11311
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
11312
|
+
type Query = {
|
|
11313
|
+
searchTerm?: string;
|
|
11314
|
+
sortOrder?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceSortOrder;
|
|
11315
|
+
limit?: number;
|
|
11316
|
+
skip?: number;
|
|
11317
|
+
page?: number;
|
|
11318
|
+
};
|
|
11319
|
+
}
|
|
11320
|
+
namespace Responses {
|
|
11321
|
+
namespace $200 {
|
|
11322
|
+
namespace Content {
|
|
11323
|
+
type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceResponse[];
|
|
11324
|
+
}
|
|
11325
|
+
}
|
|
11326
|
+
namespace $400 {
|
|
11327
|
+
namespace Content {
|
|
11328
|
+
interface ApplicationJson {
|
|
11329
|
+
[k: string]: unknown;
|
|
11330
|
+
}
|
|
11331
|
+
}
|
|
11332
|
+
}
|
|
11333
|
+
namespace $403 {
|
|
11334
|
+
namespace Content {
|
|
11335
|
+
interface ApplicationJson {
|
|
11336
|
+
[k: string]: unknown;
|
|
11337
|
+
}
|
|
11338
|
+
}
|
|
11339
|
+
}
|
|
11340
|
+
namespace $429 {
|
|
11341
|
+
namespace Content {
|
|
11342
|
+
interface ApplicationJson {
|
|
11343
|
+
[k: string]: unknown;
|
|
11344
|
+
}
|
|
11345
|
+
}
|
|
11346
|
+
}
|
|
11347
|
+
namespace $500 {
|
|
11348
|
+
namespace Content {
|
|
11349
|
+
interface ApplicationJson {
|
|
11350
|
+
[k: string]: unknown;
|
|
11351
|
+
}
|
|
11352
|
+
}
|
|
11353
|
+
}
|
|
11354
|
+
namespace Default {
|
|
11355
|
+
namespace Content {
|
|
11356
|
+
interface ApplicationJson {
|
|
11357
|
+
[k: string]: unknown;
|
|
11358
|
+
}
|
|
11359
|
+
}
|
|
11360
|
+
}
|
|
11361
|
+
}
|
|
11362
|
+
}
|
|
11363
|
+
}
|
|
11289
11364
|
namespace V3NextStacks {
|
|
11290
11365
|
namespace Get {
|
|
11291
11366
|
namespace Parameters {
|
|
@@ -14391,6 +14466,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
14391
14466
|
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
14392
14467
|
type Query = {
|
|
14393
14468
|
includeServiceCronjobs?: boolean;
|
|
14469
|
+
stackId?: string;
|
|
14394
14470
|
limit?: number;
|
|
14395
14471
|
skip?: number;
|
|
14396
14472
|
page?: number;
|
|
@@ -17551,7 +17627,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
17551
17627
|
};
|
|
17552
17628
|
interface RequestBody {
|
|
17553
17629
|
/**
|
|
17554
|
-
*
|
|
17630
|
+
* Storage limit of the mailbox in bytes. Must be at least 209715200 (200 MiB), or -1 for an unlimited quota.
|
|
17555
17631
|
*/
|
|
17556
17632
|
quotaInBytes: number;
|
|
17557
17633
|
}
|
|
@@ -19609,6 +19685,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
19609
19685
|
extensionId?: string;
|
|
19610
19686
|
searchTerm?: string;
|
|
19611
19687
|
anchor?: string;
|
|
19688
|
+
hasAcceptedAllScopes?: boolean;
|
|
19612
19689
|
limit?: number;
|
|
19613
19690
|
skip?: number;
|
|
19614
19691
|
page?: number;
|
|
@@ -23614,6 +23691,9 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
23614
23691
|
};
|
|
23615
23692
|
interface RequestBody {
|
|
23616
23693
|
description: string;
|
|
23694
|
+
/**
|
|
23695
|
+
* Password of the Deliverybox. Write-only: it is never returned by any route.
|
|
23696
|
+
*/
|
|
23617
23697
|
password: string;
|
|
23618
23698
|
}
|
|
23619
23699
|
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
@@ -27612,6 +27692,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
27612
27692
|
type Query = {
|
|
27613
27693
|
limit?: number;
|
|
27614
27694
|
skip?: number;
|
|
27695
|
+
page?: number;
|
|
27615
27696
|
};
|
|
27616
27697
|
}
|
|
27617
27698
|
namespace Responses {
|
|
@@ -27854,6 +27935,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
27854
27935
|
type Query = {
|
|
27855
27936
|
limit?: number;
|
|
27856
27937
|
skip?: number;
|
|
27938
|
+
page?: number;
|
|
27857
27939
|
};
|
|
27858
27940
|
}
|
|
27859
27941
|
namespace Responses {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.442.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.443.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.443.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.443.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": "4ed1dd5665b9a1da5e91817dda74b70d8b89a7ad"
|
|
110
110
|
}
|