protobuf-platform 1.2.491 → 1.2.494
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/package.json +1 -1
- package/user/user.proto +11 -0
- package/user/user_grpc_pb.js +44 -0
- package/user/user_pb.js +448 -0
package/package.json
CHANGED
package/user/user.proto
CHANGED
|
@@ -29,6 +29,8 @@ service User {
|
|
|
29
29
|
rpc addPermissionToUserRole(RolePermissionRequest) returns (RolePermissionStatusResponse);
|
|
30
30
|
rpc rolesList(PaginationRequest) returns (RolesItemsResponse);
|
|
31
31
|
rpc getSingleRole(GetRoleRequest) returns (Role);
|
|
32
|
+
rpc createSingleRole(CreateRoleRequest) returns (Role);
|
|
33
|
+
rpc updateSingleRole(UpdateRoleRequest) returns (Role);
|
|
32
34
|
//CRUD
|
|
33
35
|
rpc readListUsers(PaginationRequest) returns (UsersResponse);
|
|
34
36
|
rpc updateSingleUser(UserRequest) returns (UserDataResponse);
|
|
@@ -691,6 +693,15 @@ message Role {
|
|
|
691
693
|
optional string permissions = 4;
|
|
692
694
|
}
|
|
693
695
|
message GetRoleRequest { int32 id = 1; }
|
|
696
|
+
message CreateRoleRequest {
|
|
697
|
+
string title = 1;
|
|
698
|
+
optional string description = 2;
|
|
699
|
+
}
|
|
700
|
+
message UpdateRoleRequest {
|
|
701
|
+
int32 id = 1;
|
|
702
|
+
optional string title = 2;
|
|
703
|
+
optional string description = 3;
|
|
704
|
+
}
|
|
694
705
|
message RolesItemsResponse {
|
|
695
706
|
repeated Role items = 1;
|
|
696
707
|
int32 total_items = 2;
|
package/user/user_grpc_pb.js
CHANGED
|
@@ -246,6 +246,17 @@ function deserialize_user_CreatePresetResponse(buffer_arg) {
|
|
|
246
246
|
return user_pb.CreatePresetResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
247
247
|
}
|
|
248
248
|
|
|
249
|
+
function serialize_user_CreateRoleRequest(arg) {
|
|
250
|
+
if (!(arg instanceof user_pb.CreateRoleRequest)) {
|
|
251
|
+
throw new Error('Expected argument of type user.CreateRoleRequest');
|
|
252
|
+
}
|
|
253
|
+
return Buffer.from(arg.serializeBinary());
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function deserialize_user_CreateRoleRequest(buffer_arg) {
|
|
257
|
+
return user_pb.CreateRoleRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
258
|
+
}
|
|
259
|
+
|
|
249
260
|
function serialize_user_CreateUserKycDocumentMetadataRequest(arg) {
|
|
250
261
|
if (!(arg instanceof user_pb.CreateUserKycDocumentMetadataRequest)) {
|
|
251
262
|
throw new Error('Expected argument of type user.CreateUserKycDocumentMetadataRequest');
|
|
@@ -1401,6 +1412,17 @@ function deserialize_user_UpdateRiskPermissionMatrixRequest(buffer_arg) {
|
|
|
1401
1412
|
return user_pb.UpdateRiskPermissionMatrixRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
1402
1413
|
}
|
|
1403
1414
|
|
|
1415
|
+
function serialize_user_UpdateRoleRequest(arg) {
|
|
1416
|
+
if (!(arg instanceof user_pb.UpdateRoleRequest)) {
|
|
1417
|
+
throw new Error('Expected argument of type user.UpdateRoleRequest');
|
|
1418
|
+
}
|
|
1419
|
+
return Buffer.from(arg.serializeBinary());
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
function deserialize_user_UpdateRoleRequest(buffer_arg) {
|
|
1423
|
+
return user_pb.UpdateRoleRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1404
1426
|
function serialize_user_UpdateUserKycDocumentReviewRequest(arg) {
|
|
1405
1427
|
if (!(arg instanceof user_pb.UpdateUserKycDocumentReviewRequest)) {
|
|
1406
1428
|
throw new Error('Expected argument of type user.UpdateUserKycDocumentReviewRequest');
|
|
@@ -2131,6 +2153,28 @@ addPermissionToUserRole: {
|
|
|
2131
2153
|
responseSerialize: serialize_user_Role,
|
|
2132
2154
|
responseDeserialize: deserialize_user_Role,
|
|
2133
2155
|
},
|
|
2156
|
+
createSingleRole: {
|
|
2157
|
+
path: '/user.User/createSingleRole',
|
|
2158
|
+
requestStream: false,
|
|
2159
|
+
responseStream: false,
|
|
2160
|
+
requestType: user_pb.CreateRoleRequest,
|
|
2161
|
+
responseType: user_pb.Role,
|
|
2162
|
+
requestSerialize: serialize_user_CreateRoleRequest,
|
|
2163
|
+
requestDeserialize: deserialize_user_CreateRoleRequest,
|
|
2164
|
+
responseSerialize: serialize_user_Role,
|
|
2165
|
+
responseDeserialize: deserialize_user_Role,
|
|
2166
|
+
},
|
|
2167
|
+
updateSingleRole: {
|
|
2168
|
+
path: '/user.User/updateSingleRole',
|
|
2169
|
+
requestStream: false,
|
|
2170
|
+
responseStream: false,
|
|
2171
|
+
requestType: user_pb.UpdateRoleRequest,
|
|
2172
|
+
responseType: user_pb.Role,
|
|
2173
|
+
requestSerialize: serialize_user_UpdateRoleRequest,
|
|
2174
|
+
requestDeserialize: deserialize_user_UpdateRoleRequest,
|
|
2175
|
+
responseSerialize: serialize_user_Role,
|
|
2176
|
+
responseDeserialize: deserialize_user_Role,
|
|
2177
|
+
},
|
|
2134
2178
|
// CRUD
|
|
2135
2179
|
readListUsers: {
|
|
2136
2180
|
path: '/user.User/readListUsers',
|
package/user/user_pb.js
CHANGED
|
@@ -46,6 +46,7 @@ goog.exportSymbol('proto.user.CreateKycRequirementPresetRequest', null, global);
|
|
|
46
46
|
goog.exportSymbol('proto.user.CreateKycRuleDefinitionRequest', null, global);
|
|
47
47
|
goog.exportSymbol('proto.user.CreatePresetRequest', null, global);
|
|
48
48
|
goog.exportSymbol('proto.user.CreatePresetResponse', null, global);
|
|
49
|
+
goog.exportSymbol('proto.user.CreateRoleRequest', null, global);
|
|
49
50
|
goog.exportSymbol('proto.user.CreateUserKycDocumentMetadataRequest', null, global);
|
|
50
51
|
goog.exportSymbol('proto.user.DashboardRequest', null, global);
|
|
51
52
|
goog.exportSymbol('proto.user.DashboardResponse', null, global);
|
|
@@ -174,6 +175,7 @@ goog.exportSymbol('proto.user.UpdatePresetRequest', null, global);
|
|
|
174
175
|
goog.exportSymbol('proto.user.UpdatePresetResponse', null, global);
|
|
175
176
|
goog.exportSymbol('proto.user.UpdateRiskPermissionMatrixLimitRequest', null, global);
|
|
176
177
|
goog.exportSymbol('proto.user.UpdateRiskPermissionMatrixRequest', null, global);
|
|
178
|
+
goog.exportSymbol('proto.user.UpdateRoleRequest', null, global);
|
|
177
179
|
goog.exportSymbol('proto.user.UpdateUserKycDocumentReviewRequest', null, global);
|
|
178
180
|
goog.exportSymbol('proto.user.UpdateUserKycProfileRequest', null, global);
|
|
179
181
|
goog.exportSymbol('proto.user.UpdateUserManualRestrictionInBunchItem', null, global);
|
|
@@ -1317,6 +1319,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
1317
1319
|
*/
|
|
1318
1320
|
proto.user.GetRoleRequest.displayName = 'proto.user.GetRoleRequest';
|
|
1319
1321
|
}
|
|
1322
|
+
/**
|
|
1323
|
+
* Generated by JsPbCodeGenerator.
|
|
1324
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1325
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1326
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1327
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1328
|
+
* valid.
|
|
1329
|
+
* @extends {jspb.Message}
|
|
1330
|
+
* @constructor
|
|
1331
|
+
*/
|
|
1332
|
+
proto.user.CreateRoleRequest = function(opt_data) {
|
|
1333
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
1334
|
+
};
|
|
1335
|
+
goog.inherits(proto.user.CreateRoleRequest, jspb.Message);
|
|
1336
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1337
|
+
/**
|
|
1338
|
+
* @public
|
|
1339
|
+
* @override
|
|
1340
|
+
*/
|
|
1341
|
+
proto.user.CreateRoleRequest.displayName = 'proto.user.CreateRoleRequest';
|
|
1342
|
+
}
|
|
1343
|
+
/**
|
|
1344
|
+
* Generated by JsPbCodeGenerator.
|
|
1345
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
1346
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
1347
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
1348
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
1349
|
+
* valid.
|
|
1350
|
+
* @extends {jspb.Message}
|
|
1351
|
+
* @constructor
|
|
1352
|
+
*/
|
|
1353
|
+
proto.user.UpdateRoleRequest = function(opt_data) {
|
|
1354
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
1355
|
+
};
|
|
1356
|
+
goog.inherits(proto.user.UpdateRoleRequest, jspb.Message);
|
|
1357
|
+
if (goog.DEBUG && !COMPILED) {
|
|
1358
|
+
/**
|
|
1359
|
+
* @public
|
|
1360
|
+
* @override
|
|
1361
|
+
*/
|
|
1362
|
+
proto.user.UpdateRoleRequest.displayName = 'proto.user.UpdateRoleRequest';
|
|
1363
|
+
}
|
|
1320
1364
|
/**
|
|
1321
1365
|
* Generated by JsPbCodeGenerator.
|
|
1322
1366
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -28143,6 +28187,410 @@ proto.user.GetRoleRequest.prototype.setId = function(value) {
|
|
|
28143
28187
|
|
|
28144
28188
|
|
|
28145
28189
|
|
|
28190
|
+
|
|
28191
|
+
|
|
28192
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
28193
|
+
/**
|
|
28194
|
+
* Creates an object representation of this proto.
|
|
28195
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
28196
|
+
* Optional fields that are not set will be set to undefined.
|
|
28197
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
28198
|
+
* For the list of reserved names please see:
|
|
28199
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
28200
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
28201
|
+
* JSPB instance for transitional soy proto support:
|
|
28202
|
+
* http://goto/soy-param-migration
|
|
28203
|
+
* @return {!Object}
|
|
28204
|
+
*/
|
|
28205
|
+
proto.user.CreateRoleRequest.prototype.toObject = function(opt_includeInstance) {
|
|
28206
|
+
return proto.user.CreateRoleRequest.toObject(opt_includeInstance, this);
|
|
28207
|
+
};
|
|
28208
|
+
|
|
28209
|
+
|
|
28210
|
+
/**
|
|
28211
|
+
* Static version of the {@see toObject} method.
|
|
28212
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
28213
|
+
* the JSPB instance for transitional soy proto support:
|
|
28214
|
+
* http://goto/soy-param-migration
|
|
28215
|
+
* @param {!proto.user.CreateRoleRequest} msg The msg instance to transform.
|
|
28216
|
+
* @return {!Object}
|
|
28217
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
28218
|
+
*/
|
|
28219
|
+
proto.user.CreateRoleRequest.toObject = function(includeInstance, msg) {
|
|
28220
|
+
var f, obj = {
|
|
28221
|
+
title: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
28222
|
+
description: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
28223
|
+
};
|
|
28224
|
+
|
|
28225
|
+
if (includeInstance) {
|
|
28226
|
+
obj.$jspbMessageInstance = msg;
|
|
28227
|
+
}
|
|
28228
|
+
return obj;
|
|
28229
|
+
};
|
|
28230
|
+
}
|
|
28231
|
+
|
|
28232
|
+
|
|
28233
|
+
/**
|
|
28234
|
+
* Deserializes binary data (in protobuf wire format).
|
|
28235
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
28236
|
+
* @return {!proto.user.CreateRoleRequest}
|
|
28237
|
+
*/
|
|
28238
|
+
proto.user.CreateRoleRequest.deserializeBinary = function(bytes) {
|
|
28239
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
28240
|
+
var msg = new proto.user.CreateRoleRequest;
|
|
28241
|
+
return proto.user.CreateRoleRequest.deserializeBinaryFromReader(msg, reader);
|
|
28242
|
+
};
|
|
28243
|
+
|
|
28244
|
+
|
|
28245
|
+
/**
|
|
28246
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
28247
|
+
* given reader into the given message object.
|
|
28248
|
+
* @param {!proto.user.CreateRoleRequest} msg The message object to deserialize into.
|
|
28249
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
28250
|
+
* @return {!proto.user.CreateRoleRequest}
|
|
28251
|
+
*/
|
|
28252
|
+
proto.user.CreateRoleRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
28253
|
+
while (reader.nextField()) {
|
|
28254
|
+
if (reader.isEndGroup()) {
|
|
28255
|
+
break;
|
|
28256
|
+
}
|
|
28257
|
+
var field = reader.getFieldNumber();
|
|
28258
|
+
switch (field) {
|
|
28259
|
+
case 1:
|
|
28260
|
+
var value = /** @type {string} */ (reader.readString());
|
|
28261
|
+
msg.setTitle(value);
|
|
28262
|
+
break;
|
|
28263
|
+
case 2:
|
|
28264
|
+
var value = /** @type {string} */ (reader.readString());
|
|
28265
|
+
msg.setDescription(value);
|
|
28266
|
+
break;
|
|
28267
|
+
default:
|
|
28268
|
+
reader.skipField();
|
|
28269
|
+
break;
|
|
28270
|
+
}
|
|
28271
|
+
}
|
|
28272
|
+
return msg;
|
|
28273
|
+
};
|
|
28274
|
+
|
|
28275
|
+
|
|
28276
|
+
/**
|
|
28277
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
28278
|
+
* @return {!Uint8Array}
|
|
28279
|
+
*/
|
|
28280
|
+
proto.user.CreateRoleRequest.prototype.serializeBinary = function() {
|
|
28281
|
+
var writer = new jspb.BinaryWriter();
|
|
28282
|
+
proto.user.CreateRoleRequest.serializeBinaryToWriter(this, writer);
|
|
28283
|
+
return writer.getResultBuffer();
|
|
28284
|
+
};
|
|
28285
|
+
|
|
28286
|
+
|
|
28287
|
+
/**
|
|
28288
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
28289
|
+
* format), writing to the given BinaryWriter.
|
|
28290
|
+
* @param {!proto.user.CreateRoleRequest} message
|
|
28291
|
+
* @param {!jspb.BinaryWriter} writer
|
|
28292
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
28293
|
+
*/
|
|
28294
|
+
proto.user.CreateRoleRequest.serializeBinaryToWriter = function(message, writer) {
|
|
28295
|
+
var f = undefined;
|
|
28296
|
+
f = message.getTitle();
|
|
28297
|
+
if (f.length > 0) {
|
|
28298
|
+
writer.writeString(
|
|
28299
|
+
1,
|
|
28300
|
+
f
|
|
28301
|
+
);
|
|
28302
|
+
}
|
|
28303
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
28304
|
+
if (f != null) {
|
|
28305
|
+
writer.writeString(
|
|
28306
|
+
2,
|
|
28307
|
+
f
|
|
28308
|
+
);
|
|
28309
|
+
}
|
|
28310
|
+
};
|
|
28311
|
+
|
|
28312
|
+
|
|
28313
|
+
/**
|
|
28314
|
+
* optional string title = 1;
|
|
28315
|
+
* @return {string}
|
|
28316
|
+
*/
|
|
28317
|
+
proto.user.CreateRoleRequest.prototype.getTitle = function() {
|
|
28318
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
28319
|
+
};
|
|
28320
|
+
|
|
28321
|
+
|
|
28322
|
+
/**
|
|
28323
|
+
* @param {string} value
|
|
28324
|
+
* @return {!proto.user.CreateRoleRequest} returns this
|
|
28325
|
+
*/
|
|
28326
|
+
proto.user.CreateRoleRequest.prototype.setTitle = function(value) {
|
|
28327
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
28328
|
+
};
|
|
28329
|
+
|
|
28330
|
+
|
|
28331
|
+
/**
|
|
28332
|
+
* optional string description = 2;
|
|
28333
|
+
* @return {string}
|
|
28334
|
+
*/
|
|
28335
|
+
proto.user.CreateRoleRequest.prototype.getDescription = function() {
|
|
28336
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
28337
|
+
};
|
|
28338
|
+
|
|
28339
|
+
|
|
28340
|
+
/**
|
|
28341
|
+
* @param {string} value
|
|
28342
|
+
* @return {!proto.user.CreateRoleRequest} returns this
|
|
28343
|
+
*/
|
|
28344
|
+
proto.user.CreateRoleRequest.prototype.setDescription = function(value) {
|
|
28345
|
+
return jspb.Message.setField(this, 2, value);
|
|
28346
|
+
};
|
|
28347
|
+
|
|
28348
|
+
|
|
28349
|
+
/**
|
|
28350
|
+
* Clears the field making it undefined.
|
|
28351
|
+
* @return {!proto.user.CreateRoleRequest} returns this
|
|
28352
|
+
*/
|
|
28353
|
+
proto.user.CreateRoleRequest.prototype.clearDescription = function() {
|
|
28354
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
28355
|
+
};
|
|
28356
|
+
|
|
28357
|
+
|
|
28358
|
+
/**
|
|
28359
|
+
* Returns whether this field is set.
|
|
28360
|
+
* @return {boolean}
|
|
28361
|
+
*/
|
|
28362
|
+
proto.user.CreateRoleRequest.prototype.hasDescription = function() {
|
|
28363
|
+
return jspb.Message.getField(this, 2) != null;
|
|
28364
|
+
};
|
|
28365
|
+
|
|
28366
|
+
|
|
28367
|
+
|
|
28368
|
+
|
|
28369
|
+
|
|
28370
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
28371
|
+
/**
|
|
28372
|
+
* Creates an object representation of this proto.
|
|
28373
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
28374
|
+
* Optional fields that are not set will be set to undefined.
|
|
28375
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
28376
|
+
* For the list of reserved names please see:
|
|
28377
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
28378
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
28379
|
+
* JSPB instance for transitional soy proto support:
|
|
28380
|
+
* http://goto/soy-param-migration
|
|
28381
|
+
* @return {!Object}
|
|
28382
|
+
*/
|
|
28383
|
+
proto.user.UpdateRoleRequest.prototype.toObject = function(opt_includeInstance) {
|
|
28384
|
+
return proto.user.UpdateRoleRequest.toObject(opt_includeInstance, this);
|
|
28385
|
+
};
|
|
28386
|
+
|
|
28387
|
+
|
|
28388
|
+
/**
|
|
28389
|
+
* Static version of the {@see toObject} method.
|
|
28390
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
28391
|
+
* the JSPB instance for transitional soy proto support:
|
|
28392
|
+
* http://goto/soy-param-migration
|
|
28393
|
+
* @param {!proto.user.UpdateRoleRequest} msg The msg instance to transform.
|
|
28394
|
+
* @return {!Object}
|
|
28395
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
28396
|
+
*/
|
|
28397
|
+
proto.user.UpdateRoleRequest.toObject = function(includeInstance, msg) {
|
|
28398
|
+
var f, obj = {
|
|
28399
|
+
id: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
28400
|
+
title: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
28401
|
+
description: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
28402
|
+
};
|
|
28403
|
+
|
|
28404
|
+
if (includeInstance) {
|
|
28405
|
+
obj.$jspbMessageInstance = msg;
|
|
28406
|
+
}
|
|
28407
|
+
return obj;
|
|
28408
|
+
};
|
|
28409
|
+
}
|
|
28410
|
+
|
|
28411
|
+
|
|
28412
|
+
/**
|
|
28413
|
+
* Deserializes binary data (in protobuf wire format).
|
|
28414
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
28415
|
+
* @return {!proto.user.UpdateRoleRequest}
|
|
28416
|
+
*/
|
|
28417
|
+
proto.user.UpdateRoleRequest.deserializeBinary = function(bytes) {
|
|
28418
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
28419
|
+
var msg = new proto.user.UpdateRoleRequest;
|
|
28420
|
+
return proto.user.UpdateRoleRequest.deserializeBinaryFromReader(msg, reader);
|
|
28421
|
+
};
|
|
28422
|
+
|
|
28423
|
+
|
|
28424
|
+
/**
|
|
28425
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
28426
|
+
* given reader into the given message object.
|
|
28427
|
+
* @param {!proto.user.UpdateRoleRequest} msg The message object to deserialize into.
|
|
28428
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
28429
|
+
* @return {!proto.user.UpdateRoleRequest}
|
|
28430
|
+
*/
|
|
28431
|
+
proto.user.UpdateRoleRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
28432
|
+
while (reader.nextField()) {
|
|
28433
|
+
if (reader.isEndGroup()) {
|
|
28434
|
+
break;
|
|
28435
|
+
}
|
|
28436
|
+
var field = reader.getFieldNumber();
|
|
28437
|
+
switch (field) {
|
|
28438
|
+
case 1:
|
|
28439
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
28440
|
+
msg.setId(value);
|
|
28441
|
+
break;
|
|
28442
|
+
case 2:
|
|
28443
|
+
var value = /** @type {string} */ (reader.readString());
|
|
28444
|
+
msg.setTitle(value);
|
|
28445
|
+
break;
|
|
28446
|
+
case 3:
|
|
28447
|
+
var value = /** @type {string} */ (reader.readString());
|
|
28448
|
+
msg.setDescription(value);
|
|
28449
|
+
break;
|
|
28450
|
+
default:
|
|
28451
|
+
reader.skipField();
|
|
28452
|
+
break;
|
|
28453
|
+
}
|
|
28454
|
+
}
|
|
28455
|
+
return msg;
|
|
28456
|
+
};
|
|
28457
|
+
|
|
28458
|
+
|
|
28459
|
+
/**
|
|
28460
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
28461
|
+
* @return {!Uint8Array}
|
|
28462
|
+
*/
|
|
28463
|
+
proto.user.UpdateRoleRequest.prototype.serializeBinary = function() {
|
|
28464
|
+
var writer = new jspb.BinaryWriter();
|
|
28465
|
+
proto.user.UpdateRoleRequest.serializeBinaryToWriter(this, writer);
|
|
28466
|
+
return writer.getResultBuffer();
|
|
28467
|
+
};
|
|
28468
|
+
|
|
28469
|
+
|
|
28470
|
+
/**
|
|
28471
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
28472
|
+
* format), writing to the given BinaryWriter.
|
|
28473
|
+
* @param {!proto.user.UpdateRoleRequest} message
|
|
28474
|
+
* @param {!jspb.BinaryWriter} writer
|
|
28475
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
28476
|
+
*/
|
|
28477
|
+
proto.user.UpdateRoleRequest.serializeBinaryToWriter = function(message, writer) {
|
|
28478
|
+
var f = undefined;
|
|
28479
|
+
f = message.getId();
|
|
28480
|
+
if (f !== 0) {
|
|
28481
|
+
writer.writeInt32(
|
|
28482
|
+
1,
|
|
28483
|
+
f
|
|
28484
|
+
);
|
|
28485
|
+
}
|
|
28486
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
28487
|
+
if (f != null) {
|
|
28488
|
+
writer.writeString(
|
|
28489
|
+
2,
|
|
28490
|
+
f
|
|
28491
|
+
);
|
|
28492
|
+
}
|
|
28493
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
28494
|
+
if (f != null) {
|
|
28495
|
+
writer.writeString(
|
|
28496
|
+
3,
|
|
28497
|
+
f
|
|
28498
|
+
);
|
|
28499
|
+
}
|
|
28500
|
+
};
|
|
28501
|
+
|
|
28502
|
+
|
|
28503
|
+
/**
|
|
28504
|
+
* optional int32 id = 1;
|
|
28505
|
+
* @return {number}
|
|
28506
|
+
*/
|
|
28507
|
+
proto.user.UpdateRoleRequest.prototype.getId = function() {
|
|
28508
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
28509
|
+
};
|
|
28510
|
+
|
|
28511
|
+
|
|
28512
|
+
/**
|
|
28513
|
+
* @param {number} value
|
|
28514
|
+
* @return {!proto.user.UpdateRoleRequest} returns this
|
|
28515
|
+
*/
|
|
28516
|
+
proto.user.UpdateRoleRequest.prototype.setId = function(value) {
|
|
28517
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
28518
|
+
};
|
|
28519
|
+
|
|
28520
|
+
|
|
28521
|
+
/**
|
|
28522
|
+
* optional string title = 2;
|
|
28523
|
+
* @return {string}
|
|
28524
|
+
*/
|
|
28525
|
+
proto.user.UpdateRoleRequest.prototype.getTitle = function() {
|
|
28526
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
28527
|
+
};
|
|
28528
|
+
|
|
28529
|
+
|
|
28530
|
+
/**
|
|
28531
|
+
* @param {string} value
|
|
28532
|
+
* @return {!proto.user.UpdateRoleRequest} returns this
|
|
28533
|
+
*/
|
|
28534
|
+
proto.user.UpdateRoleRequest.prototype.setTitle = function(value) {
|
|
28535
|
+
return jspb.Message.setField(this, 2, value);
|
|
28536
|
+
};
|
|
28537
|
+
|
|
28538
|
+
|
|
28539
|
+
/**
|
|
28540
|
+
* Clears the field making it undefined.
|
|
28541
|
+
* @return {!proto.user.UpdateRoleRequest} returns this
|
|
28542
|
+
*/
|
|
28543
|
+
proto.user.UpdateRoleRequest.prototype.clearTitle = function() {
|
|
28544
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
28545
|
+
};
|
|
28546
|
+
|
|
28547
|
+
|
|
28548
|
+
/**
|
|
28549
|
+
* Returns whether this field is set.
|
|
28550
|
+
* @return {boolean}
|
|
28551
|
+
*/
|
|
28552
|
+
proto.user.UpdateRoleRequest.prototype.hasTitle = function() {
|
|
28553
|
+
return jspb.Message.getField(this, 2) != null;
|
|
28554
|
+
};
|
|
28555
|
+
|
|
28556
|
+
|
|
28557
|
+
/**
|
|
28558
|
+
* optional string description = 3;
|
|
28559
|
+
* @return {string}
|
|
28560
|
+
*/
|
|
28561
|
+
proto.user.UpdateRoleRequest.prototype.getDescription = function() {
|
|
28562
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
28563
|
+
};
|
|
28564
|
+
|
|
28565
|
+
|
|
28566
|
+
/**
|
|
28567
|
+
* @param {string} value
|
|
28568
|
+
* @return {!proto.user.UpdateRoleRequest} returns this
|
|
28569
|
+
*/
|
|
28570
|
+
proto.user.UpdateRoleRequest.prototype.setDescription = function(value) {
|
|
28571
|
+
return jspb.Message.setField(this, 3, value);
|
|
28572
|
+
};
|
|
28573
|
+
|
|
28574
|
+
|
|
28575
|
+
/**
|
|
28576
|
+
* Clears the field making it undefined.
|
|
28577
|
+
* @return {!proto.user.UpdateRoleRequest} returns this
|
|
28578
|
+
*/
|
|
28579
|
+
proto.user.UpdateRoleRequest.prototype.clearDescription = function() {
|
|
28580
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
28581
|
+
};
|
|
28582
|
+
|
|
28583
|
+
|
|
28584
|
+
/**
|
|
28585
|
+
* Returns whether this field is set.
|
|
28586
|
+
* @return {boolean}
|
|
28587
|
+
*/
|
|
28588
|
+
proto.user.UpdateRoleRequest.prototype.hasDescription = function() {
|
|
28589
|
+
return jspb.Message.getField(this, 3) != null;
|
|
28590
|
+
};
|
|
28591
|
+
|
|
28592
|
+
|
|
28593
|
+
|
|
28146
28594
|
/**
|
|
28147
28595
|
* List of repeated fields within this message type.
|
|
28148
28596
|
* @private {!Array<number>}
|