@tari-project/ootle-ts-bindings 1.29.1 → 1.29.3
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/types/tari-indexer-client/IndexerGetIdentityResponse.d.ts +1 -1
- package/dist/types/tari-indexer-client/IndexerSubmitTransactionResponse.d.ts +1 -7
- package/dist/types/wallet-types/AdvancedUiFeatures.d.ts +3 -0
- package/dist/types/wallet-types/AdvancedUiFeatures.js +2 -0
- package/dist/types/wallet-types/SettingsGetResponse.d.ts +2 -0
- package/dist/types/wallet-types/SettingsSetRequest.d.ts +2 -0
- package/dist/types/wallet-types/SettingsSetRequest.js +0 -1
- package/dist/types/wallet-types/TemplatesListAuthoredRequest.d.ts +2 -1
- package/dist/types/wallet-types/TemplatesListAuthoredRequest.js +0 -1
- package/dist/wallet-types.d.ts +1 -0
- package/dist/wallet-types.js +1 -0
- package/package.json +1 -1
|
@@ -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
|
|
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
|
};
|
package/dist/wallet-types.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export * from "./types/wallet-types/AccountOrKeyId";
|
|
|
44
44
|
export * from "./types/wallet-types/DerivedKeyId";
|
|
45
45
|
export * from "./types/wallet-types/SettingsSetResponse";
|
|
46
46
|
export * from "./types/wallet-types/WebauthnFinishAuthRequest";
|
|
47
|
+
export * from "./types/wallet-types/AdvancedUiFeatures";
|
|
47
48
|
export * from "./types/wallet-types/KeysListRequest";
|
|
48
49
|
export * from "./types/wallet-types/AccountsTransferResponse";
|
|
49
50
|
export * from "./types/wallet-types/TransactionGetResultResponse";
|
package/dist/wallet-types.js
CHANGED
|
@@ -46,6 +46,7 @@ export * from "./types/wallet-types/AccountOrKeyId";
|
|
|
46
46
|
export * from "./types/wallet-types/DerivedKeyId";
|
|
47
47
|
export * from "./types/wallet-types/SettingsSetResponse";
|
|
48
48
|
export * from "./types/wallet-types/WebauthnFinishAuthRequest";
|
|
49
|
+
export * from "./types/wallet-types/AdvancedUiFeatures";
|
|
49
50
|
export * from "./types/wallet-types/KeysListRequest";
|
|
50
51
|
export * from "./types/wallet-types/AccountsTransferResponse";
|
|
51
52
|
export * from "./types/wallet-types/TransactionGetResultResponse";
|