@iotexproject/kit 0.0.85 → 0.0.86

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 +14 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8335,6 +8335,10 @@ declare class Analyzer extends BaseDBModule {
8335
8335
  start_date?: string;
8336
8336
  end_date?: string;
8337
8337
  }): Promise<postgres.RowList<postgres.Row[]>>;
8338
+ dailyAvgTps({ start_date, end_date }?: {
8339
+ start_date?: string;
8340
+ end_date?: string;
8341
+ }): Promise<postgres.RowList<postgres.Row[]>>;
8338
8342
  avgDailyTxVolume({ start_date, end_date }?: {
8339
8343
  start_date?: string;
8340
8344
  end_date?: string;
@@ -8376,6 +8380,16 @@ declare class Transaction extends BaseDBModule {
8376
8380
  startCursor: any;
8377
8381
  endCursor: any;
8378
8382
  }>;
8383
+ getAllTransactionsWithAssetsByAccount({ address, pageSize, startCursor, endCursor }: {
8384
+ address: string;
8385
+ pageSize?: number;
8386
+ startCursor?: number;
8387
+ endCursor?: number;
8388
+ }): Promise<{
8389
+ data: import("postgres").Row[];
8390
+ startCursor: any;
8391
+ endCursor: any;
8392
+ }>;
8379
8393
  }
8380
8394
  declare const modules$1: {
8381
8395
  account: Account;
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.85",
5
+ "version": "v0.0.86",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {