@uniswap/client-platform-service 0.0.2 → 0.0.3
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.
|
@@ -63,6 +63,18 @@ export declare class IntrospectRequest extends Message<IntrospectRequest> {
|
|
|
63
63
|
* @generated from message uniswap.platformservice.v1.IntrospectResponse
|
|
64
64
|
*/
|
|
65
65
|
export declare class IntrospectResponse extends Message<IntrospectResponse> {
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: string wrapped_id = 1;
|
|
68
|
+
*/
|
|
69
|
+
wrappedId: string;
|
|
70
|
+
/**
|
|
71
|
+
* @generated from field: bool result = 2;
|
|
72
|
+
*/
|
|
73
|
+
result: boolean;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: string user_id = 3;
|
|
76
|
+
*/
|
|
77
|
+
userId: string;
|
|
66
78
|
constructor(data?: PartialMessage<IntrospectResponse>);
|
|
67
79
|
static readonly runtime: typeof proto3;
|
|
68
80
|
static readonly typeName = "uniswap.platformservice.v1.IntrospectResponse";
|
|
@@ -96,6 +96,18 @@ IntrospectRequest.fields = proto3.util.newFieldList(() => [
|
|
|
96
96
|
export class IntrospectResponse extends Message {
|
|
97
97
|
constructor(data) {
|
|
98
98
|
super();
|
|
99
|
+
/**
|
|
100
|
+
* @generated from field: string wrapped_id = 1;
|
|
101
|
+
*/
|
|
102
|
+
this.wrappedId = "";
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: bool result = 2;
|
|
105
|
+
*/
|
|
106
|
+
this.result = false;
|
|
107
|
+
/**
|
|
108
|
+
* @generated from field: string user_id = 3;
|
|
109
|
+
*/
|
|
110
|
+
this.userId = "";
|
|
99
111
|
proto3.util.initPartial(data, this);
|
|
100
112
|
}
|
|
101
113
|
static fromBinary(bytes, options) {
|
|
@@ -113,7 +125,11 @@ export class IntrospectResponse extends Message {
|
|
|
113
125
|
}
|
|
114
126
|
IntrospectResponse.runtime = proto3;
|
|
115
127
|
IntrospectResponse.typeName = "uniswap.platformservice.v1.IntrospectResponse";
|
|
116
|
-
IntrospectResponse.fields = proto3.util.newFieldList(() => [
|
|
128
|
+
IntrospectResponse.fields = proto3.util.newFieldList(() => [
|
|
129
|
+
{ no: 1, name: "wrapped_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
130
|
+
{ no: 2, name: "result", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
131
|
+
{ no: 3, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
132
|
+
]);
|
|
117
133
|
/**
|
|
118
134
|
* Create API Key request/response
|
|
119
135
|
*
|