@uniswap/client-data-api 0.0.225 → 0.0.227
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/data/v2/types_pb.d.ts +12 -0
- package/dist/data/v2/types_pb.js +1 -0
- package/dist/launches/v1/api-LaunchService_connectquery.d.ts +132 -0
- package/dist/launches/v1/api-LaunchService_connectquery.js +136 -0
- package/dist/launches/v1/api_connect.d.ts +107 -0
- package/dist/launches/v1/api_connect.js +111 -0
- package/dist/launches/v1/api_pb.d.ts +1375 -0
- package/dist/launches/v1/api_pb.js +1464 -0
- package/dist/launches/v1/common_pb.d.ts +47 -0
- package/dist/launches/v1/common_pb.js +65 -0
- package/dist/launches/v1/token_factory-TokenFactoryService_connectquery.d.ts +54 -0
- package/dist/launches/v1/token_factory-TokenFactoryService_connectquery.js +58 -0
- package/dist/launches/v1/token_factory_connect.d.ts +52 -0
- package/dist/launches/v1/token_factory_connect.js +56 -0
- package/dist/launches/v1/token_factory_pb.d.ts +205 -0
- package/dist/launches/v1/token_factory_pb.js +319 -0
- package/dist/launches/v1/types_pb.d.ts +694 -0
- package/dist/launches/v1/types_pb.js +617 -0
- package/dist/launches/v1/worker_service-WorkerService_connectquery.d.ts +28 -0
- package/dist/launches/v1/worker_service-WorkerService_connectquery.js +32 -0
- package/dist/launches/v1/worker_service_connect.d.ts +34 -0
- package/dist/launches/v1/worker_service_connect.js +38 -0
- package/dist/launches/v1/worker_service_pb.d.ts +54 -0
- package/dist/launches/v1/worker_service_pb.js +101 -0
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse, RunQuickLaunchSweepRequest, RunQuickLaunchSweepResponse } from "./worker_service_pb.js";
|
|
2
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* launches.v1.WorkerService re-declares the launch-scoped worker RPCs served
|
|
5
|
+
* today by data.v1.WorkerService (LP endpoint migration, phase 1). Cron/S2S
|
|
6
|
+
* invoked — not meant for a public gateway route. Messages are copied from
|
|
7
|
+
* data/v1/workerService.proto (all empty today); keep in sync until the
|
|
8
|
+
* data.v1 declarations are deleted.
|
|
9
|
+
*
|
|
10
|
+
* @generated from service launches.v1.WorkerService
|
|
11
|
+
*/
|
|
12
|
+
export declare const WorkerService: {
|
|
13
|
+
readonly typeName: "launches.v1.WorkerService";
|
|
14
|
+
readonly methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc launches.v1.WorkerService.RunLaunchpadOrphanCleanup
|
|
17
|
+
*/
|
|
18
|
+
readonly runLaunchpadOrphanCleanup: {
|
|
19
|
+
readonly name: "RunLaunchpadOrphanCleanup";
|
|
20
|
+
readonly I: typeof RunLaunchpadOrphanCleanupRequest;
|
|
21
|
+
readonly O: typeof RunLaunchpadOrphanCleanupResponse;
|
|
22
|
+
readonly kind: MethodKind.Unary;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc launches.v1.WorkerService.RunQuickLaunchSweep
|
|
26
|
+
*/
|
|
27
|
+
readonly runQuickLaunchSweep: {
|
|
28
|
+
readonly name: "RunQuickLaunchSweep";
|
|
29
|
+
readonly I: typeof RunQuickLaunchSweepRequest;
|
|
30
|
+
readonly O: typeof RunQuickLaunchSweepResponse;
|
|
31
|
+
readonly kind: MethodKind.Unary;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.7.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file launches/v1/worker_service.proto (package launches.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse, RunQuickLaunchSweepRequest, RunQuickLaunchSweepResponse } from "./worker_service_pb.js";
|
|
6
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
7
|
+
/**
|
|
8
|
+
* launches.v1.WorkerService re-declares the launch-scoped worker RPCs served
|
|
9
|
+
* today by data.v1.WorkerService (LP endpoint migration, phase 1). Cron/S2S
|
|
10
|
+
* invoked — not meant for a public gateway route. Messages are copied from
|
|
11
|
+
* data/v1/workerService.proto (all empty today); keep in sync until the
|
|
12
|
+
* data.v1 declarations are deleted.
|
|
13
|
+
*
|
|
14
|
+
* @generated from service launches.v1.WorkerService
|
|
15
|
+
*/
|
|
16
|
+
export const WorkerService = {
|
|
17
|
+
typeName: "launches.v1.WorkerService",
|
|
18
|
+
methods: {
|
|
19
|
+
/**
|
|
20
|
+
* @generated from rpc launches.v1.WorkerService.RunLaunchpadOrphanCleanup
|
|
21
|
+
*/
|
|
22
|
+
runLaunchpadOrphanCleanup: {
|
|
23
|
+
name: "RunLaunchpadOrphanCleanup",
|
|
24
|
+
I: RunLaunchpadOrphanCleanupRequest,
|
|
25
|
+
O: RunLaunchpadOrphanCleanupResponse,
|
|
26
|
+
kind: MethodKind.Unary,
|
|
27
|
+
},
|
|
28
|
+
/**
|
|
29
|
+
* @generated from rpc launches.v1.WorkerService.RunQuickLaunchSweep
|
|
30
|
+
*/
|
|
31
|
+
runQuickLaunchSweep: {
|
|
32
|
+
name: "RunQuickLaunchSweep",
|
|
33
|
+
I: RunQuickLaunchSweepRequest,
|
|
34
|
+
O: RunQuickLaunchSweepResponse,
|
|
35
|
+
kind: MethodKind.Unary,
|
|
36
|
+
},
|
|
37
|
+
}
|
|
38
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from message launches.v1.RunLaunchpadOrphanCleanupRequest
|
|
5
|
+
*/
|
|
6
|
+
export declare class RunLaunchpadOrphanCleanupRequest extends Message<RunLaunchpadOrphanCleanupRequest> {
|
|
7
|
+
constructor(data?: PartialMessage<RunLaunchpadOrphanCleanupRequest>);
|
|
8
|
+
static readonly runtime: typeof proto3;
|
|
9
|
+
static readonly typeName = "launches.v1.RunLaunchpadOrphanCleanupRequest";
|
|
10
|
+
static readonly fields: FieldList;
|
|
11
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunLaunchpadOrphanCleanupRequest;
|
|
12
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunLaunchpadOrphanCleanupRequest;
|
|
13
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunLaunchpadOrphanCleanupRequest;
|
|
14
|
+
static equals(a: RunLaunchpadOrphanCleanupRequest | PlainMessage<RunLaunchpadOrphanCleanupRequest> | undefined, b: RunLaunchpadOrphanCleanupRequest | PlainMessage<RunLaunchpadOrphanCleanupRequest> | undefined): boolean;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @generated from message launches.v1.RunLaunchpadOrphanCleanupResponse
|
|
18
|
+
*/
|
|
19
|
+
export declare class RunLaunchpadOrphanCleanupResponse extends Message<RunLaunchpadOrphanCleanupResponse> {
|
|
20
|
+
constructor(data?: PartialMessage<RunLaunchpadOrphanCleanupResponse>);
|
|
21
|
+
static readonly runtime: typeof proto3;
|
|
22
|
+
static readonly typeName = "launches.v1.RunLaunchpadOrphanCleanupResponse";
|
|
23
|
+
static readonly fields: FieldList;
|
|
24
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunLaunchpadOrphanCleanupResponse;
|
|
25
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunLaunchpadOrphanCleanupResponse;
|
|
26
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunLaunchpadOrphanCleanupResponse;
|
|
27
|
+
static equals(a: RunLaunchpadOrphanCleanupResponse | PlainMessage<RunLaunchpadOrphanCleanupResponse> | undefined, b: RunLaunchpadOrphanCleanupResponse | PlainMessage<RunLaunchpadOrphanCleanupResponse> | undefined): boolean;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @generated from message launches.v1.RunQuickLaunchSweepRequest
|
|
31
|
+
*/
|
|
32
|
+
export declare class RunQuickLaunchSweepRequest extends Message<RunQuickLaunchSweepRequest> {
|
|
33
|
+
constructor(data?: PartialMessage<RunQuickLaunchSweepRequest>);
|
|
34
|
+
static readonly runtime: typeof proto3;
|
|
35
|
+
static readonly typeName = "launches.v1.RunQuickLaunchSweepRequest";
|
|
36
|
+
static readonly fields: FieldList;
|
|
37
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunQuickLaunchSweepRequest;
|
|
38
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepRequest;
|
|
39
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepRequest;
|
|
40
|
+
static equals(a: RunQuickLaunchSweepRequest | PlainMessage<RunQuickLaunchSweepRequest> | undefined, b: RunQuickLaunchSweepRequest | PlainMessage<RunQuickLaunchSweepRequest> | undefined): boolean;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @generated from message launches.v1.RunQuickLaunchSweepResponse
|
|
44
|
+
*/
|
|
45
|
+
export declare class RunQuickLaunchSweepResponse extends Message<RunQuickLaunchSweepResponse> {
|
|
46
|
+
constructor(data?: PartialMessage<RunQuickLaunchSweepResponse>);
|
|
47
|
+
static readonly runtime: typeof proto3;
|
|
48
|
+
static readonly typeName = "launches.v1.RunQuickLaunchSweepResponse";
|
|
49
|
+
static readonly fields: FieldList;
|
|
50
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunQuickLaunchSweepResponse;
|
|
51
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepResponse;
|
|
52
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepResponse;
|
|
53
|
+
static equals(a: RunQuickLaunchSweepResponse | PlainMessage<RunQuickLaunchSweepResponse> | undefined, b: RunQuickLaunchSweepResponse | PlainMessage<RunQuickLaunchSweepResponse> | undefined): boolean;
|
|
54
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
|
|
2
|
+
// @generated from file launches/v1/worker_service.proto (package launches.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
6
|
+
/**
|
|
7
|
+
* @generated from message launches.v1.RunLaunchpadOrphanCleanupRequest
|
|
8
|
+
*/
|
|
9
|
+
export class RunLaunchpadOrphanCleanupRequest extends Message {
|
|
10
|
+
constructor(data) {
|
|
11
|
+
super();
|
|
12
|
+
proto3.util.initPartial(data, this);
|
|
13
|
+
}
|
|
14
|
+
static fromBinary(bytes, options) {
|
|
15
|
+
return new RunLaunchpadOrphanCleanupRequest().fromBinary(bytes, options);
|
|
16
|
+
}
|
|
17
|
+
static fromJson(jsonValue, options) {
|
|
18
|
+
return new RunLaunchpadOrphanCleanupRequest().fromJson(jsonValue, options);
|
|
19
|
+
}
|
|
20
|
+
static fromJsonString(jsonString, options) {
|
|
21
|
+
return new RunLaunchpadOrphanCleanupRequest().fromJsonString(jsonString, options);
|
|
22
|
+
}
|
|
23
|
+
static equals(a, b) {
|
|
24
|
+
return proto3.util.equals(RunLaunchpadOrphanCleanupRequest, a, b);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
RunLaunchpadOrphanCleanupRequest.runtime = proto3;
|
|
28
|
+
RunLaunchpadOrphanCleanupRequest.typeName = "launches.v1.RunLaunchpadOrphanCleanupRequest";
|
|
29
|
+
RunLaunchpadOrphanCleanupRequest.fields = proto3.util.newFieldList(() => []);
|
|
30
|
+
/**
|
|
31
|
+
* @generated from message launches.v1.RunLaunchpadOrphanCleanupResponse
|
|
32
|
+
*/
|
|
33
|
+
export class RunLaunchpadOrphanCleanupResponse extends Message {
|
|
34
|
+
constructor(data) {
|
|
35
|
+
super();
|
|
36
|
+
proto3.util.initPartial(data, this);
|
|
37
|
+
}
|
|
38
|
+
static fromBinary(bytes, options) {
|
|
39
|
+
return new RunLaunchpadOrphanCleanupResponse().fromBinary(bytes, options);
|
|
40
|
+
}
|
|
41
|
+
static fromJson(jsonValue, options) {
|
|
42
|
+
return new RunLaunchpadOrphanCleanupResponse().fromJson(jsonValue, options);
|
|
43
|
+
}
|
|
44
|
+
static fromJsonString(jsonString, options) {
|
|
45
|
+
return new RunLaunchpadOrphanCleanupResponse().fromJsonString(jsonString, options);
|
|
46
|
+
}
|
|
47
|
+
static equals(a, b) {
|
|
48
|
+
return proto3.util.equals(RunLaunchpadOrphanCleanupResponse, a, b);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
RunLaunchpadOrphanCleanupResponse.runtime = proto3;
|
|
52
|
+
RunLaunchpadOrphanCleanupResponse.typeName = "launches.v1.RunLaunchpadOrphanCleanupResponse";
|
|
53
|
+
RunLaunchpadOrphanCleanupResponse.fields = proto3.util.newFieldList(() => []);
|
|
54
|
+
/**
|
|
55
|
+
* @generated from message launches.v1.RunQuickLaunchSweepRequest
|
|
56
|
+
*/
|
|
57
|
+
export class RunQuickLaunchSweepRequest extends Message {
|
|
58
|
+
constructor(data) {
|
|
59
|
+
super();
|
|
60
|
+
proto3.util.initPartial(data, this);
|
|
61
|
+
}
|
|
62
|
+
static fromBinary(bytes, options) {
|
|
63
|
+
return new RunQuickLaunchSweepRequest().fromBinary(bytes, options);
|
|
64
|
+
}
|
|
65
|
+
static fromJson(jsonValue, options) {
|
|
66
|
+
return new RunQuickLaunchSweepRequest().fromJson(jsonValue, options);
|
|
67
|
+
}
|
|
68
|
+
static fromJsonString(jsonString, options) {
|
|
69
|
+
return new RunQuickLaunchSweepRequest().fromJsonString(jsonString, options);
|
|
70
|
+
}
|
|
71
|
+
static equals(a, b) {
|
|
72
|
+
return proto3.util.equals(RunQuickLaunchSweepRequest, a, b);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
RunQuickLaunchSweepRequest.runtime = proto3;
|
|
76
|
+
RunQuickLaunchSweepRequest.typeName = "launches.v1.RunQuickLaunchSweepRequest";
|
|
77
|
+
RunQuickLaunchSweepRequest.fields = proto3.util.newFieldList(() => []);
|
|
78
|
+
/**
|
|
79
|
+
* @generated from message launches.v1.RunQuickLaunchSweepResponse
|
|
80
|
+
*/
|
|
81
|
+
export class RunQuickLaunchSweepResponse extends Message {
|
|
82
|
+
constructor(data) {
|
|
83
|
+
super();
|
|
84
|
+
proto3.util.initPartial(data, this);
|
|
85
|
+
}
|
|
86
|
+
static fromBinary(bytes, options) {
|
|
87
|
+
return new RunQuickLaunchSweepResponse().fromBinary(bytes, options);
|
|
88
|
+
}
|
|
89
|
+
static fromJson(jsonValue, options) {
|
|
90
|
+
return new RunQuickLaunchSweepResponse().fromJson(jsonValue, options);
|
|
91
|
+
}
|
|
92
|
+
static fromJsonString(jsonString, options) {
|
|
93
|
+
return new RunQuickLaunchSweepResponse().fromJsonString(jsonString, options);
|
|
94
|
+
}
|
|
95
|
+
static equals(a, b) {
|
|
96
|
+
return proto3.util.equals(RunQuickLaunchSweepResponse, a, b);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
RunQuickLaunchSweepResponse.runtime = proto3;
|
|
100
|
+
RunQuickLaunchSweepResponse.typeName = "launches.v1.RunQuickLaunchSweepResponse";
|
|
101
|
+
RunQuickLaunchSweepResponse.fields = proto3.util.newFieldList(() => []);
|