@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.
- package/dist/index.d.ts +7 -4
- 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?:
|
|
8428
|
-
endCursor?:
|
|
8430
|
+
startCursor?: string;
|
|
8431
|
+
endCursor?: string;
|
|
8429
8432
|
}): Promise<{
|
|
8430
8433
|
data: import("postgres").Row[];
|
|
8431
|
-
|
|
8432
|
-
|
|
8434
|
+
endCursor: string;
|
|
8435
|
+
startCursor: string;
|
|
8433
8436
|
}>;
|
|
8434
8437
|
}
|
|
8435
8438
|
declare class Contract extends BaseDBModule {
|