@uniswap/client-platform-service 0.0.8 → 0.0.10

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.
Files changed (32) hide show
  1. package/dist/uniswap/platformservice/v1/apiKeyService-ApiKeyService_connectquery.js +1 -1
  2. package/dist/uniswap/platformservice/v1/apiKeyService_connect.js +1 -1
  3. package/dist/uniswap/platformservice/v1/apiKeyService_pb.d.ts +8 -0
  4. package/dist/uniswap/platformservice/v1/apiKeyService_pb.js +7 -1
  5. package/dist/uniswap/platformservice/v1/organizationService-OrganizationService_connectquery.d.ts +14 -1
  6. package/dist/uniswap/platformservice/v1/organizationService-OrganizationService_connectquery.js +15 -2
  7. package/dist/uniswap/platformservice/v1/organizationService_connect.d.ts +10 -1
  8. package/dist/uniswap/platformservice/v1/organizationService_connect.js +11 -2
  9. package/dist/uniswap/platformservice/v1/organizationService_pb.d.ts +42 -0
  10. package/dist/uniswap/platformservice/v1/organizationService_pb.js +70 -1
  11. package/dist/uniswap/platformservice/v1/personaService-PersonaService_connectquery.d.ts +2 -43
  12. package/dist/uniswap/platformservice/v1/personaService-PersonaService_connectquery.js +3 -44
  13. package/dist/uniswap/platformservice/v1/personaService_connect.d.ts +2 -31
  14. package/dist/uniswap/platformservice/v1/personaService_connect.js +3 -32
  15. package/dist/uniswap/platformservice/v1/personaService_pb.d.ts +4 -150
  16. package/dist/uniswap/platformservice/v1/personaService_pb.js +8 -232
  17. package/dist/uniswap/platformservice/v1/sessionService-SessionService_connectquery.d.ts +2 -18
  18. package/dist/uniswap/platformservice/v1/sessionService-SessionService_connectquery.js +3 -19
  19. package/dist/uniswap/platformservice/v1/sessionService_connect.d.ts +2 -14
  20. package/dist/uniswap/platformservice/v1/sessionService_connect.js +3 -15
  21. package/dist/uniswap/platformservice/v1/sessionService_pb.d.ts +124 -43
  22. package/dist/uniswap/platformservice/v1/sessionService_pb.js +149 -51
  23. package/dist/uniswap/platformservice/v1/userService-UserService_connectquery.d.ts +73 -0
  24. package/dist/uniswap/platformservice/v1/userService-UserService_connectquery.js +77 -0
  25. package/dist/uniswap/platformservice/v1/userService_connect.d.ts +61 -0
  26. package/dist/uniswap/platformservice/v1/userService_connect.js +65 -0
  27. package/dist/uniswap/platformservice/v1/userService_pb.d.ts +261 -0
  28. package/dist/uniswap/platformservice/v1/userService_pb.js +382 -0
  29. package/dist/uniswap/platformservice/v1/workerService-WorkerService_connectquery.js +1 -1
  30. package/dist/uniswap/platformservice/v1/workerService_connect.js +1 -1
  31. package/dist/uniswap/platformservice/v1/workerService_pb.js +1 -1
  32. package/package.json +1 -1
@@ -4,6 +4,10 @@ import { Message, proto3 } from "@bufbuild/protobuf";
4
4
  * @generated from message uniswap.platformservice.v1.GetOrCreatePersonaRequest
5
5
  */
6
6
  export declare class GetOrCreatePersonaRequest extends Message<GetOrCreatePersonaRequest> {
7
+ /**
8
+ * @generated from field: string device_id = 1;
9
+ */
10
+ deviceId: string;
7
11
  constructor(data?: PartialMessage<GetOrCreatePersonaRequest>);
8
12
  static readonly runtime: typeof proto3;
9
13
  static readonly typeName = "uniswap.platformservice.v1.GetOrCreatePersonaRequest";
@@ -93,153 +97,3 @@ export declare class PersonaScore extends Message<PersonaScore> {
93
97
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PersonaScore;
94
98
  static equals(a: PersonaScore | PlainMessage<PersonaScore> | undefined, b: PersonaScore | PlainMessage<PersonaScore> | undefined): boolean;
95
99
  }
96
- /**
97
- * Represents an agreement
98
- *
99
- * @generated from message uniswap.platformservice.v1.Agreement
100
- */
101
- export declare class Agreement extends Message<Agreement> {
102
- /**
103
- * @generated from field: string name = 1;
104
- */
105
- name: string;
106
- /**
107
- * @generated from field: string version = 2;
108
- */
109
- version: string;
110
- /**
111
- * @generated from field: bool agreed = 3;
112
- */
113
- agreed: boolean;
114
- constructor(data?: PartialMessage<Agreement>);
115
- static readonly runtime: typeof proto3;
116
- static readonly typeName = "uniswap.platformservice.v1.Agreement";
117
- static readonly fields: FieldList;
118
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Agreement;
119
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Agreement;
120
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Agreement;
121
- static equals(a: Agreement | PlainMessage<Agreement> | undefined, b: Agreement | PlainMessage<Agreement> | undefined): boolean;
122
- }
123
- /**
124
- * Request to modify an existing persona
125
- *
126
- * @generated from message uniswap.platformservice.v1.ModifyPersonaRequest
127
- */
128
- export declare class ModifyPersonaRequest extends Message<ModifyPersonaRequest> {
129
- /**
130
- * @generated from field: optional string name = 1;
131
- */
132
- name?: string;
133
- /**
134
- * @generated from field: optional uniswap.platformservice.v1.Agreement agreement = 2;
135
- */
136
- agreement?: Agreement;
137
- constructor(data?: PartialMessage<ModifyPersonaRequest>);
138
- static readonly runtime: typeof proto3;
139
- static readonly typeName = "uniswap.platformservice.v1.ModifyPersonaRequest";
140
- static readonly fields: FieldList;
141
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ModifyPersonaRequest;
142
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ModifyPersonaRequest;
143
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ModifyPersonaRequest;
144
- static equals(a: ModifyPersonaRequest | PlainMessage<ModifyPersonaRequest> | undefined, b: ModifyPersonaRequest | PlainMessage<ModifyPersonaRequest> | undefined): boolean;
145
- }
146
- /**
147
- * Response for modify persona
148
- *
149
- * @generated from message uniswap.platformservice.v1.ModifyPersonaResponse
150
- */
151
- export declare class ModifyPersonaResponse extends Message<ModifyPersonaResponse> {
152
- constructor(data?: PartialMessage<ModifyPersonaResponse>);
153
- static readonly runtime: typeof proto3;
154
- static readonly typeName = "uniswap.platformservice.v1.ModifyPersonaResponse";
155
- static readonly fields: FieldList;
156
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ModifyPersonaResponse;
157
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ModifyPersonaResponse;
158
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ModifyPersonaResponse;
159
- static equals(a: ModifyPersonaResponse | PlainMessage<ModifyPersonaResponse> | undefined, b: ModifyPersonaResponse | PlainMessage<ModifyPersonaResponse> | undefined): boolean;
160
- }
161
- /**
162
- * Request to get a persona
163
- *
164
- * @generated from message uniswap.platformservice.v1.GetAccountRequest
165
- */
166
- export declare class GetAccountRequest extends Message<GetAccountRequest> {
167
- constructor(data?: PartialMessage<GetAccountRequest>);
168
- static readonly runtime: typeof proto3;
169
- static readonly typeName = "uniswap.platformservice.v1.GetAccountRequest";
170
- static readonly fields: FieldList;
171
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetAccountRequest;
172
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetAccountRequest;
173
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetAccountRequest;
174
- static equals(a: GetAccountRequest | PlainMessage<GetAccountRequest> | undefined, b: GetAccountRequest | PlainMessage<GetAccountRequest> | undefined): boolean;
175
- }
176
- /**
177
- * @generated from message uniswap.platformservice.v1.Persona
178
- */
179
- export declare class Persona extends Message<Persona> {
180
- /**
181
- * @generated from field: optional string name = 1;
182
- */
183
- name?: string;
184
- /**
185
- * @generated from field: optional string email = 2;
186
- */
187
- email?: string;
188
- constructor(data?: PartialMessage<Persona>);
189
- static readonly runtime: typeof proto3;
190
- static readonly typeName = "uniswap.platformservice.v1.Persona";
191
- static readonly fields: FieldList;
192
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Persona;
193
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Persona;
194
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Persona;
195
- static equals(a: Persona | PlainMessage<Persona> | undefined, b: Persona | PlainMessage<Persona> | undefined): boolean;
196
- }
197
- /**
198
- * TODO: Populate account information, including persona data, api keys, organization info all toghther.
199
- *
200
- * @generated from message uniswap.platformservice.v1.GetAccountResponse
201
- */
202
- export declare class GetAccountResponse extends Message<GetAccountResponse> {
203
- /**
204
- * @generated from field: uniswap.platformservice.v1.Persona persona = 1;
205
- */
206
- persona?: Persona;
207
- constructor(data?: PartialMessage<GetAccountResponse>);
208
- static readonly runtime: typeof proto3;
209
- static readonly typeName = "uniswap.platformservice.v1.GetAccountResponse";
210
- static readonly fields: FieldList;
211
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetAccountResponse;
212
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetAccountResponse;
213
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetAccountResponse;
214
- static equals(a: GetAccountResponse | PlainMessage<GetAccountResponse> | undefined, b: GetAccountResponse | PlainMessage<GetAccountResponse> | undefined): boolean;
215
- }
216
- /**
217
- * Request to delete a persona
218
- *
219
- * @generated from message uniswap.platformservice.v1.DeletePersonaRequest
220
- */
221
- export declare class DeletePersonaRequest extends Message<DeletePersonaRequest> {
222
- constructor(data?: PartialMessage<DeletePersonaRequest>);
223
- static readonly runtime: typeof proto3;
224
- static readonly typeName = "uniswap.platformservice.v1.DeletePersonaRequest";
225
- static readonly fields: FieldList;
226
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonaRequest;
227
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonaRequest;
228
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonaRequest;
229
- static equals(a: DeletePersonaRequest | PlainMessage<DeletePersonaRequest> | undefined, b: DeletePersonaRequest | PlainMessage<DeletePersonaRequest> | undefined): boolean;
230
- }
231
- /**
232
- * Response for delete persona
233
- *
234
- * @generated from message uniswap.platformservice.v1.DeletePersonaResponse
235
- */
236
- export declare class DeletePersonaResponse extends Message<DeletePersonaResponse> {
237
- constructor(data?: PartialMessage<DeletePersonaResponse>);
238
- static readonly runtime: typeof proto3;
239
- static readonly typeName = "uniswap.platformservice.v1.DeletePersonaResponse";
240
- static readonly fields: FieldList;
241
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonaResponse;
242
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonaResponse;
243
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonaResponse;
244
- static equals(a: DeletePersonaResponse | PlainMessage<DeletePersonaResponse> | undefined, b: DeletePersonaResponse | PlainMessage<DeletePersonaResponse> | undefined): boolean;
245
- }
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-es v1.10.0 with parameter "target=ts"
1
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
2
2
  // @generated from file uniswap/platformservice/v1/personaService.proto (package uniswap.platformservice.v1, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -9,6 +9,10 @@ import { Message, proto3 } from "@bufbuild/protobuf";
9
9
  export class GetOrCreatePersonaRequest extends Message {
10
10
  constructor(data) {
11
11
  super();
12
+ /**
13
+ * @generated from field: string device_id = 1;
14
+ */
15
+ this.deviceId = "";
12
16
  proto3.util.initPartial(data, this);
13
17
  }
14
18
  static fromBinary(bytes, options) {
@@ -26,7 +30,9 @@ export class GetOrCreatePersonaRequest extends Message {
26
30
  }
27
31
  GetOrCreatePersonaRequest.runtime = proto3;
28
32
  GetOrCreatePersonaRequest.typeName = "uniswap.platformservice.v1.GetOrCreatePersonaRequest";
29
- GetOrCreatePersonaRequest.fields = proto3.util.newFieldList(() => []);
33
+ GetOrCreatePersonaRequest.fields = proto3.util.newFieldList(() => [
34
+ { no: 1, name: "device_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
35
+ ]);
30
36
  /**
31
37
  * @generated from message uniswap.platformservice.v1.GetOrCreatePersonaResponse
32
38
  */
@@ -155,233 +161,3 @@ PersonaScore.fields = proto3.util.newFieldList(() => [
155
161
  { no: 1, name: "persona_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
156
162
  { no: 2, name: "score", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
157
163
  ]);
158
- /**
159
- * Represents an agreement
160
- *
161
- * @generated from message uniswap.platformservice.v1.Agreement
162
- */
163
- export class Agreement extends Message {
164
- constructor(data) {
165
- super();
166
- /**
167
- * @generated from field: string name = 1;
168
- */
169
- this.name = "";
170
- /**
171
- * @generated from field: string version = 2;
172
- */
173
- this.version = "";
174
- /**
175
- * @generated from field: bool agreed = 3;
176
- */
177
- this.agreed = false;
178
- proto3.util.initPartial(data, this);
179
- }
180
- static fromBinary(bytes, options) {
181
- return new Agreement().fromBinary(bytes, options);
182
- }
183
- static fromJson(jsonValue, options) {
184
- return new Agreement().fromJson(jsonValue, options);
185
- }
186
- static fromJsonString(jsonString, options) {
187
- return new Agreement().fromJsonString(jsonString, options);
188
- }
189
- static equals(a, b) {
190
- return proto3.util.equals(Agreement, a, b);
191
- }
192
- }
193
- Agreement.runtime = proto3;
194
- Agreement.typeName = "uniswap.platformservice.v1.Agreement";
195
- Agreement.fields = proto3.util.newFieldList(() => [
196
- { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
197
- { no: 2, name: "version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
198
- { no: 3, name: "agreed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
199
- ]);
200
- /**
201
- * Request to modify an existing persona
202
- *
203
- * @generated from message uniswap.platformservice.v1.ModifyPersonaRequest
204
- */
205
- export class ModifyPersonaRequest extends Message {
206
- constructor(data) {
207
- super();
208
- proto3.util.initPartial(data, this);
209
- }
210
- static fromBinary(bytes, options) {
211
- return new ModifyPersonaRequest().fromBinary(bytes, options);
212
- }
213
- static fromJson(jsonValue, options) {
214
- return new ModifyPersonaRequest().fromJson(jsonValue, options);
215
- }
216
- static fromJsonString(jsonString, options) {
217
- return new ModifyPersonaRequest().fromJsonString(jsonString, options);
218
- }
219
- static equals(a, b) {
220
- return proto3.util.equals(ModifyPersonaRequest, a, b);
221
- }
222
- }
223
- ModifyPersonaRequest.runtime = proto3;
224
- ModifyPersonaRequest.typeName = "uniswap.platformservice.v1.ModifyPersonaRequest";
225
- ModifyPersonaRequest.fields = proto3.util.newFieldList(() => [
226
- { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
227
- { no: 2, name: "agreement", kind: "message", T: Agreement, opt: true },
228
- ]);
229
- /**
230
- * Response for modify persona
231
- *
232
- * @generated from message uniswap.platformservice.v1.ModifyPersonaResponse
233
- */
234
- export class ModifyPersonaResponse extends Message {
235
- constructor(data) {
236
- super();
237
- proto3.util.initPartial(data, this);
238
- }
239
- static fromBinary(bytes, options) {
240
- return new ModifyPersonaResponse().fromBinary(bytes, options);
241
- }
242
- static fromJson(jsonValue, options) {
243
- return new ModifyPersonaResponse().fromJson(jsonValue, options);
244
- }
245
- static fromJsonString(jsonString, options) {
246
- return new ModifyPersonaResponse().fromJsonString(jsonString, options);
247
- }
248
- static equals(a, b) {
249
- return proto3.util.equals(ModifyPersonaResponse, a, b);
250
- }
251
- }
252
- ModifyPersonaResponse.runtime = proto3;
253
- ModifyPersonaResponse.typeName = "uniswap.platformservice.v1.ModifyPersonaResponse";
254
- ModifyPersonaResponse.fields = proto3.util.newFieldList(() => []);
255
- /**
256
- * Request to get a persona
257
- *
258
- * @generated from message uniswap.platformservice.v1.GetAccountRequest
259
- */
260
- export class GetAccountRequest extends Message {
261
- constructor(data) {
262
- super();
263
- proto3.util.initPartial(data, this);
264
- }
265
- static fromBinary(bytes, options) {
266
- return new GetAccountRequest().fromBinary(bytes, options);
267
- }
268
- static fromJson(jsonValue, options) {
269
- return new GetAccountRequest().fromJson(jsonValue, options);
270
- }
271
- static fromJsonString(jsonString, options) {
272
- return new GetAccountRequest().fromJsonString(jsonString, options);
273
- }
274
- static equals(a, b) {
275
- return proto3.util.equals(GetAccountRequest, a, b);
276
- }
277
- }
278
- GetAccountRequest.runtime = proto3;
279
- GetAccountRequest.typeName = "uniswap.platformservice.v1.GetAccountRequest";
280
- GetAccountRequest.fields = proto3.util.newFieldList(() => []);
281
- /**
282
- * @generated from message uniswap.platformservice.v1.Persona
283
- */
284
- export class Persona extends Message {
285
- constructor(data) {
286
- super();
287
- proto3.util.initPartial(data, this);
288
- }
289
- static fromBinary(bytes, options) {
290
- return new Persona().fromBinary(bytes, options);
291
- }
292
- static fromJson(jsonValue, options) {
293
- return new Persona().fromJson(jsonValue, options);
294
- }
295
- static fromJsonString(jsonString, options) {
296
- return new Persona().fromJsonString(jsonString, options);
297
- }
298
- static equals(a, b) {
299
- return proto3.util.equals(Persona, a, b);
300
- }
301
- }
302
- Persona.runtime = proto3;
303
- Persona.typeName = "uniswap.platformservice.v1.Persona";
304
- Persona.fields = proto3.util.newFieldList(() => [
305
- { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
306
- { no: 2, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
307
- ]);
308
- /**
309
- * TODO: Populate account information, including persona data, api keys, organization info all toghther.
310
- *
311
- * @generated from message uniswap.platformservice.v1.GetAccountResponse
312
- */
313
- export class GetAccountResponse extends Message {
314
- constructor(data) {
315
- super();
316
- proto3.util.initPartial(data, this);
317
- }
318
- static fromBinary(bytes, options) {
319
- return new GetAccountResponse().fromBinary(bytes, options);
320
- }
321
- static fromJson(jsonValue, options) {
322
- return new GetAccountResponse().fromJson(jsonValue, options);
323
- }
324
- static fromJsonString(jsonString, options) {
325
- return new GetAccountResponse().fromJsonString(jsonString, options);
326
- }
327
- static equals(a, b) {
328
- return proto3.util.equals(GetAccountResponse, a, b);
329
- }
330
- }
331
- GetAccountResponse.runtime = proto3;
332
- GetAccountResponse.typeName = "uniswap.platformservice.v1.GetAccountResponse";
333
- GetAccountResponse.fields = proto3.util.newFieldList(() => [
334
- { no: 1, name: "persona", kind: "message", T: Persona },
335
- ]);
336
- /**
337
- * Request to delete a persona
338
- *
339
- * @generated from message uniswap.platformservice.v1.DeletePersonaRequest
340
- */
341
- export class DeletePersonaRequest extends Message {
342
- constructor(data) {
343
- super();
344
- proto3.util.initPartial(data, this);
345
- }
346
- static fromBinary(bytes, options) {
347
- return new DeletePersonaRequest().fromBinary(bytes, options);
348
- }
349
- static fromJson(jsonValue, options) {
350
- return new DeletePersonaRequest().fromJson(jsonValue, options);
351
- }
352
- static fromJsonString(jsonString, options) {
353
- return new DeletePersonaRequest().fromJsonString(jsonString, options);
354
- }
355
- static equals(a, b) {
356
- return proto3.util.equals(DeletePersonaRequest, a, b);
357
- }
358
- }
359
- DeletePersonaRequest.runtime = proto3;
360
- DeletePersonaRequest.typeName = "uniswap.platformservice.v1.DeletePersonaRequest";
361
- DeletePersonaRequest.fields = proto3.util.newFieldList(() => []);
362
- /**
363
- * Response for delete persona
364
- *
365
- * @generated from message uniswap.platformservice.v1.DeletePersonaResponse
366
- */
367
- export class DeletePersonaResponse extends Message {
368
- constructor(data) {
369
- super();
370
- proto3.util.initPartial(data, this);
371
- }
372
- static fromBinary(bytes, options) {
373
- return new DeletePersonaResponse().fromBinary(bytes, options);
374
- }
375
- static fromJson(jsonValue, options) {
376
- return new DeletePersonaResponse().fromJson(jsonValue, options);
377
- }
378
- static fromJsonString(jsonString, options) {
379
- return new DeletePersonaResponse().fromJsonString(jsonString, options);
380
- }
381
- static equals(a, b) {
382
- return proto3.util.equals(DeletePersonaResponse, a, b);
383
- }
384
- }
385
- DeletePersonaResponse.runtime = proto3;
386
- DeletePersonaResponse.typeName = "uniswap.platformservice.v1.DeletePersonaResponse";
387
- DeletePersonaResponse.fields = proto3.util.newFieldList(() => []);
@@ -1,5 +1,5 @@
1
1
  import { MethodKind } from "@bufbuild/protobuf";
2
- import { ChallengeRequest, ChallengeResponse, DeleteSessionRequest, DeleteSessionResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
2
+ import { ChallengeRequest, ChallengeResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
3
3
  /**
4
4
  * typically utilized by Entry Gateway for inspecting the validity of a session
5
5
  *
@@ -76,21 +76,6 @@ export declare const verify: {
76
76
  readonly typeName: "uniswap.platformservice.v1.SessionService";
77
77
  };
78
78
  };
79
- /**
80
- * delete a certain session. For example, on app uninstall
81
- *
82
- * @generated from rpc uniswap.platformservice.v1.SessionService.DeleteSession
83
- */
84
- export declare const deleteSession: {
85
- readonly localName: "deleteSession";
86
- readonly name: "DeleteSession";
87
- readonly kind: MethodKind.Unary;
88
- readonly I: typeof DeleteSessionRequest;
89
- readonly O: typeof DeleteSessionResponse;
90
- readonly service: {
91
- readonly typeName: "uniswap.platformservice.v1.SessionService";
92
- };
93
- };
94
79
  /**
95
80
  * Update request. We intend this to be generic.
96
81
  *
@@ -107,8 +92,7 @@ export declare const updateSession: {
107
92
  };
108
93
  };
109
94
  /**
110
- * 1. Sign out user and clear authenticated session,
111
- * 2. Rotate with a brand new session
95
+ * Sign out user and clear authenticated session
112
96
  *
113
97
  * @generated from rpc uniswap.platformservice.v1.SessionService.Signout
114
98
  */
@@ -1,9 +1,9 @@
1
- // @generated by protoc-gen-connect-query v1.4.1 with parameter "target=ts"
1
+ // @generated by protoc-gen-connect-query v1.4.2 with parameter "target=ts"
2
2
  // @generated from file uniswap/platformservice/v1/sessionService.proto (package uniswap.platformservice.v1, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
5
5
  import { MethodKind } from "@bufbuild/protobuf";
6
- import { ChallengeRequest, ChallengeResponse, DeleteSessionRequest, DeleteSessionResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
6
+ import { ChallengeRequest, ChallengeResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
7
7
  /**
8
8
  * typically utilized by Entry Gateway for inspecting the validity of a session
9
9
  *
@@ -80,21 +80,6 @@ export const verify = {
80
80
  typeName: "uniswap.platformservice.v1.SessionService"
81
81
  }
82
82
  };
83
- /**
84
- * delete a certain session. For example, on app uninstall
85
- *
86
- * @generated from rpc uniswap.platformservice.v1.SessionService.DeleteSession
87
- */
88
- export const deleteSession = {
89
- localName: "deleteSession",
90
- name: "DeleteSession",
91
- kind: MethodKind.Unary,
92
- I: DeleteSessionRequest,
93
- O: DeleteSessionResponse,
94
- service: {
95
- typeName: "uniswap.platformservice.v1.SessionService"
96
- }
97
- };
98
83
  /**
99
84
  * Update request. We intend this to be generic.
100
85
  *
@@ -111,8 +96,7 @@ export const updateSession = {
111
96
  }
112
97
  };
113
98
  /**
114
- * 1. Sign out user and clear authenticated session,
115
- * 2. Rotate with a brand new session
99
+ * Sign out user and clear authenticated session
116
100
  *
117
101
  * @generated from rpc uniswap.platformservice.v1.SessionService.Signout
118
102
  */
@@ -1,4 +1,4 @@
1
- import { ChallengeRequest, ChallengeResponse, DeleteSessionRequest, DeleteSessionResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
1
+ import { ChallengeRequest, ChallengeResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
2
2
  import { MethodKind } from "@bufbuild/protobuf";
3
3
  /**
4
4
  * @generated from service uniswap.platformservice.v1.SessionService
@@ -62,17 +62,6 @@ export declare const SessionService: {
62
62
  readonly O: typeof VerifyResponse;
63
63
  readonly kind: MethodKind.Unary;
64
64
  };
65
- /**
66
- * delete a certain session. For example, on app uninstall
67
- *
68
- * @generated from rpc uniswap.platformservice.v1.SessionService.DeleteSession
69
- */
70
- readonly deleteSession: {
71
- readonly name: "DeleteSession";
72
- readonly I: typeof DeleteSessionRequest;
73
- readonly O: typeof DeleteSessionResponse;
74
- readonly kind: MethodKind.Unary;
75
- };
76
65
  /**
77
66
  * Update request. We intend this to be generic.
78
67
  *
@@ -85,8 +74,7 @@ export declare const SessionService: {
85
74
  readonly kind: MethodKind.Unary;
86
75
  };
87
76
  /**
88
- * 1. Sign out user and clear authenticated session,
89
- * 2. Rotate with a brand new session
77
+ * Sign out user and clear authenticated session
90
78
  *
91
79
  * @generated from rpc uniswap.platformservice.v1.SessionService.Signout
92
80
  */
@@ -1,8 +1,8 @@
1
- // @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts"
1
+ // @generated by protoc-gen-connect-es v1.7.0 with parameter "target=ts"
2
2
  // @generated from file uniswap/platformservice/v1/sessionService.proto (package uniswap.platformservice.v1, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
5
- import { ChallengeRequest, ChallengeResponse, DeleteSessionRequest, DeleteSessionResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
5
+ import { ChallengeRequest, ChallengeResponse, GetChallengeTypesRequest, GetChallengeTypesResponse, InitSessionRequest, InitSessionResponse, IntrospectSessionRequest, IntrospectSessionResponse, SignoutRequest, SignoutResponse, UpdateSessionRequest, UpdateSessionResponse, VerifyRequest, VerifyResponse } from "./sessionService_pb.js";
6
6
  import { MethodKind } from "@bufbuild/protobuf";
7
7
  /**
8
8
  * @generated from service uniswap.platformservice.v1.SessionService
@@ -66,17 +66,6 @@ export const SessionService = {
66
66
  O: VerifyResponse,
67
67
  kind: MethodKind.Unary,
68
68
  },
69
- /**
70
- * delete a certain session. For example, on app uninstall
71
- *
72
- * @generated from rpc uniswap.platformservice.v1.SessionService.DeleteSession
73
- */
74
- deleteSession: {
75
- name: "DeleteSession",
76
- I: DeleteSessionRequest,
77
- O: DeleteSessionResponse,
78
- kind: MethodKind.Unary,
79
- },
80
69
  /**
81
70
  * Update request. We intend this to be generic.
82
71
  *
@@ -89,8 +78,7 @@ export const SessionService = {
89
78
  kind: MethodKind.Unary,
90
79
  },
91
80
  /**
92
- * 1. Sign out user and clear authenticated session,
93
- * 2. Rotate with a brand new session
81
+ * Sign out user and clear authenticated session
94
82
  *
95
83
  * @generated from rpc uniswap.platformservice.v1.SessionService.Signout
96
84
  */