@uniswap/client-data-api 0.0.60 → 0.0.61
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.
|
@@ -678,6 +678,18 @@ export declare class GetAuctionActivityRequest extends Message<GetAuctionActivit
|
|
|
678
678
|
* @generated from field: string address = 2;
|
|
679
679
|
*/
|
|
680
680
|
address: string;
|
|
681
|
+
/**
|
|
682
|
+
* Optional. Default 10, max 100.
|
|
683
|
+
*
|
|
684
|
+
* @generated from field: int32 page_size = 3;
|
|
685
|
+
*/
|
|
686
|
+
pageSize: number;
|
|
687
|
+
/**
|
|
688
|
+
* Optional. Cursor from previous response.
|
|
689
|
+
*
|
|
690
|
+
* @generated from field: string page_token = 4;
|
|
691
|
+
*/
|
|
692
|
+
pageToken: string;
|
|
681
693
|
constructor(data?: PartialMessage<GetAuctionActivityRequest>);
|
|
682
694
|
static readonly runtime: typeof proto3;
|
|
683
695
|
static readonly typeName = "data.v1.GetAuctionActivityRequest";
|
|
@@ -734,6 +746,12 @@ export declare class GetAuctionActivityResponse extends Message<GetAuctionActivi
|
|
|
734
746
|
* @generated from field: repeated data.v1.AuctionActivityEntry activity = 1;
|
|
735
747
|
*/
|
|
736
748
|
activity: AuctionActivityEntry[];
|
|
749
|
+
/**
|
|
750
|
+
* Empty if no more pages.
|
|
751
|
+
*
|
|
752
|
+
* @generated from field: string next_page_token = 2;
|
|
753
|
+
*/
|
|
754
|
+
nextPageToken: string;
|
|
737
755
|
constructor(data?: PartialMessage<GetAuctionActivityResponse>);
|
|
738
756
|
static readonly runtime: typeof proto3;
|
|
739
757
|
static readonly typeName = "data.v1.GetAuctionActivityResponse";
|
|
@@ -846,6 +846,18 @@ export class GetAuctionActivityRequest extends Message {
|
|
|
846
846
|
* @generated from field: string address = 2;
|
|
847
847
|
*/
|
|
848
848
|
this.address = "";
|
|
849
|
+
/**
|
|
850
|
+
* Optional. Default 10, max 100.
|
|
851
|
+
*
|
|
852
|
+
* @generated from field: int32 page_size = 3;
|
|
853
|
+
*/
|
|
854
|
+
this.pageSize = 0;
|
|
855
|
+
/**
|
|
856
|
+
* Optional. Cursor from previous response.
|
|
857
|
+
*
|
|
858
|
+
* @generated from field: string page_token = 4;
|
|
859
|
+
*/
|
|
860
|
+
this.pageToken = "";
|
|
849
861
|
proto3.util.initPartial(data, this);
|
|
850
862
|
}
|
|
851
863
|
static fromBinary(bytes, options) {
|
|
@@ -866,6 +878,8 @@ GetAuctionActivityRequest.typeName = "data.v1.GetAuctionActivityRequest";
|
|
|
866
878
|
GetAuctionActivityRequest.fields = proto3.util.newFieldList(() => [
|
|
867
879
|
{ no: 1, name: "chain_id", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
868
880
|
{ no: 2, name: "address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
881
|
+
{ no: 3, name: "page_size", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
882
|
+
{ no: 4, name: "page_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
869
883
|
]);
|
|
870
884
|
/**
|
|
871
885
|
* @generated from message data.v1.AuctionActivityEntry
|
|
@@ -934,6 +948,12 @@ export class GetAuctionActivityResponse extends Message {
|
|
|
934
948
|
* @generated from field: repeated data.v1.AuctionActivityEntry activity = 1;
|
|
935
949
|
*/
|
|
936
950
|
this.activity = [];
|
|
951
|
+
/**
|
|
952
|
+
* Empty if no more pages.
|
|
953
|
+
*
|
|
954
|
+
* @generated from field: string next_page_token = 2;
|
|
955
|
+
*/
|
|
956
|
+
this.nextPageToken = "";
|
|
937
957
|
proto3.util.initPartial(data, this);
|
|
938
958
|
}
|
|
939
959
|
static fromBinary(bytes, options) {
|
|
@@ -953,6 +973,7 @@ GetAuctionActivityResponse.runtime = proto3;
|
|
|
953
973
|
GetAuctionActivityResponse.typeName = "data.v1.GetAuctionActivityResponse";
|
|
954
974
|
GetAuctionActivityResponse.fields = proto3.util.newFieldList(() => [
|
|
955
975
|
{ no: 1, name: "activity", kind: "message", T: AuctionActivityEntry, repeated: true },
|
|
976
|
+
{ no: 2, name: "next_page_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
956
977
|
]);
|
|
957
978
|
/**
|
|
958
979
|
* Request to fetch checkpoints for an auction
|