@iotexproject/kit 0.0.68 → 0.0.70
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 +8 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7324,13 +7324,15 @@ declare class Transaction extends BaseDBModule {
|
|
|
7324
7324
|
getTransactionsCountByAccount({ address }: {
|
|
7325
7325
|
address: string;
|
|
7326
7326
|
}): Promise<any>;
|
|
7327
|
-
getTransactionsByAccount({ address, pageSize,
|
|
7327
|
+
getTransactionsByAccount({ address, pageSize, startCursor, endCursor }: {
|
|
7328
7328
|
address: string;
|
|
7329
7329
|
pageSize?: number;
|
|
7330
|
-
|
|
7330
|
+
startCursor?: number;
|
|
7331
|
+
endCursor?: number;
|
|
7331
7332
|
}): Promise<{
|
|
7332
7333
|
data: import("postgres").RowList<import("postgres").Row[]>;
|
|
7333
|
-
|
|
7334
|
+
startCursor: any;
|
|
7335
|
+
endCursor: any;
|
|
7334
7336
|
}>;
|
|
7335
7337
|
}
|
|
7336
7338
|
declare class NFT extends BaseDBModule {
|
|
@@ -7339,6 +7341,9 @@ declare class NFT extends BaseDBModule {
|
|
|
7339
7341
|
pageSize?: number;
|
|
7340
7342
|
page?: number;
|
|
7341
7343
|
}): Promise<import("postgres").RowList<import("postgres").Row[]>>;
|
|
7344
|
+
getNFTsCountByAccount({ address }: {
|
|
7345
|
+
address: string;
|
|
7346
|
+
}): Promise<any>;
|
|
7342
7347
|
}
|
|
7343
7348
|
declare const modules$1: {
|
|
7344
7349
|
account: Account;
|