@mittwald/api-client 4.442.0 → 4.445.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.
@@ -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>;
@@ -1866,10 +1870,6 @@ export declare namespace MittwaldAPIV3Next {
1866
1870
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1867
1871
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1868
1872
  }
1869
- namespace ContainerListAccessibleServices {
1870
- type RequestData = InferredRequestData<typeof descriptors.containerListAccessibleServices>;
1871
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListAccessibleServices, TStatus>;
1872
- }
1873
1873
  }
1874
1874
  namespace Components {
1875
1875
  namespace Schemas {
@@ -3515,6 +3515,10 @@ export declare namespace MittwaldAPIV3Next {
3515
3515
  emailAddress?: string;
3516
3516
  firstName?: string;
3517
3517
  lastName?: string;
3518
+ /**
3519
+ * German electronic invoicing routing ID (XRechnung). Only allowed for public authorities and requires a company.
3520
+ */
3521
+ leitwegId?: string;
3518
3522
  phoneNumbers?: string[];
3519
3523
  salutation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCommonsSalutation;
3520
3524
  title?: string;
@@ -4316,6 +4320,7 @@ export declare namespace MittwaldAPIV3Next {
4316
4320
  nextScheduledWebhookExecution?: string;
4317
4321
  pendingInstallation: boolean;
4318
4322
  pendingRemoval: boolean;
4323
+ scopeChangeAcceptanceDeadline?: string;
4319
4324
  variantKey?: string;
4320
4325
  webhookExecutionHalted: boolean;
4321
4326
  }
@@ -5990,11 +5995,9 @@ export declare namespace MittwaldAPIV3Next {
5990
5995
  changes: {
5991
5996
  after: {
5992
5997
  name: string;
5993
- purpose: "unspecified" | "primary" | "cache" | "custom";
5994
5998
  };
5995
5999
  before: {
5996
6000
  name: string | null;
5997
- purpose: string | null;
5998
6001
  };
5999
6002
  };
6000
6003
  name: "app.database-linked";
@@ -6007,11 +6010,9 @@ export declare namespace MittwaldAPIV3Next {
6007
6010
  changes: {
6008
6011
  after: {
6009
6012
  name: string | null;
6010
- purpose: string | null;
6011
6013
  };
6012
6014
  before: {
6013
6015
  name: string;
6014
- purpose: "unspecified" | "primary" | "cache" | "custom";
6015
6016
  };
6016
6017
  };
6017
6018
  name: "app.database-unlinked";
@@ -6049,6 +6050,21 @@ export declare namespace MittwaldAPIV3Next {
6049
6050
  error?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
6050
6051
  };
6051
6052
  }
6053
+ interface DeMittwaldActivitylogAppInstallationMainDatabaseChanged {
6054
+ changes: {
6055
+ after: {
6056
+ name: string | null;
6057
+ };
6058
+ before: {
6059
+ name: string | null;
6060
+ };
6061
+ };
6062
+ name: "app.main-database-changed";
6063
+ parameters: {
6064
+ appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
6065
+ database: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
6066
+ };
6067
+ }
6052
6068
  interface DeMittwaldActivitylogAppInstallationCopyRequested {
6053
6069
  name: "app.copy-requested";
6054
6070
  parameters: {
@@ -6227,7 +6243,7 @@ export declare namespace MittwaldAPIV3Next {
6227
6243
  version: string | null;
6228
6244
  };
6229
6245
  };
6230
- name: "database.mysql-version-set";
6246
+ name: "database.mysql-version-set" | "database.redis-version-set";
6231
6247
  parameters: {
6232
6248
  description: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
6233
6249
  name: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
@@ -6238,9 +6254,11 @@ export declare namespace MittwaldAPIV3Next {
6238
6254
  changes: {
6239
6255
  after?: {
6240
6256
  aRecords: "managed";
6257
+ ttl?: (number | "auto") | null;
6241
6258
  };
6242
6259
  before?: {
6243
6260
  aRecords: string[] | null;
6261
+ ttl?: (number | "auto") | null;
6244
6262
  };
6245
6263
  };
6246
6264
  name: "dns.a-record-set-managed";
@@ -6316,9 +6334,11 @@ export declare namespace MittwaldAPIV3Next {
6316
6334
  changes: {
6317
6335
  after?: {
6318
6336
  mx: "managed";
6337
+ ttl?: (number | "auto") | null;
6319
6338
  };
6320
6339
  before?: {
6321
6340
  mx: {}[] | null;
6341
+ ttl?: (number | "auto") | null;
6322
6342
  };
6323
6343
  };
6324
6344
  name: "dns.mx-record-set-managed";
@@ -6470,7 +6490,7 @@ export declare namespace MittwaldAPIV3Next {
6470
6490
  name: string;
6471
6491
  }
6472
6492
  interface DeMittwaldActivitylogLogEntry {
6473
- 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;
6493
+ 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;
6474
6494
  aggregate: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAggregateReference;
6475
6495
  dateTime: string;
6476
6496
  /**
@@ -6874,11 +6894,6 @@ export declare namespace MittwaldAPIV3Next {
6874
6894
  notificationThresholdInBytes?: number;
6875
6895
  statisticCategories?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldStoragespaceStatisticsCategory[];
6876
6896
  }
6877
- interface DeMittwaldTaskAggregateReference {
6878
- aggregate: string;
6879
- domain: string;
6880
- id: string;
6881
- }
6882
6897
  interface DeMittwaldSignupAccount {
6883
6898
  email?: string;
6884
6899
  /**
@@ -11293,6 +11308,63 @@ export declare namespace MittwaldAPIV3Next {
11293
11308
  }
11294
11309
  }
11295
11310
  }
11311
+ namespace V3NextServices {
11312
+ namespace Get {
11313
+ namespace Parameters {
11314
+ type Path = {};
11315
+ type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
11316
+ type Query = {
11317
+ searchTerm?: string;
11318
+ sortOrder?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceSortOrder;
11319
+ limit?: number;
11320
+ skip?: number;
11321
+ page?: number;
11322
+ };
11323
+ }
11324
+ namespace Responses {
11325
+ namespace $200 {
11326
+ namespace Content {
11327
+ type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceResponse[];
11328
+ }
11329
+ }
11330
+ namespace $400 {
11331
+ namespace Content {
11332
+ interface ApplicationJson {
11333
+ [k: string]: unknown;
11334
+ }
11335
+ }
11336
+ }
11337
+ namespace $403 {
11338
+ namespace Content {
11339
+ interface ApplicationJson {
11340
+ [k: string]: unknown;
11341
+ }
11342
+ }
11343
+ }
11344
+ namespace $429 {
11345
+ namespace Content {
11346
+ interface ApplicationJson {
11347
+ [k: string]: unknown;
11348
+ }
11349
+ }
11350
+ }
11351
+ namespace $500 {
11352
+ namespace Content {
11353
+ interface ApplicationJson {
11354
+ [k: string]: unknown;
11355
+ }
11356
+ }
11357
+ }
11358
+ namespace Default {
11359
+ namespace Content {
11360
+ interface ApplicationJson {
11361
+ [k: string]: unknown;
11362
+ }
11363
+ }
11364
+ }
11365
+ }
11366
+ }
11367
+ }
11296
11368
  namespace V3NextStacks {
11297
11369
  namespace Get {
11298
11370
  namespace Parameters {
@@ -14398,6 +14470,7 @@ export declare namespace MittwaldAPIV3Next {
14398
14470
  type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
14399
14471
  type Query = {
14400
14472
  includeServiceCronjobs?: boolean;
14473
+ stackId?: string;
14401
14474
  limit?: number;
14402
14475
  skip?: number;
14403
14476
  page?: number;
@@ -19616,6 +19689,7 @@ export declare namespace MittwaldAPIV3Next {
19616
19689
  extensionId?: string;
19617
19690
  searchTerm?: string;
19618
19691
  anchor?: string;
19692
+ hasAcceptedAllScopes?: boolean;
19619
19693
  limit?: number;
19620
19694
  skip?: number;
19621
19695
  page?: number;
@@ -27622,6 +27696,7 @@ export declare namespace MittwaldAPIV3Next {
27622
27696
  type Query = {
27623
27697
  limit?: number;
27624
27698
  skip?: number;
27699
+ page?: number;
27625
27700
  };
27626
27701
  }
27627
27702
  namespace Responses {
@@ -27864,6 +27939,7 @@ export declare namespace MittwaldAPIV3Next {
27864
27939
  type Query = {
27865
27940
  limit?: number;
27866
27941
  skip?: number;
27942
+ page?: number;
27867
27943
  };
27868
27944
  }
27869
27945
  namespace Responses {
@@ -31245,62 +31321,5 @@ export declare namespace MittwaldAPIV3Next {
31245
31321
  }
31246
31322
  }
31247
31323
  }
31248
- namespace V3NextServices {
31249
- namespace Get {
31250
- namespace Parameters {
31251
- type Path = {};
31252
- type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
31253
- type Query = {
31254
- searchTerm?: string;
31255
- sortOrder?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceSortOrder;
31256
- limit?: number;
31257
- skip?: number;
31258
- page?: number;
31259
- };
31260
- }
31261
- namespace Responses {
31262
- namespace $200 {
31263
- namespace Content {
31264
- type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceResponse[];
31265
- }
31266
- }
31267
- namespace $400 {
31268
- namespace Content {
31269
- interface ApplicationJson {
31270
- [k: string]: unknown;
31271
- }
31272
- }
31273
- }
31274
- namespace $403 {
31275
- namespace Content {
31276
- interface ApplicationJson {
31277
- [k: string]: unknown;
31278
- }
31279
- }
31280
- }
31281
- namespace $429 {
31282
- namespace Content {
31283
- interface ApplicationJson {
31284
- [k: string]: unknown;
31285
- }
31286
- }
31287
- }
31288
- namespace $500 {
31289
- namespace Content {
31290
- interface ApplicationJson {
31291
- [k: string]: unknown;
31292
- }
31293
- }
31294
- }
31295
- namespace Default {
31296
- namespace Content {
31297
- interface ApplicationJson {
31298
- [k: string]: unknown;
31299
- }
31300
- }
31301
- }
31302
- }
31303
- }
31304
- }
31305
31324
  }
31306
31325
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.441.0';
1
+ export declare const MittwaldAPIClientVersion = '4.444.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.442.0",
3
+ "version": "4.445.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.442.0",
75
+ "@mittwald/api-client-commons": "^4.445.0",
76
76
  "browser-or-node": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@mittwald/api-code-generator": "^4.442.0",
79
+ "@mittwald/api-code-generator": "^4.445.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": "977a925f8e62d4a3a0db72fa39f78c29ada4f257"
109
+ "gitHead": "01edb0a20dd2cc572881a85c8c2d5e5cd3ff3e4b"
110
110
  }