@mittwald/api-client 3.1.43 → 3.1.45

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/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { assertStatus } from '@mittwald/api-client-commons';
2
- import { M as MittwaldAPIV2Client } from './shared/api-client.534af7be.mjs';
3
- export { a as MittwaldAPIV2 } from './shared/api-client.534af7be.mjs';
2
+ import { M as MittwaldAPIV2Client } from './shared/api-client.80bca256.mjs';
3
+ export { a as MittwaldAPIV2 } from './shared/api-client.80bca256.mjs';
4
4
  import 'axios';
5
5
 
6
6
  declare class MittwaldAPIClient extends MittwaldAPIV2Client {
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { assertStatus } from '@mittwald/api-client-commons';
2
- import { M as MittwaldAPIV2Client } from './shared/api-client.534af7be.js';
3
- export { a as MittwaldAPIV2 } from './shared/api-client.534af7be.js';
2
+ import { M as MittwaldAPIV2Client } from './shared/api-client.80bca256.js';
3
+ export { a as MittwaldAPIV2 } from './shared/api-client.80bca256.js';
4
4
  import 'axios';
5
5
 
6
6
  declare class MittwaldAPIClient extends MittwaldAPIV2Client {
package/dist/react.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _mittwald_react_use_promise from '@mittwald/react-use-promise';
2
- import { M as MittwaldAPIV2Client, a as MittwaldAPIV2 } from './shared/api-client.534af7be.mjs';
2
+ import { M as MittwaldAPIV2Client, a as MittwaldAPIV2 } from './shared/api-client.80bca256.mjs';
3
3
  import '@mittwald/api-client-commons';
4
4
  import 'axios';
5
5
 
@@ -1175,6 +1175,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1175
1175
  v4: string[];
1176
1176
  };
1177
1177
  isDefault: boolean;
1178
+ isDomain?: boolean | undefined;
1178
1179
  isEnabled: boolean;
1179
1180
  ownership: MittwaldAPIV2.Components.Schemas.IngressOwnership;
1180
1181
  paths: MittwaldAPIV2.Components.Schemas.IngressPath[];
package/dist/react.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _mittwald_react_use_promise from '@mittwald/react-use-promise';
2
- import { M as MittwaldAPIV2Client, a as MittwaldAPIV2 } from './shared/api-client.534af7be.js';
2
+ import { M as MittwaldAPIV2Client, a as MittwaldAPIV2 } from './shared/api-client.80bca256.js';
3
3
  import '@mittwald/api-client-commons';
4
4
  import 'axios';
5
5
 
@@ -1175,6 +1175,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1175
1175
  v4: string[];
1176
1176
  };
1177
1177
  isDefault: boolean;
1178
+ isDomain?: boolean | undefined;
1178
1179
  isEnabled: boolean;
1179
1180
  ownership: MittwaldAPIV2.Components.Schemas.IngressOwnership;
1180
1181
  paths: MittwaldAPIV2.Components.Schemas.IngressPath[];
@@ -2416,7 +2416,19 @@ declare namespace MittwaldAPIV2 {
2416
2416
  fileOpsStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
2417
2417
  miscStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
2418
2418
  networkingOps: {
2419
- connectionType: "UNKNOWN" | "PRIVATE" | "INTERNAL" | "EXTERNAL";
2419
+ connectionType: "UNKNOWN" | "PRIVATE" | "EXTERNAL";
2420
+ /**
2421
+ * A short description of the network connection to provide additional context.
2422
+ */
2423
+ description: string;
2424
+ /**
2425
+ * IP address to which a connection was established.
2426
+ */
2427
+ ip: string;
2428
+ /**
2429
+ * Port to which a connection was established.
2430
+ */
2431
+ port: number;
2420
2432
  stats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
2421
2433
  /**
2422
2434
  * Hostname and port to which a connection was established. Can be empty.
@@ -2453,6 +2465,10 @@ declare namespace MittwaldAPIV2 {
2453
2465
  * The number of times this group occurred.
2454
2466
  */
2455
2467
  occurrences: number;
2468
+ /**
2469
+ * Syscall count.
2470
+ */
2471
+ syscallCount: number;
2456
2472
  /**
2457
2473
  * Elapsed user space time in milliseconds.
2458
2474
  */
@@ -2856,6 +2872,7 @@ declare namespace MittwaldAPIV2 {
2856
2872
  * Whether this ingress is the default ingress or not. A default ingress is automatically created, it cannot be deleted. There can be only one default ingress per project.
2857
2873
  */
2858
2874
  isDefault: boolean;
2875
+ isDomain?: boolean;
2859
2876
  isEnabled: boolean;
2860
2877
  ownership: MittwaldAPIV2.Components.Schemas.IngressOwnership;
2861
2878
  /**
@@ -2866,7 +2883,7 @@ declare namespace MittwaldAPIV2 {
2866
2883
  tls: MittwaldAPIV2.Components.Schemas.IngressTlsAcme | MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
2867
2884
  }
2868
2885
  interface IngressOwnership {
2869
- txtRecord: string;
2886
+ txtRecord?: string;
2870
2887
  /**
2871
2888
  * Whether the domain ownership is verified or not.
2872
2889
  */
@@ -21714,6 +21731,7 @@ declare class MittwaldAPIV2Client extends ApiClientBase {
21714
21731
  v4: string[];
21715
21732
  };
21716
21733
  isDefault: boolean;
21734
+ isDomain?: boolean | undefined;
21717
21735
  isEnabled: boolean;
21718
21736
  ownership: MittwaldAPIV2.Components.Schemas.IngressOwnership;
21719
21737
  paths: MittwaldAPIV2.Components.Schemas.IngressPath[];
@@ -2416,7 +2416,19 @@ declare namespace MittwaldAPIV2 {
2416
2416
  fileOpsStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
2417
2417
  miscStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
2418
2418
  networkingOps: {
2419
- connectionType: "UNKNOWN" | "PRIVATE" | "INTERNAL" | "EXTERNAL";
2419
+ connectionType: "UNKNOWN" | "PRIVATE" | "EXTERNAL";
2420
+ /**
2421
+ * A short description of the network connection to provide additional context.
2422
+ */
2423
+ description: string;
2424
+ /**
2425
+ * IP address to which a connection was established.
2426
+ */
2427
+ ip: string;
2428
+ /**
2429
+ * Port to which a connection was established.
2430
+ */
2431
+ port: number;
2420
2432
  stats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
2421
2433
  /**
2422
2434
  * Hostname and port to which a connection was established. Can be empty.
@@ -2453,6 +2465,10 @@ declare namespace MittwaldAPIV2 {
2453
2465
  * The number of times this group occurred.
2454
2466
  */
2455
2467
  occurrences: number;
2468
+ /**
2469
+ * Syscall count.
2470
+ */
2471
+ syscallCount: number;
2456
2472
  /**
2457
2473
  * Elapsed user space time in milliseconds.
2458
2474
  */
@@ -2856,6 +2872,7 @@ declare namespace MittwaldAPIV2 {
2856
2872
  * Whether this ingress is the default ingress or not. A default ingress is automatically created, it cannot be deleted. There can be only one default ingress per project.
2857
2873
  */
2858
2874
  isDefault: boolean;
2875
+ isDomain?: boolean;
2859
2876
  isEnabled: boolean;
2860
2877
  ownership: MittwaldAPIV2.Components.Schemas.IngressOwnership;
2861
2878
  /**
@@ -2866,7 +2883,7 @@ declare namespace MittwaldAPIV2 {
2866
2883
  tls: MittwaldAPIV2.Components.Schemas.IngressTlsAcme | MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
2867
2884
  }
2868
2885
  interface IngressOwnership {
2869
- txtRecord: string;
2886
+ txtRecord?: string;
2870
2887
  /**
2871
2888
  * Whether the domain ownership is verified or not.
2872
2889
  */
@@ -21714,6 +21731,7 @@ declare class MittwaldAPIV2Client extends ApiClientBase {
21714
21731
  v4: string[];
21715
21732
  };
21716
21733
  isDefault: boolean;
21734
+ isDomain?: boolean | undefined;
21717
21735
  isEnabled: boolean;
21718
21736
  ownership: MittwaldAPIV2.Components.Schemas.IngressOwnership;
21719
21737
  paths: MittwaldAPIV2.Components.Schemas.IngressPath[];
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.1.43';
1
+ export declare const MittwaldAPIClientVersion = '3.1.45';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.1.43';
1
+ export const MittwaldAPIClientVersion = '3.1.45';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "3.1.43",
3
+ "version": "3.1.45",
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",