@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/dubhe.d.ts +9 -7
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -3
- package/dist/index.mjs.map +1 -1
- package/dist/libs/suiIndexerClient/index.d.ts +8 -8
- package/package.json +1 -1
- package/src/dubhe.ts +17 -7
- package/src/libs/suiIndexerClient/index.ts +10 -10
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:
|
|
1130
|
-
$key2:
|
|
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({
|
|
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,
|