@iotexproject/kit 0.0.95 → 0.0.96

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 (2) hide show
  1. package/dist/index.d.ts +7 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8421,15 +8421,18 @@ declare class Transaction extends BaseDBModule {
8421
8421
  startCursor: any;
8422
8422
  endCursor: any;
8423
8423
  }>;
8424
+ getAllTransactionsWithAssetsCountByAccount({ address }: {
8425
+ address: string;
8426
+ }): Promise<any>;
8424
8427
  getAllTransactionsWithAssetsByAccount({ address, pageSize, startCursor, endCursor }: {
8425
8428
  address: string;
8426
8429
  pageSize?: number;
8427
- startCursor?: number;
8428
- endCursor?: number;
8430
+ startCursor?: string;
8431
+ endCursor?: string;
8429
8432
  }): Promise<{
8430
8433
  data: import("postgres").Row[];
8431
- startCursor: any;
8432
- endCursor: any;
8434
+ endCursor: string;
8435
+ startCursor: string;
8433
8436
  }>;
8434
8437
  }
8435
8438
  declare class Contract extends BaseDBModule {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "v0.0.95",
5
+ "version": "v0.0.96",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {