@uniswap/client-platform-service 0.0.10 → 0.0.11
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.
|
@@ -144,6 +144,10 @@ export declare class ModificationData extends Message<ModificationData> {
|
|
|
144
144
|
* @generated from field: optional uniswap.platformservice.v1.RateLimitConfig rate_limit_config = 2;
|
|
145
145
|
*/
|
|
146
146
|
rateLimitConfig?: RateLimitConfig;
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: optional string name = 3;
|
|
149
|
+
*/
|
|
150
|
+
name?: string;
|
|
147
151
|
constructor(data?: PartialMessage<ModificationData>);
|
|
148
152
|
static readonly runtime: typeof proto3;
|
|
149
153
|
static readonly typeName = "uniswap.platformservice.v1.ModificationData";
|
|
@@ -234,25 +238,37 @@ export declare class ApiKeyDataStruct extends Message<ApiKeyDataStruct> {
|
|
|
234
238
|
*/
|
|
235
239
|
userId: string;
|
|
236
240
|
/**
|
|
237
|
-
* @generated from field: string
|
|
241
|
+
* @generated from field: optional string organization_id = 2;
|
|
242
|
+
*/
|
|
243
|
+
organizationId?: string;
|
|
244
|
+
/**
|
|
245
|
+
* @generated from field: string hashed_api_key = 3;
|
|
238
246
|
*/
|
|
239
247
|
hashedApiKey: string;
|
|
240
248
|
/**
|
|
241
|
-
* @generated from field:
|
|
249
|
+
* @generated from field: optional string raw_key = 4;
|
|
250
|
+
*/
|
|
251
|
+
rawKey?: string;
|
|
252
|
+
/**
|
|
253
|
+
* @generated from field: string name = 5;
|
|
254
|
+
*/
|
|
255
|
+
name: string;
|
|
256
|
+
/**
|
|
257
|
+
* @generated from field: bool active = 6;
|
|
258
|
+
*/
|
|
259
|
+
active: boolean;
|
|
260
|
+
/**
|
|
261
|
+
* @generated from field: uniswap.platformservice.v1.RateLimitConfig rate_limit_config = 7;
|
|
242
262
|
*/
|
|
243
263
|
rateLimitConfig?: RateLimitConfig;
|
|
244
264
|
/**
|
|
245
|
-
* @generated from field: google.protobuf.Timestamp last_modified_at =
|
|
265
|
+
* @generated from field: google.protobuf.Timestamp last_modified_at = 8;
|
|
246
266
|
*/
|
|
247
267
|
lastModifiedAt?: Timestamp;
|
|
248
268
|
/**
|
|
249
|
-
* @generated from field: google.protobuf.Timestamp creation_time =
|
|
269
|
+
* @generated from field: google.protobuf.Timestamp creation_time = 9;
|
|
250
270
|
*/
|
|
251
271
|
creationTime?: Timestamp;
|
|
252
|
-
/**
|
|
253
|
-
* @generated from field: optional string raw_key = 6;
|
|
254
|
-
*/
|
|
255
|
-
rawKey?: string;
|
|
256
272
|
constructor(data?: PartialMessage<ApiKeyDataStruct>);
|
|
257
273
|
static readonly runtime: typeof proto3;
|
|
258
274
|
static readonly typeName = "uniswap.platformservice.v1.ApiKeyDataStruct";
|
|
@@ -229,6 +229,7 @@ ModificationData.typeName = "uniswap.platformservice.v1.ModificationData";
|
|
|
229
229
|
ModificationData.fields = proto3.util.newFieldList(() => [
|
|
230
230
|
{ no: 1, name: "active", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
231
231
|
{ no: 2, name: "rate_limit_config", kind: "message", T: RateLimitConfig, opt: true },
|
|
232
|
+
{ no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
232
233
|
]);
|
|
233
234
|
/**
|
|
234
235
|
* Modify API Key request/response
|
|
@@ -358,9 +359,17 @@ export class ApiKeyDataStruct extends Message {
|
|
|
358
359
|
*/
|
|
359
360
|
this.userId = "";
|
|
360
361
|
/**
|
|
361
|
-
* @generated from field: string hashed_api_key =
|
|
362
|
+
* @generated from field: string hashed_api_key = 3;
|
|
362
363
|
*/
|
|
363
364
|
this.hashedApiKey = "";
|
|
365
|
+
/**
|
|
366
|
+
* @generated from field: string name = 5;
|
|
367
|
+
*/
|
|
368
|
+
this.name = "";
|
|
369
|
+
/**
|
|
370
|
+
* @generated from field: bool active = 6;
|
|
371
|
+
*/
|
|
372
|
+
this.active = false;
|
|
364
373
|
proto3.util.initPartial(data, this);
|
|
365
374
|
}
|
|
366
375
|
static fromBinary(bytes, options) {
|
|
@@ -380,11 +389,14 @@ ApiKeyDataStruct.runtime = proto3;
|
|
|
380
389
|
ApiKeyDataStruct.typeName = "uniswap.platformservice.v1.ApiKeyDataStruct";
|
|
381
390
|
ApiKeyDataStruct.fields = proto3.util.newFieldList(() => [
|
|
382
391
|
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
383
|
-
{ no: 2, name: "
|
|
384
|
-
{ no: 3, name: "
|
|
385
|
-
{ no: 4, name: "
|
|
386
|
-
{ no: 5, name: "
|
|
387
|
-
{ no: 6, name: "
|
|
392
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
393
|
+
{ no: 3, name: "hashed_api_key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
394
|
+
{ no: 4, name: "raw_key", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
395
|
+
{ no: 5, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
396
|
+
{ no: 6, name: "active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
397
|
+
{ no: 7, name: "rate_limit_config", kind: "message", T: RateLimitConfig },
|
|
398
|
+
{ no: 8, name: "last_modified_at", kind: "message", T: Timestamp },
|
|
399
|
+
{ no: 9, name: "creation_time", kind: "message", T: Timestamp },
|
|
388
400
|
]);
|
|
389
401
|
/**
|
|
390
402
|
* @generated from message uniswap.platformservice.v1.ListApiKeyRequest
|