@0xobelisk/sui-client 1.1.3 → 1.1.5

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.mjs CHANGED
@@ -1126,8 +1126,8 @@ var SuiIndexerClient = class {
1126
1126
  $first: Int,
1127
1127
  $after: String,
1128
1128
  $name: String,
1129
- $key1: String,
1130
- $key2: String,
1129
+ $key1: JSON,
1130
+ $key2: JSON,
1131
1131
  $is_removed: Boolean,
1132
1132
  $last_update_checkpoint: String,
1133
1133
  $last_update_digest: String,
@@ -2265,9 +2265,17 @@ var Dubhe = class {
2265
2265
  async getEvents({
2266
2266
  first,
2267
2267
  after,
2268
+ name,
2269
+ checkpoint,
2268
2270
  orderBy
2269
2271
  }) {
2270
- return await this.suiIndexerClient.getEvents({ first, after, orderBy });
2272
+ return await this.suiIndexerClient.getEvents({
2273
+ first,
2274
+ after,
2275
+ name,
2276
+ checkpoint,
2277
+ orderBy
2278
+ });
2271
2279
  }
2272
2280
  async getSchemas({
2273
2281
  name,