@stacks/blockchain-api-client 8.0.0-beta.5 → 8.0.0-beta.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacks/blockchain-api-client",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.6",
|
|
4
4
|
"access": "public",
|
|
5
5
|
"description": "Client for the Stacks Blockchain API",
|
|
6
6
|
"homepage": "https://github.com/hirosystems/stacks-blockchain-api/tree/master/client#readme",
|
|
@@ -27116,6 +27116,8 @@ export interface operations {
|
|
|
27116
27116
|
limit?: number;
|
|
27117
27117
|
/** @description Result offset */
|
|
27118
27118
|
offset?: number;
|
|
27119
|
+
/** @description Cursor for pagination */
|
|
27120
|
+
cursor?: string;
|
|
27119
27121
|
};
|
|
27120
27122
|
header?: never;
|
|
27121
27123
|
path?: never;
|
|
@@ -27136,6 +27138,9 @@ export interface operations {
|
|
|
27136
27138
|
offset: number;
|
|
27137
27139
|
/** @example 1 */
|
|
27138
27140
|
total: number;
|
|
27141
|
+
next_cursor: string | null;
|
|
27142
|
+
prev_cursor: string | null;
|
|
27143
|
+
cursor: string | null;
|
|
27139
27144
|
results: {
|
|
27140
27145
|
/** @description Set to `true` if block corresponds to the canonical chain tip */
|
|
27141
27146
|
canonical: boolean;
|