@tari-project/ootle-ts-bindings 1.30.0 → 1.30.1

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.
@@ -43,3 +43,4 @@ export * from "./types/tari-indexer-client/IndexerSubmitTransactionResponse";
43
43
  export * from "./types/tari-indexer-client/ListTransactionReceiptsRequest";
44
44
  export * from "./types/tari-indexer-client/IndexerConnectionDirection";
45
45
  export * from "./types/tari-indexer-client/ListSubstateItem";
46
+ export * from "./types/tari-indexer-client/StreamTransactionEventsRequest";
@@ -45,3 +45,4 @@ export * from "./types/tari-indexer-client/IndexerSubmitTransactionResponse";
45
45
  export * from "./types/tari-indexer-client/ListTransactionReceiptsRequest";
46
46
  export * from "./types/tari-indexer-client/IndexerConnectionDirection";
47
47
  export * from "./types/tari-indexer-client/ListSubstateItem";
48
+ export * from "./types/tari-indexer-client/StreamTransactionEventsRequest";
@@ -6,4 +6,6 @@ export type Type = "Unit" | "Bool" | "I8" | "I16" | "I32" | "I64" | "I128" | "U8
6
6
  Other: {
7
7
  name: string;
8
8
  };
9
+ } | {
10
+ Option: Type;
9
11
  };
@@ -1,13 +1,7 @@
1
- import type { ExecuteResult } from "../ExecuteResult";
2
1
  import type { TransactionId } from "../TransactionId";
3
2
  export type IndexerSubmitTransactionResponse = {
4
3
  /**
5
- * The ID of the transaction that was dry-run
4
+ * The ID of the submitted transaction
6
5
  */
7
6
  transaction_id: TransactionId;
8
- /**
9
- * The result of the dry-run execution, including any emitted events and state changes, but without a final
10
- * decision or commitment to the ledger
11
- */
12
- result: ExecuteResult;
13
7
  };
@@ -0,0 +1,10 @@
1
+ import type { Hash32 } from "../Hash32";
2
+ import type { SubstateId } from "../SubstateId";
3
+ /**
4
+ * Filter parameters for the transaction events SSE stream.
5
+ */
6
+ export type StreamTransactionEventsRequest = {
7
+ topic: string | null;
8
+ substate_id: SubstateId | null;
9
+ template_address: Hash32 | null;
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tari-project/ootle-ts-bindings",
3
- "version": "1.30.0",
3
+ "version": "1.30.1",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"