protobuf-platform 1.0.78 → 1.0.79
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 +4 -0
- package/user/user_pb.js +194 -2
package/package.json
CHANGED
package/user/user.proto
CHANGED
@@ -47,6 +47,7 @@ message LoginRequest {
|
|
47
47
|
}
|
48
48
|
message UserDataRequest {
|
49
49
|
string public_id = 1;
|
50
|
+
optional string requested_area = 2;
|
50
51
|
}
|
51
52
|
message UserDataResponse {
|
52
53
|
int32 id = 1;
|
@@ -60,6 +61,9 @@ message UserDataResponse {
|
|
60
61
|
optional string locale = 9;
|
61
62
|
optional string permissions = 10;
|
62
63
|
optional string role_name = 11;
|
64
|
+
optional float balance_real = 12;
|
65
|
+
optional float balance_bonus = 13;
|
66
|
+
optional string balance_type = 14;
|
63
67
|
}
|
64
68
|
//Permissions
|
65
69
|
message RolePermissionRequest {
|
package/user/user_pb.js
CHANGED
@@ -1749,7 +1749,8 @@ proto.user.UserDataRequest.prototype.toObject = function(opt_includeInstance) {
|
|
1749
1749
|
*/
|
1750
1750
|
proto.user.UserDataRequest.toObject = function(includeInstance, msg) {
|
1751
1751
|
var f, obj = {
|
1752
|
-
publicId: jspb.Message.getFieldWithDefault(msg, 1, "")
|
1752
|
+
publicId: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
1753
|
+
requestedArea: jspb.Message.getFieldWithDefault(msg, 2, "")
|
1753
1754
|
};
|
1754
1755
|
|
1755
1756
|
if (includeInstance) {
|
@@ -1790,6 +1791,10 @@ proto.user.UserDataRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
1790
1791
|
var value = /** @type {string} */ (reader.readString());
|
1791
1792
|
msg.setPublicId(value);
|
1792
1793
|
break;
|
1794
|
+
case 2:
|
1795
|
+
var value = /** @type {string} */ (reader.readString());
|
1796
|
+
msg.setRequestedArea(value);
|
1797
|
+
break;
|
1793
1798
|
default:
|
1794
1799
|
reader.skipField();
|
1795
1800
|
break;
|
@@ -1826,6 +1831,13 @@ proto.user.UserDataRequest.serializeBinaryToWriter = function(message, writer) {
|
|
1826
1831
|
f
|
1827
1832
|
);
|
1828
1833
|
}
|
1834
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
1835
|
+
if (f != null) {
|
1836
|
+
writer.writeString(
|
1837
|
+
2,
|
1838
|
+
f
|
1839
|
+
);
|
1840
|
+
}
|
1829
1841
|
};
|
1830
1842
|
|
1831
1843
|
|
@@ -1847,6 +1859,42 @@ proto.user.UserDataRequest.prototype.setPublicId = function(value) {
|
|
1847
1859
|
};
|
1848
1860
|
|
1849
1861
|
|
1862
|
+
/**
|
1863
|
+
* optional string requested_area = 2;
|
1864
|
+
* @return {string}
|
1865
|
+
*/
|
1866
|
+
proto.user.UserDataRequest.prototype.getRequestedArea = function() {
|
1867
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
1868
|
+
};
|
1869
|
+
|
1870
|
+
|
1871
|
+
/**
|
1872
|
+
* @param {string} value
|
1873
|
+
* @return {!proto.user.UserDataRequest} returns this
|
1874
|
+
*/
|
1875
|
+
proto.user.UserDataRequest.prototype.setRequestedArea = function(value) {
|
1876
|
+
return jspb.Message.setField(this, 2, value);
|
1877
|
+
};
|
1878
|
+
|
1879
|
+
|
1880
|
+
/**
|
1881
|
+
* Clears the field making it undefined.
|
1882
|
+
* @return {!proto.user.UserDataRequest} returns this
|
1883
|
+
*/
|
1884
|
+
proto.user.UserDataRequest.prototype.clearRequestedArea = function() {
|
1885
|
+
return jspb.Message.setField(this, 2, undefined);
|
1886
|
+
};
|
1887
|
+
|
1888
|
+
|
1889
|
+
/**
|
1890
|
+
* Returns whether this field is set.
|
1891
|
+
* @return {boolean}
|
1892
|
+
*/
|
1893
|
+
proto.user.UserDataRequest.prototype.hasRequestedArea = function() {
|
1894
|
+
return jspb.Message.getField(this, 2) != null;
|
1895
|
+
};
|
1896
|
+
|
1897
|
+
|
1850
1898
|
|
1851
1899
|
|
1852
1900
|
|
@@ -1889,7 +1937,10 @@ proto.user.UserDataResponse.toObject = function(includeInstance, msg) {
|
|
1889
1937
|
birthday: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
1890
1938
|
locale: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
1891
1939
|
permissions: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
1892
|
-
roleName: jspb.Message.getFieldWithDefault(msg, 11, "")
|
1940
|
+
roleName: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
1941
|
+
balanceReal: jspb.Message.getFloatingPointFieldWithDefault(msg, 12, 0.0),
|
1942
|
+
balanceBonus: jspb.Message.getFloatingPointFieldWithDefault(msg, 13, 0.0),
|
1943
|
+
balanceType: jspb.Message.getFieldWithDefault(msg, 14, "")
|
1893
1944
|
};
|
1894
1945
|
|
1895
1946
|
if (includeInstance) {
|
@@ -1970,6 +2021,18 @@ proto.user.UserDataResponse.deserializeBinaryFromReader = function(msg, reader)
|
|
1970
2021
|
var value = /** @type {string} */ (reader.readString());
|
1971
2022
|
msg.setRoleName(value);
|
1972
2023
|
break;
|
2024
|
+
case 12:
|
2025
|
+
var value = /** @type {number} */ (reader.readFloat());
|
2026
|
+
msg.setBalanceReal(value);
|
2027
|
+
break;
|
2028
|
+
case 13:
|
2029
|
+
var value = /** @type {number} */ (reader.readFloat());
|
2030
|
+
msg.setBalanceBonus(value);
|
2031
|
+
break;
|
2032
|
+
case 14:
|
2033
|
+
var value = /** @type {string} */ (reader.readString());
|
2034
|
+
msg.setBalanceType(value);
|
2035
|
+
break;
|
1973
2036
|
default:
|
1974
2037
|
reader.skipField();
|
1975
2038
|
break;
|
@@ -2076,6 +2139,27 @@ proto.user.UserDataResponse.serializeBinaryToWriter = function(message, writer)
|
|
2076
2139
|
f
|
2077
2140
|
);
|
2078
2141
|
}
|
2142
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
2143
|
+
if (f != null) {
|
2144
|
+
writer.writeFloat(
|
2145
|
+
12,
|
2146
|
+
f
|
2147
|
+
);
|
2148
|
+
}
|
2149
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 13));
|
2150
|
+
if (f != null) {
|
2151
|
+
writer.writeFloat(
|
2152
|
+
13,
|
2153
|
+
f
|
2154
|
+
);
|
2155
|
+
}
|
2156
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
2157
|
+
if (f != null) {
|
2158
|
+
writer.writeString(
|
2159
|
+
14,
|
2160
|
+
f
|
2161
|
+
);
|
2162
|
+
}
|
2079
2163
|
};
|
2080
2164
|
|
2081
2165
|
|
@@ -2421,6 +2505,114 @@ proto.user.UserDataResponse.prototype.hasRoleName = function() {
|
|
2421
2505
|
};
|
2422
2506
|
|
2423
2507
|
|
2508
|
+
/**
|
2509
|
+
* optional float balance_real = 12;
|
2510
|
+
* @return {number}
|
2511
|
+
*/
|
2512
|
+
proto.user.UserDataResponse.prototype.getBalanceReal = function() {
|
2513
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 12, 0.0));
|
2514
|
+
};
|
2515
|
+
|
2516
|
+
|
2517
|
+
/**
|
2518
|
+
* @param {number} value
|
2519
|
+
* @return {!proto.user.UserDataResponse} returns this
|
2520
|
+
*/
|
2521
|
+
proto.user.UserDataResponse.prototype.setBalanceReal = function(value) {
|
2522
|
+
return jspb.Message.setField(this, 12, value);
|
2523
|
+
};
|
2524
|
+
|
2525
|
+
|
2526
|
+
/**
|
2527
|
+
* Clears the field making it undefined.
|
2528
|
+
* @return {!proto.user.UserDataResponse} returns this
|
2529
|
+
*/
|
2530
|
+
proto.user.UserDataResponse.prototype.clearBalanceReal = function() {
|
2531
|
+
return jspb.Message.setField(this, 12, undefined);
|
2532
|
+
};
|
2533
|
+
|
2534
|
+
|
2535
|
+
/**
|
2536
|
+
* Returns whether this field is set.
|
2537
|
+
* @return {boolean}
|
2538
|
+
*/
|
2539
|
+
proto.user.UserDataResponse.prototype.hasBalanceReal = function() {
|
2540
|
+
return jspb.Message.getField(this, 12) != null;
|
2541
|
+
};
|
2542
|
+
|
2543
|
+
|
2544
|
+
/**
|
2545
|
+
* optional float balance_bonus = 13;
|
2546
|
+
* @return {number}
|
2547
|
+
*/
|
2548
|
+
proto.user.UserDataResponse.prototype.getBalanceBonus = function() {
|
2549
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 13, 0.0));
|
2550
|
+
};
|
2551
|
+
|
2552
|
+
|
2553
|
+
/**
|
2554
|
+
* @param {number} value
|
2555
|
+
* @return {!proto.user.UserDataResponse} returns this
|
2556
|
+
*/
|
2557
|
+
proto.user.UserDataResponse.prototype.setBalanceBonus = function(value) {
|
2558
|
+
return jspb.Message.setField(this, 13, value);
|
2559
|
+
};
|
2560
|
+
|
2561
|
+
|
2562
|
+
/**
|
2563
|
+
* Clears the field making it undefined.
|
2564
|
+
* @return {!proto.user.UserDataResponse} returns this
|
2565
|
+
*/
|
2566
|
+
proto.user.UserDataResponse.prototype.clearBalanceBonus = function() {
|
2567
|
+
return jspb.Message.setField(this, 13, undefined);
|
2568
|
+
};
|
2569
|
+
|
2570
|
+
|
2571
|
+
/**
|
2572
|
+
* Returns whether this field is set.
|
2573
|
+
* @return {boolean}
|
2574
|
+
*/
|
2575
|
+
proto.user.UserDataResponse.prototype.hasBalanceBonus = function() {
|
2576
|
+
return jspb.Message.getField(this, 13) != null;
|
2577
|
+
};
|
2578
|
+
|
2579
|
+
|
2580
|
+
/**
|
2581
|
+
* optional string balance_type = 14;
|
2582
|
+
* @return {string}
|
2583
|
+
*/
|
2584
|
+
proto.user.UserDataResponse.prototype.getBalanceType = function() {
|
2585
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
2586
|
+
};
|
2587
|
+
|
2588
|
+
|
2589
|
+
/**
|
2590
|
+
* @param {string} value
|
2591
|
+
* @return {!proto.user.UserDataResponse} returns this
|
2592
|
+
*/
|
2593
|
+
proto.user.UserDataResponse.prototype.setBalanceType = function(value) {
|
2594
|
+
return jspb.Message.setField(this, 14, value);
|
2595
|
+
};
|
2596
|
+
|
2597
|
+
|
2598
|
+
/**
|
2599
|
+
* Clears the field making it undefined.
|
2600
|
+
* @return {!proto.user.UserDataResponse} returns this
|
2601
|
+
*/
|
2602
|
+
proto.user.UserDataResponse.prototype.clearBalanceType = function() {
|
2603
|
+
return jspb.Message.setField(this, 14, undefined);
|
2604
|
+
};
|
2605
|
+
|
2606
|
+
|
2607
|
+
/**
|
2608
|
+
* Returns whether this field is set.
|
2609
|
+
* @return {boolean}
|
2610
|
+
*/
|
2611
|
+
proto.user.UserDataResponse.prototype.hasBalanceType = function() {
|
2612
|
+
return jspb.Message.getField(this, 14) != null;
|
2613
|
+
};
|
2614
|
+
|
2615
|
+
|
2424
2616
|
|
2425
2617
|
|
2426
2618
|
|