@mittwald/api-client 3.1.44 → 3.1.46
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/react.d.mts +1 -1
- package/dist/react.d.ts +1 -1
- package/dist/shared/{api-client.0cd0b8e9.d.mts → api-client.c61312b7.d.mts} +16 -8
- package/dist/shared/{api-client.0cd0b8e9.d.ts → api-client.c61312b7.d.ts} +16 -8
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
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.
|
|
3
|
-
export { a as MittwaldAPIV2 } from './shared/api-client.
|
|
2
|
+
import { M as MittwaldAPIV2Client } from './shared/api-client.c61312b7.mjs';
|
|
3
|
+
export { a as MittwaldAPIV2 } from './shared/api-client.c61312b7.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.
|
|
3
|
-
export { a as MittwaldAPIV2 } from './shared/api-client.
|
|
2
|
+
import { M as MittwaldAPIV2Client } from './shared/api-client.c61312b7.js';
|
|
3
|
+
export { a as MittwaldAPIV2 } from './shared/api-client.c61312b7.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.
|
|
2
|
+
import { M as MittwaldAPIV2Client, a as MittwaldAPIV2 } from './shared/api-client.c61312b7.mjs';
|
|
3
3
|
import '@mittwald/api-client-commons';
|
|
4
4
|
import 'axios';
|
|
5
5
|
|
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.
|
|
2
|
+
import { M as MittwaldAPIV2Client, a as MittwaldAPIV2 } from './shared/api-client.c61312b7.js';
|
|
3
3
|
import '@mittwald/api-client-commons';
|
|
4
4
|
import 'axios';
|
|
5
5
|
|
|
@@ -2416,12 +2416,20 @@ declare namespace MittwaldAPIV2 {
|
|
|
2416
2416
|
fileOpsStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2417
2417
|
miscStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2418
2418
|
networkingOps: {
|
|
2419
|
-
connectionType: "UNKNOWN" | "PRIVATE" | "
|
|
2420
|
-
stats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2419
|
+
connectionType: "UNKNOWN" | "PRIVATE" | "EXTERNAL";
|
|
2421
2420
|
/**
|
|
2422
|
-
*
|
|
2421
|
+
* A short description of the network connection to provide additional context.
|
|
2423
2422
|
*/
|
|
2424
|
-
|
|
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;
|
|
2432
|
+
stats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2425
2433
|
/**
|
|
2426
2434
|
* Alerts when the time, syscall count or occurrence count of this group are abnormal.
|
|
2427
2435
|
*/
|
|
@@ -2441,10 +2449,6 @@ declare namespace MittwaldAPIV2 {
|
|
|
2441
2449
|
errorMessage: string;
|
|
2442
2450
|
}
|
|
2443
2451
|
interface StraceStatistics {
|
|
2444
|
-
/**
|
|
2445
|
-
* Syscall count.
|
|
2446
|
-
*/
|
|
2447
|
-
count: number;
|
|
2448
2452
|
/**
|
|
2449
2453
|
* Elapsed kernel space time in milliseconds.
|
|
2450
2454
|
*/
|
|
@@ -2453,6 +2457,10 @@ declare namespace MittwaldAPIV2 {
|
|
|
2453
2457
|
* The number of times this group occurred.
|
|
2454
2458
|
*/
|
|
2455
2459
|
occurrences: number;
|
|
2460
|
+
/**
|
|
2461
|
+
* Syscall count.
|
|
2462
|
+
*/
|
|
2463
|
+
syscallCount: number;
|
|
2456
2464
|
/**
|
|
2457
2465
|
* Elapsed user space time in milliseconds.
|
|
2458
2466
|
*/
|
|
@@ -2416,12 +2416,20 @@ declare namespace MittwaldAPIV2 {
|
|
|
2416
2416
|
fileOpsStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2417
2417
|
miscStats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2418
2418
|
networkingOps: {
|
|
2419
|
-
connectionType: "UNKNOWN" | "PRIVATE" | "
|
|
2420
|
-
stats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2419
|
+
connectionType: "UNKNOWN" | "PRIVATE" | "EXTERNAL";
|
|
2421
2420
|
/**
|
|
2422
|
-
*
|
|
2421
|
+
* A short description of the network connection to provide additional context.
|
|
2423
2422
|
*/
|
|
2424
|
-
|
|
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;
|
|
2432
|
+
stats: MittwaldAPIV2.Components.Schemas.StraceStatistics;
|
|
2425
2433
|
/**
|
|
2426
2434
|
* Alerts when the time, syscall count or occurrence count of this group are abnormal.
|
|
2427
2435
|
*/
|
|
@@ -2441,10 +2449,6 @@ declare namespace MittwaldAPIV2 {
|
|
|
2441
2449
|
errorMessage: string;
|
|
2442
2450
|
}
|
|
2443
2451
|
interface StraceStatistics {
|
|
2444
|
-
/**
|
|
2445
|
-
* Syscall count.
|
|
2446
|
-
*/
|
|
2447
|
-
count: number;
|
|
2448
2452
|
/**
|
|
2449
2453
|
* Elapsed kernel space time in milliseconds.
|
|
2450
2454
|
*/
|
|
@@ -2453,6 +2457,10 @@ declare namespace MittwaldAPIV2 {
|
|
|
2453
2457
|
* The number of times this group occurred.
|
|
2454
2458
|
*/
|
|
2455
2459
|
occurrences: number;
|
|
2460
|
+
/**
|
|
2461
|
+
* Syscall count.
|
|
2462
|
+
*/
|
|
2463
|
+
syscallCount: number;
|
|
2456
2464
|
/**
|
|
2457
2465
|
* Elapsed user space time in milliseconds.
|
|
2458
2466
|
*/
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '3.1.46';
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export const MittwaldAPIClientVersion = '3.1.46';
|