protobuf-platform 1.1.67 → 1.1.69
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/cashback/cashback.proto +3 -2
- package/cashback/cashback_pb.js +59 -11
- package/loyalty/loyalty.proto +3 -2
- package/loyalty/loyalty_pb.js +62 -14
- package/package.json +1 -1
package/cashback/cashback.proto
CHANGED
@@ -26,8 +26,9 @@ message GetFileRequest { string file_name = 1; string instance_type = 2; }
|
|
26
26
|
message PaginationRequest {
|
27
27
|
int32 limit = 1;
|
28
28
|
int32 offset = 2;
|
29
|
-
optional
|
30
|
-
optional
|
29
|
+
optional string order = 3;
|
30
|
+
optional UserSearchRequest user_search_params = 4;
|
31
|
+
optional SearchRequest additional_search_params = 5;
|
31
32
|
}
|
32
33
|
message UserSearchRequest {
|
33
34
|
optional int32 user_id = 1;
|
package/cashback/cashback_pb.js
CHANGED
@@ -1144,6 +1144,7 @@ proto.cashback.PaginationRequest.toObject = function(includeInstance, msg) {
|
|
1144
1144
|
var f, obj = {
|
1145
1145
|
limit: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
1146
1146
|
offset: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
1147
|
+
order: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
1147
1148
|
userSearchParams: (f = msg.getUserSearchParams()) && proto.cashback.UserSearchRequest.toObject(includeInstance, f),
|
1148
1149
|
additionalSearchParams: (f = msg.getAdditionalSearchParams()) && proto.cashback.SearchRequest.toObject(includeInstance, f)
|
1149
1150
|
};
|
@@ -1191,11 +1192,15 @@ proto.cashback.PaginationRequest.deserializeBinaryFromReader = function(msg, rea
|
|
1191
1192
|
msg.setOffset(value);
|
1192
1193
|
break;
|
1193
1194
|
case 3:
|
1195
|
+
var value = /** @type {string} */ (reader.readString());
|
1196
|
+
msg.setOrder(value);
|
1197
|
+
break;
|
1198
|
+
case 4:
|
1194
1199
|
var value = new proto.cashback.UserSearchRequest;
|
1195
1200
|
reader.readMessage(value,proto.cashback.UserSearchRequest.deserializeBinaryFromReader);
|
1196
1201
|
msg.setUserSearchParams(value);
|
1197
1202
|
break;
|
1198
|
-
case
|
1203
|
+
case 5:
|
1199
1204
|
var value = new proto.cashback.SearchRequest;
|
1200
1205
|
reader.readMessage(value,proto.cashback.SearchRequest.deserializeBinaryFromReader);
|
1201
1206
|
msg.setAdditionalSearchParams(value);
|
@@ -1243,10 +1248,17 @@ proto.cashback.PaginationRequest.serializeBinaryToWriter = function(message, wri
|
|
1243
1248
|
f
|
1244
1249
|
);
|
1245
1250
|
}
|
1251
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
1252
|
+
if (f != null) {
|
1253
|
+
writer.writeString(
|
1254
|
+
3,
|
1255
|
+
f
|
1256
|
+
);
|
1257
|
+
}
|
1246
1258
|
f = message.getUserSearchParams();
|
1247
1259
|
if (f != null) {
|
1248
1260
|
writer.writeMessage(
|
1249
|
-
|
1261
|
+
4,
|
1250
1262
|
f,
|
1251
1263
|
proto.cashback.UserSearchRequest.serializeBinaryToWriter
|
1252
1264
|
);
|
@@ -1254,7 +1266,7 @@ proto.cashback.PaginationRequest.serializeBinaryToWriter = function(message, wri
|
|
1254
1266
|
f = message.getAdditionalSearchParams();
|
1255
1267
|
if (f != null) {
|
1256
1268
|
writer.writeMessage(
|
1257
|
-
|
1269
|
+
5,
|
1258
1270
|
f,
|
1259
1271
|
proto.cashback.SearchRequest.serializeBinaryToWriter
|
1260
1272
|
);
|
@@ -1299,12 +1311,48 @@ proto.cashback.PaginationRequest.prototype.setOffset = function(value) {
|
|
1299
1311
|
|
1300
1312
|
|
1301
1313
|
/**
|
1302
|
-
* optional
|
1314
|
+
* optional string order = 3;
|
1315
|
+
* @return {string}
|
1316
|
+
*/
|
1317
|
+
proto.cashback.PaginationRequest.prototype.getOrder = function() {
|
1318
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
1319
|
+
};
|
1320
|
+
|
1321
|
+
|
1322
|
+
/**
|
1323
|
+
* @param {string} value
|
1324
|
+
* @return {!proto.cashback.PaginationRequest} returns this
|
1325
|
+
*/
|
1326
|
+
proto.cashback.PaginationRequest.prototype.setOrder = function(value) {
|
1327
|
+
return jspb.Message.setField(this, 3, value);
|
1328
|
+
};
|
1329
|
+
|
1330
|
+
|
1331
|
+
/**
|
1332
|
+
* Clears the field making it undefined.
|
1333
|
+
* @return {!proto.cashback.PaginationRequest} returns this
|
1334
|
+
*/
|
1335
|
+
proto.cashback.PaginationRequest.prototype.clearOrder = function() {
|
1336
|
+
return jspb.Message.setField(this, 3, undefined);
|
1337
|
+
};
|
1338
|
+
|
1339
|
+
|
1340
|
+
/**
|
1341
|
+
* Returns whether this field is set.
|
1342
|
+
* @return {boolean}
|
1343
|
+
*/
|
1344
|
+
proto.cashback.PaginationRequest.prototype.hasOrder = function() {
|
1345
|
+
return jspb.Message.getField(this, 3) != null;
|
1346
|
+
};
|
1347
|
+
|
1348
|
+
|
1349
|
+
/**
|
1350
|
+
* optional UserSearchRequest user_search_params = 4;
|
1303
1351
|
* @return {?proto.cashback.UserSearchRequest}
|
1304
1352
|
*/
|
1305
1353
|
proto.cashback.PaginationRequest.prototype.getUserSearchParams = function() {
|
1306
1354
|
return /** @type{?proto.cashback.UserSearchRequest} */ (
|
1307
|
-
jspb.Message.getWrapperField(this, proto.cashback.UserSearchRequest,
|
1355
|
+
jspb.Message.getWrapperField(this, proto.cashback.UserSearchRequest, 4));
|
1308
1356
|
};
|
1309
1357
|
|
1310
1358
|
|
@@ -1313,7 +1361,7 @@ proto.cashback.PaginationRequest.prototype.getUserSearchParams = function() {
|
|
1313
1361
|
* @return {!proto.cashback.PaginationRequest} returns this
|
1314
1362
|
*/
|
1315
1363
|
proto.cashback.PaginationRequest.prototype.setUserSearchParams = function(value) {
|
1316
|
-
return jspb.Message.setWrapperField(this,
|
1364
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
1317
1365
|
};
|
1318
1366
|
|
1319
1367
|
|
@@ -1331,17 +1379,17 @@ proto.cashback.PaginationRequest.prototype.clearUserSearchParams = function() {
|
|
1331
1379
|
* @return {boolean}
|
1332
1380
|
*/
|
1333
1381
|
proto.cashback.PaginationRequest.prototype.hasUserSearchParams = function() {
|
1334
|
-
return jspb.Message.getField(this,
|
1382
|
+
return jspb.Message.getField(this, 4) != null;
|
1335
1383
|
};
|
1336
1384
|
|
1337
1385
|
|
1338
1386
|
/**
|
1339
|
-
* optional SearchRequest additional_search_params =
|
1387
|
+
* optional SearchRequest additional_search_params = 5;
|
1340
1388
|
* @return {?proto.cashback.SearchRequest}
|
1341
1389
|
*/
|
1342
1390
|
proto.cashback.PaginationRequest.prototype.getAdditionalSearchParams = function() {
|
1343
1391
|
return /** @type{?proto.cashback.SearchRequest} */ (
|
1344
|
-
jspb.Message.getWrapperField(this, proto.cashback.SearchRequest,
|
1392
|
+
jspb.Message.getWrapperField(this, proto.cashback.SearchRequest, 5));
|
1345
1393
|
};
|
1346
1394
|
|
1347
1395
|
|
@@ -1350,7 +1398,7 @@ proto.cashback.PaginationRequest.prototype.getAdditionalSearchParams = function(
|
|
1350
1398
|
* @return {!proto.cashback.PaginationRequest} returns this
|
1351
1399
|
*/
|
1352
1400
|
proto.cashback.PaginationRequest.prototype.setAdditionalSearchParams = function(value) {
|
1353
|
-
return jspb.Message.setWrapperField(this,
|
1401
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
1354
1402
|
};
|
1355
1403
|
|
1356
1404
|
|
@@ -1368,7 +1416,7 @@ proto.cashback.PaginationRequest.prototype.clearAdditionalSearchParams = functio
|
|
1368
1416
|
* @return {boolean}
|
1369
1417
|
*/
|
1370
1418
|
proto.cashback.PaginationRequest.prototype.hasAdditionalSearchParams = function() {
|
1371
|
-
return jspb.Message.getField(this,
|
1419
|
+
return jspb.Message.getField(this, 5) != null;
|
1372
1420
|
};
|
1373
1421
|
|
1374
1422
|
|
package/loyalty/loyalty.proto
CHANGED
@@ -27,8 +27,9 @@ message PongResponse { string pong = 1; }
|
|
27
27
|
message PaginationRequest {
|
28
28
|
int32 limit = 1;
|
29
29
|
int32 offset = 2;
|
30
|
-
optional
|
31
|
-
optional
|
30
|
+
optional string order = 3;
|
31
|
+
optional LoyaltySearchRequest loyalty_search_params = 4;
|
32
|
+
optional string type = 5;
|
32
33
|
}
|
33
34
|
message LoyaltySearchRequest {
|
34
35
|
optional int32 loyalty_id = 1;
|
package/loyalty/loyalty_pb.js
CHANGED
@@ -888,8 +888,9 @@ proto.loyalty.PaginationRequest.toObject = function(includeInstance, msg) {
|
|
888
888
|
var f, obj = {
|
889
889
|
limit: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
890
890
|
offset: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
891
|
+
order: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
891
892
|
loyaltySearchParams: (f = msg.getLoyaltySearchParams()) && proto.loyalty.LoyaltySearchRequest.toObject(includeInstance, f),
|
892
|
-
type: jspb.Message.getFieldWithDefault(msg,
|
893
|
+
type: jspb.Message.getFieldWithDefault(msg, 5, "")
|
893
894
|
};
|
894
895
|
|
895
896
|
if (includeInstance) {
|
@@ -935,11 +936,15 @@ proto.loyalty.PaginationRequest.deserializeBinaryFromReader = function(msg, read
|
|
935
936
|
msg.setOffset(value);
|
936
937
|
break;
|
937
938
|
case 3:
|
939
|
+
var value = /** @type {string} */ (reader.readString());
|
940
|
+
msg.setOrder(value);
|
941
|
+
break;
|
942
|
+
case 4:
|
938
943
|
var value = new proto.loyalty.LoyaltySearchRequest;
|
939
944
|
reader.readMessage(value,proto.loyalty.LoyaltySearchRequest.deserializeBinaryFromReader);
|
940
945
|
msg.setLoyaltySearchParams(value);
|
941
946
|
break;
|
942
|
-
case
|
947
|
+
case 5:
|
943
948
|
var value = /** @type {string} */ (reader.readString());
|
944
949
|
msg.setType(value);
|
945
950
|
break;
|
@@ -986,18 +991,25 @@ proto.loyalty.PaginationRequest.serializeBinaryToWriter = function(message, writ
|
|
986
991
|
f
|
987
992
|
);
|
988
993
|
}
|
994
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
995
|
+
if (f != null) {
|
996
|
+
writer.writeString(
|
997
|
+
3,
|
998
|
+
f
|
999
|
+
);
|
1000
|
+
}
|
989
1001
|
f = message.getLoyaltySearchParams();
|
990
1002
|
if (f != null) {
|
991
1003
|
writer.writeMessage(
|
992
|
-
|
1004
|
+
4,
|
993
1005
|
f,
|
994
1006
|
proto.loyalty.LoyaltySearchRequest.serializeBinaryToWriter
|
995
1007
|
);
|
996
1008
|
}
|
997
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
1009
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 5));
|
998
1010
|
if (f != null) {
|
999
1011
|
writer.writeString(
|
1000
|
-
|
1012
|
+
5,
|
1001
1013
|
f
|
1002
1014
|
);
|
1003
1015
|
}
|
@@ -1041,12 +1053,48 @@ proto.loyalty.PaginationRequest.prototype.setOffset = function(value) {
|
|
1041
1053
|
|
1042
1054
|
|
1043
1055
|
/**
|
1044
|
-
* optional
|
1056
|
+
* optional string order = 3;
|
1057
|
+
* @return {string}
|
1058
|
+
*/
|
1059
|
+
proto.loyalty.PaginationRequest.prototype.getOrder = function() {
|
1060
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
1061
|
+
};
|
1062
|
+
|
1063
|
+
|
1064
|
+
/**
|
1065
|
+
* @param {string} value
|
1066
|
+
* @return {!proto.loyalty.PaginationRequest} returns this
|
1067
|
+
*/
|
1068
|
+
proto.loyalty.PaginationRequest.prototype.setOrder = function(value) {
|
1069
|
+
return jspb.Message.setField(this, 3, value);
|
1070
|
+
};
|
1071
|
+
|
1072
|
+
|
1073
|
+
/**
|
1074
|
+
* Clears the field making it undefined.
|
1075
|
+
* @return {!proto.loyalty.PaginationRequest} returns this
|
1076
|
+
*/
|
1077
|
+
proto.loyalty.PaginationRequest.prototype.clearOrder = function() {
|
1078
|
+
return jspb.Message.setField(this, 3, undefined);
|
1079
|
+
};
|
1080
|
+
|
1081
|
+
|
1082
|
+
/**
|
1083
|
+
* Returns whether this field is set.
|
1084
|
+
* @return {boolean}
|
1085
|
+
*/
|
1086
|
+
proto.loyalty.PaginationRequest.prototype.hasOrder = function() {
|
1087
|
+
return jspb.Message.getField(this, 3) != null;
|
1088
|
+
};
|
1089
|
+
|
1090
|
+
|
1091
|
+
/**
|
1092
|
+
* optional LoyaltySearchRequest loyalty_search_params = 4;
|
1045
1093
|
* @return {?proto.loyalty.LoyaltySearchRequest}
|
1046
1094
|
*/
|
1047
1095
|
proto.loyalty.PaginationRequest.prototype.getLoyaltySearchParams = function() {
|
1048
1096
|
return /** @type{?proto.loyalty.LoyaltySearchRequest} */ (
|
1049
|
-
jspb.Message.getWrapperField(this, proto.loyalty.LoyaltySearchRequest,
|
1097
|
+
jspb.Message.getWrapperField(this, proto.loyalty.LoyaltySearchRequest, 4));
|
1050
1098
|
};
|
1051
1099
|
|
1052
1100
|
|
@@ -1055,7 +1103,7 @@ proto.loyalty.PaginationRequest.prototype.getLoyaltySearchParams = function() {
|
|
1055
1103
|
* @return {!proto.loyalty.PaginationRequest} returns this
|
1056
1104
|
*/
|
1057
1105
|
proto.loyalty.PaginationRequest.prototype.setLoyaltySearchParams = function(value) {
|
1058
|
-
return jspb.Message.setWrapperField(this,
|
1106
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
1059
1107
|
};
|
1060
1108
|
|
1061
1109
|
|
@@ -1073,16 +1121,16 @@ proto.loyalty.PaginationRequest.prototype.clearLoyaltySearchParams = function()
|
|
1073
1121
|
* @return {boolean}
|
1074
1122
|
*/
|
1075
1123
|
proto.loyalty.PaginationRequest.prototype.hasLoyaltySearchParams = function() {
|
1076
|
-
return jspb.Message.getField(this,
|
1124
|
+
return jspb.Message.getField(this, 4) != null;
|
1077
1125
|
};
|
1078
1126
|
|
1079
1127
|
|
1080
1128
|
/**
|
1081
|
-
* optional string type =
|
1129
|
+
* optional string type = 5;
|
1082
1130
|
* @return {string}
|
1083
1131
|
*/
|
1084
1132
|
proto.loyalty.PaginationRequest.prototype.getType = function() {
|
1085
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
1133
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
1086
1134
|
};
|
1087
1135
|
|
1088
1136
|
|
@@ -1091,7 +1139,7 @@ proto.loyalty.PaginationRequest.prototype.getType = function() {
|
|
1091
1139
|
* @return {!proto.loyalty.PaginationRequest} returns this
|
1092
1140
|
*/
|
1093
1141
|
proto.loyalty.PaginationRequest.prototype.setType = function(value) {
|
1094
|
-
return jspb.Message.setField(this,
|
1142
|
+
return jspb.Message.setField(this, 5, value);
|
1095
1143
|
};
|
1096
1144
|
|
1097
1145
|
|
@@ -1100,7 +1148,7 @@ proto.loyalty.PaginationRequest.prototype.setType = function(value) {
|
|
1100
1148
|
* @return {!proto.loyalty.PaginationRequest} returns this
|
1101
1149
|
*/
|
1102
1150
|
proto.loyalty.PaginationRequest.prototype.clearType = function() {
|
1103
|
-
return jspb.Message.setField(this,
|
1151
|
+
return jspb.Message.setField(this, 5, undefined);
|
1104
1152
|
};
|
1105
1153
|
|
1106
1154
|
|
@@ -1109,7 +1157,7 @@ proto.loyalty.PaginationRequest.prototype.clearType = function() {
|
|
1109
1157
|
* @return {boolean}
|
1110
1158
|
*/
|
1111
1159
|
proto.loyalty.PaginationRequest.prototype.hasType = function() {
|
1112
|
-
return jspb.Message.getField(this,
|
1160
|
+
return jspb.Message.getField(this, 5) != null;
|
1113
1161
|
};
|
1114
1162
|
|
1115
1163
|
|