@tari-project/ootle-ts-bindings 1.52.0 → 1.53.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/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/types/DiagnosticEvent.d.ts +10 -0
- package/dist/types/DiagnosticEvent.js +1 -0
- package/dist/types/DiagnosticEventFilter.d.ts +7 -0
- package/dist/types/DiagnosticEventFilter.js +1 -0
- package/dist/types/DiagnosticEventRecord.d.ts +11 -0
- package/dist/types/DiagnosticEventRecord.js +1 -0
- package/dist/types/DiagnosticLevel.d.ts +1 -0
- package/dist/types/DiagnosticLevel.js +2 -0
- package/dist/types/validator-node-client/ClearDiagnosticEventsRequest.d.ts +7 -0
- package/dist/types/validator-node-client/ClearDiagnosticEventsRequest.js +1 -0
- package/dist/types/validator-node-client/ClearDiagnosticEventsResponse.d.ts +3 -0
- package/dist/types/validator-node-client/ClearDiagnosticEventsResponse.js +2 -0
- package/dist/types/validator-node-client/GetDiagnosticEventsRequest.d.ts +9 -0
- package/dist/types/validator-node-client/GetDiagnosticEventsRequest.js +1 -0
- package/dist/types/validator-node-client/GetDiagnosticEventsResponse.d.ts +6 -0
- package/dist/types/validator-node-client/GetDiagnosticEventsResponse.js +1 -0
- package/dist/validator-node-client.d.ts +4 -0
- package/dist/validator-node-client.js +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,10 @@ export * from "./types/ArgDef";
|
|
|
9
9
|
export * from "./types/Assertion";
|
|
10
10
|
export * from "./types/AtomicCondition";
|
|
11
11
|
export * from "./types/AuthHook";
|
|
12
|
+
export * from "./types/DiagnosticEvent";
|
|
13
|
+
export * from "./types/DiagnosticEventFilter";
|
|
14
|
+
export * from "./types/DiagnosticEventRecord";
|
|
15
|
+
export * from "./types/DiagnosticLevel";
|
|
12
16
|
export * from "./types/BlobHashes";
|
|
13
17
|
export * from "./types/Blobs";
|
|
14
18
|
export * from "./types/Blob";
|
package/dist/index.js
CHANGED
|
@@ -11,6 +11,10 @@ export * from "./types/ArgDef";
|
|
|
11
11
|
export * from "./types/Assertion";
|
|
12
12
|
export * from "./types/AtomicCondition";
|
|
13
13
|
export * from "./types/AuthHook";
|
|
14
|
+
export * from "./types/DiagnosticEvent";
|
|
15
|
+
export * from "./types/DiagnosticEventFilter";
|
|
16
|
+
export * from "./types/DiagnosticEventRecord";
|
|
17
|
+
export * from "./types/DiagnosticLevel";
|
|
14
18
|
export * from "./types/BlobHashes";
|
|
15
19
|
export * from "./types/Blobs";
|
|
16
20
|
export * from "./types/Blob";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type DiagnosticLevel = "info" | "warn" | "error";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { DiagnosticLevel } from "../DiagnosticLevel";
|
|
2
|
+
export type GetDiagnosticEventsRequest = {
|
|
3
|
+
min_level: DiagnosticLevel | null;
|
|
4
|
+
topic_prefix: string | null;
|
|
5
|
+
since: number | null;
|
|
6
|
+
until: number | null;
|
|
7
|
+
before_id: number | null;
|
|
8
|
+
limit: number | null;
|
|
9
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export * from "./types/validator-node-client/ClearDiagnosticEventsRequest";
|
|
2
|
+
export * from "./types/validator-node-client/ClearDiagnosticEventsResponse";
|
|
3
|
+
export * from "./types/validator-node-client/GetDiagnosticEventsRequest";
|
|
4
|
+
export * from "./types/validator-node-client/GetDiagnosticEventsResponse";
|
|
1
5
|
export * from "./types/validator-node-client/ValidatorNodeChange";
|
|
2
6
|
export * from "./types/validator-node-client/VNSubmitTransactionRequest";
|
|
3
7
|
export * from "./types/validator-node-client/GetFilteredBlocksCountRequest";
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
// Copyright 2026 The Tari Project
|
|
2
2
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
3
|
+
export * from "./types/validator-node-client/ClearDiagnosticEventsRequest";
|
|
4
|
+
export * from "./types/validator-node-client/ClearDiagnosticEventsResponse";
|
|
5
|
+
export * from "./types/validator-node-client/GetDiagnosticEventsRequest";
|
|
6
|
+
export * from "./types/validator-node-client/GetDiagnosticEventsResponse";
|
|
3
7
|
export * from "./types/validator-node-client/ValidatorNodeChange";
|
|
4
8
|
export * from "./types/validator-node-client/VNSubmitTransactionRequest";
|
|
5
9
|
export * from "./types/validator-node-client/GetFilteredBlocksCountRequest";
|