@uniswap/client-platform-service 0.0.3 → 0.0.4

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.
@@ -95,7 +95,11 @@ export declare class CreateApiKeyRequest extends Message<CreateApiKeyRequest> {
95
95
  */
96
96
  userId: string;
97
97
  /**
98
- * @generated from field: optional uniswap.platformservice.v1.RateLimitConfig rate_limit_config = 2;
98
+ * @generated from field: string name = 2;
99
+ */
100
+ name: string;
101
+ /**
102
+ * @generated from field: optional uniswap.platformservice.v1.RateLimitConfig rate_limit_config = 3;
99
103
  */
100
104
  rateLimitConfig?: RateLimitConfig;
101
105
  constructor(data?: PartialMessage<CreateApiKeyRequest>);
@@ -128,6 +132,10 @@ export declare class CreateApiKeyResponse extends Message<CreateApiKeyResponse>
128
132
  * @generated from message uniswap.platformservice.v1.ModificationData
129
133
  */
130
134
  export declare class ModificationData extends Message<ModificationData> {
135
+ /**
136
+ * @generated from field: optional bool active = 1;
137
+ */
138
+ active?: boolean;
131
139
  /**
132
140
  * @generated from field: optional uniswap.platformservice.v1.RateLimitConfig rate_limit_config = 2;
133
141
  */
@@ -142,6 +142,10 @@ export class CreateApiKeyRequest extends Message {
142
142
  * @generated from field: string user_id = 1;
143
143
  */
144
144
  this.userId = "";
145
+ /**
146
+ * @generated from field: string name = 2;
147
+ */
148
+ this.name = "";
145
149
  proto3.util.initPartial(data, this);
146
150
  }
147
151
  static fromBinary(bytes, options) {
@@ -161,7 +165,8 @@ CreateApiKeyRequest.runtime = proto3;
161
165
  CreateApiKeyRequest.typeName = "uniswap.platformservice.v1.CreateApiKeyRequest";
162
166
  CreateApiKeyRequest.fields = proto3.util.newFieldList(() => [
163
167
  { no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
164
- { no: 2, name: "rate_limit_config", kind: "message", T: RateLimitConfig, opt: true },
168
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
169
+ { no: 3, name: "rate_limit_config", kind: "message", T: RateLimitConfig, opt: true },
165
170
  ]);
166
171
  /**
167
172
  * @generated from message uniswap.platformservice.v1.CreateApiKeyResponse
@@ -217,6 +222,7 @@ export class ModificationData extends Message {
217
222
  ModificationData.runtime = proto3;
218
223
  ModificationData.typeName = "uniswap.platformservice.v1.ModificationData";
219
224
  ModificationData.fields = proto3.util.newFieldList(() => [
225
+ { no: 1, name: "active", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
220
226
  { no: 2, name: "rate_limit_config", kind: "message", T: RateLimitConfig, opt: true },
221
227
  ]);
222
228
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-platform-service",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },