@hiero-ledger/sdk 2.84.0-beta.1 → 2.84.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.
Files changed (35) hide show
  1. package/dist/umd.js +15 -8
  2. package/dist/umd.js.map +1 -1
  3. package/dist/umd.min.js +1 -1
  4. package/dist/umd.min.js.map +1 -1
  5. package/lib/EthereumTransaction.cjs +2 -1
  6. package/lib/EthereumTransaction.d.ts +4 -6
  7. package/lib/EthereumTransaction.js.map +1 -1
  8. package/lib/client/addressbooks/mainnet.cjs +1 -1
  9. package/lib/client/addressbooks/mainnet.d.ts +1 -1
  10. package/lib/client/addressbooks/mainnet.js +1 -1
  11. package/lib/client/addressbooks/mainnet.js.map +1 -1
  12. package/lib/file/FileContentsQuery.cjs +2 -1
  13. package/lib/file/FileContentsQuery.d.ts +8 -2
  14. package/lib/file/FileContentsQuery.js.map +1 -1
  15. package/lib/file/FileDeleteTransaction.cjs +2 -1
  16. package/lib/file/FileDeleteTransaction.d.ts +4 -6
  17. package/lib/file/FileDeleteTransaction.js.map +1 -1
  18. package/lib/file/FileId.cjs +3 -1
  19. package/lib/file/FileId.d.ts +6 -2
  20. package/lib/file/FileId.js.map +1 -1
  21. package/lib/file/FileInfoQuery.cjs +3 -2
  22. package/lib/file/FileInfoQuery.d.ts +15 -2
  23. package/lib/file/FileInfoQuery.js.map +1 -1
  24. package/lib/file/FileUpdateTransaction.cjs +2 -1
  25. package/lib/file/FileUpdateTransaction.d.ts +4 -6
  26. package/lib/file/FileUpdateTransaction.js.map +1 -1
  27. package/lib/version.js +1 -1
  28. package/package.json +2 -2
  29. package/src/EthereumTransaction.js +2 -1
  30. package/src/client/addressbooks/mainnet.js +1 -1
  31. package/src/file/FileContentsQuery.js +2 -1
  32. package/src/file/FileDeleteTransaction.js +2 -1
  33. package/src/file/FileId.js +3 -1
  34. package/src/file/FileInfoQuery.js +3 -2
  35. package/src/file/FileUpdateTransaction.js +2 -1
@@ -19,7 +19,8 @@ import Hbar from "../Hbar.js";
19
19
 
20
20
  /**
21
21
  * @typedef {import("../channel/Channel.js").default} Channel
22
- * @typedef {import("../client/Client.js").default<*, *>} Client
22
+ * @typedef {import("../channel/MirrorChannel.js").default} MirrorChannel
23
+ * @typedef {import("../client/Client.js").default<Channel, MirrorChannel>} Client
23
24
  * @typedef {import("../account/AccountId.js").default} AccountId
24
25
  */
25
26
 
@@ -88,7 +89,7 @@ export default class FileInfoQuery extends Query {
88
89
 
89
90
  /**
90
91
  * @override
91
- * @param {import("../client/Client.js").default<Channel, *>} client
92
+ * @param {import("../client/Client.js").default<Channel, MirrorChannel>} client
92
93
  * @returns {Promise<Hbar>}
93
94
  */
94
95
  async getCost(client) {
@@ -21,7 +21,8 @@ import KeyList from "../KeyList.js";
21
21
 
22
22
  /**
23
23
  * @typedef {import("../channel/Channel.js").default} Channel
24
- * @typedef {import("../client/Client.js").default<*, *>} Client
24
+ * @typedef {import("../channel/MirrorChannel.js").default} MirrorChannel
25
+ * @typedef {import("../client/Client.js").default<Channel, MirrorChannel>} Client
25
26
  * @typedef {import("../account/AccountId.js").default} AccountId
26
27
  * @typedef {import("../transaction/TransactionId.js").default} TransactionId
27
28
  */