protobuf-platform 1.2.89 → 1.2.91
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/bonus/bonus.proto +2 -2
- package/bonus/bonus_pb.js +16 -16
- package/config/config.proto +18 -12
- package/config/config_pb.js +637 -208
- package/package.json +1 -1
package/bonus/bonus.proto
CHANGED
|
@@ -114,8 +114,8 @@ message BonusItemRequest {
|
|
|
114
114
|
optional int32 type_id = 7;
|
|
115
115
|
optional int32 wager_x = 8;
|
|
116
116
|
optional int32 payout_x = 9;
|
|
117
|
-
optional
|
|
118
|
-
optional
|
|
117
|
+
optional int32 is_real_wagering = 10;
|
|
118
|
+
optional int32 is_bonus_wagering = 11;
|
|
119
119
|
optional int32 repeat_count = 12;
|
|
120
120
|
optional int32 wager_games_list_id = 13;
|
|
121
121
|
optional string started_at = 14;
|
package/bonus/bonus_pb.js
CHANGED
|
@@ -4235,8 +4235,8 @@ proto.bonus.BonusItemRequest.toObject = function(includeInstance, msg) {
|
|
|
4235
4235
|
typeId: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
4236
4236
|
wagerX: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
|
4237
4237
|
payoutX: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
4238
|
-
isRealWagering: jspb.Message.
|
|
4239
|
-
isBonusWagering: jspb.Message.
|
|
4238
|
+
isRealWagering: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
|
4239
|
+
isBonusWagering: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
4240
4240
|
repeatCount: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
4241
4241
|
wagerGamesListId: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
4242
4242
|
startedAt: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
@@ -4319,11 +4319,11 @@ proto.bonus.BonusItemRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
4319
4319
|
msg.setPayoutX(value);
|
|
4320
4320
|
break;
|
|
4321
4321
|
case 10:
|
|
4322
|
-
var value = /** @type {
|
|
4322
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
4323
4323
|
msg.setIsRealWagering(value);
|
|
4324
4324
|
break;
|
|
4325
4325
|
case 11:
|
|
4326
|
-
var value = /** @type {
|
|
4326
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
4327
4327
|
msg.setIsBonusWagering(value);
|
|
4328
4328
|
break;
|
|
4329
4329
|
case 12:
|
|
@@ -4454,16 +4454,16 @@ proto.bonus.BonusItemRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
4454
4454
|
f
|
|
4455
4455
|
);
|
|
4456
4456
|
}
|
|
4457
|
-
f = /** @type {
|
|
4457
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 10));
|
|
4458
4458
|
if (f != null) {
|
|
4459
|
-
writer.
|
|
4459
|
+
writer.writeInt32(
|
|
4460
4460
|
10,
|
|
4461
4461
|
f
|
|
4462
4462
|
);
|
|
4463
4463
|
}
|
|
4464
|
-
f = /** @type {
|
|
4464
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 11));
|
|
4465
4465
|
if (f != null) {
|
|
4466
|
-
writer.
|
|
4466
|
+
writer.writeInt32(
|
|
4467
4467
|
11,
|
|
4468
4468
|
f
|
|
4469
4469
|
);
|
|
@@ -4859,16 +4859,16 @@ proto.bonus.BonusItemRequest.prototype.hasPayoutX = function() {
|
|
|
4859
4859
|
|
|
4860
4860
|
|
|
4861
4861
|
/**
|
|
4862
|
-
* optional
|
|
4863
|
-
* @return {
|
|
4862
|
+
* optional int32 is_real_wagering = 10;
|
|
4863
|
+
* @return {number}
|
|
4864
4864
|
*/
|
|
4865
4865
|
proto.bonus.BonusItemRequest.prototype.getIsRealWagering = function() {
|
|
4866
|
-
return /** @type {
|
|
4866
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
|
4867
4867
|
};
|
|
4868
4868
|
|
|
4869
4869
|
|
|
4870
4870
|
/**
|
|
4871
|
-
* @param {
|
|
4871
|
+
* @param {number} value
|
|
4872
4872
|
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
4873
4873
|
*/
|
|
4874
4874
|
proto.bonus.BonusItemRequest.prototype.setIsRealWagering = function(value) {
|
|
@@ -4895,16 +4895,16 @@ proto.bonus.BonusItemRequest.prototype.hasIsRealWagering = function() {
|
|
|
4895
4895
|
|
|
4896
4896
|
|
|
4897
4897
|
/**
|
|
4898
|
-
* optional
|
|
4899
|
-
* @return {
|
|
4898
|
+
* optional int32 is_bonus_wagering = 11;
|
|
4899
|
+
* @return {number}
|
|
4900
4900
|
*/
|
|
4901
4901
|
proto.bonus.BonusItemRequest.prototype.getIsBonusWagering = function() {
|
|
4902
|
-
return /** @type {
|
|
4902
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
|
|
4903
4903
|
};
|
|
4904
4904
|
|
|
4905
4905
|
|
|
4906
4906
|
/**
|
|
4907
|
-
* @param {
|
|
4907
|
+
* @param {number} value
|
|
4908
4908
|
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
4909
4909
|
*/
|
|
4910
4910
|
proto.bonus.BonusItemRequest.prototype.setIsBonusWagering = function(value) {
|
package/config/config.proto
CHANGED
|
@@ -37,8 +37,16 @@ message PaginationRequest {
|
|
|
37
37
|
int32 limit = 1;
|
|
38
38
|
int32 offset = 2;
|
|
39
39
|
optional string order = 3;
|
|
40
|
+
optional MirrorSearchRequest mirror_search_params = 4;
|
|
41
|
+
}
|
|
42
|
+
message MirrorSearchRequest {
|
|
43
|
+
optional string title = 1;
|
|
44
|
+
optional string domain = 2;
|
|
45
|
+
optional int32 is_active = 3;
|
|
46
|
+
repeated string country = 4;
|
|
47
|
+
repeated string status = 5;
|
|
48
|
+
repeated string priority = 6;
|
|
40
49
|
}
|
|
41
|
-
|
|
42
50
|
//Service settings
|
|
43
51
|
message SettingsRequest {
|
|
44
52
|
string environment = 1;
|
|
@@ -156,17 +164,15 @@ message ZonesResponse {
|
|
|
156
164
|
repeated ZoneItem items = 1;
|
|
157
165
|
}
|
|
158
166
|
message MirrorItem {
|
|
159
|
-
string
|
|
160
|
-
string
|
|
161
|
-
string
|
|
162
|
-
optional string
|
|
163
|
-
optional string
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
optional string
|
|
167
|
-
optional
|
|
168
|
-
optional string status = 10;
|
|
169
|
-
optional int32 is_active = 11;
|
|
167
|
+
optional string domain = 1;
|
|
168
|
+
optional string title = 2;
|
|
169
|
+
optional string main_record = 3;
|
|
170
|
+
optional string api_record = 4;
|
|
171
|
+
optional string cdn_record = 5;
|
|
172
|
+
repeated string countries = 6;
|
|
173
|
+
optional string priority = 7;
|
|
174
|
+
optional string status = 8;
|
|
175
|
+
optional int32 is_active = 9;
|
|
170
176
|
}
|
|
171
177
|
message MirrorResponse {
|
|
172
178
|
MirrorItem data = 1;
|
package/config/config_pb.js
CHANGED
|
@@ -37,6 +37,7 @@ goog.exportSymbol('proto.config.GlobalDataRequest', null, global);
|
|
|
37
37
|
goog.exportSymbol('proto.config.MirrorItem', null, global);
|
|
38
38
|
goog.exportSymbol('proto.config.MirrorItemsResponse', null, global);
|
|
39
39
|
goog.exportSymbol('proto.config.MirrorResponse', null, global);
|
|
40
|
+
goog.exportSymbol('proto.config.MirrorSearchRequest', null, global);
|
|
40
41
|
goog.exportSymbol('proto.config.MirrorStatusResponse', null, global);
|
|
41
42
|
goog.exportSymbol('proto.config.ModifyMirrorRequest', null, global);
|
|
42
43
|
goog.exportSymbol('proto.config.PaginationRequest', null, global);
|
|
@@ -115,6 +116,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
115
116
|
*/
|
|
116
117
|
proto.config.PaginationRequest.displayName = 'proto.config.PaginationRequest';
|
|
117
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* Generated by JsPbCodeGenerator.
|
|
121
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
122
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
123
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
124
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
125
|
+
* valid.
|
|
126
|
+
* @extends {jspb.Message}
|
|
127
|
+
* @constructor
|
|
128
|
+
*/
|
|
129
|
+
proto.config.MirrorSearchRequest = function(opt_data) {
|
|
130
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.config.MirrorSearchRequest.repeatedFields_, null);
|
|
131
|
+
};
|
|
132
|
+
goog.inherits(proto.config.MirrorSearchRequest, jspb.Message);
|
|
133
|
+
if (goog.DEBUG && !COMPILED) {
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
* @override
|
|
137
|
+
*/
|
|
138
|
+
proto.config.MirrorSearchRequest.displayName = 'proto.config.MirrorSearchRequest';
|
|
139
|
+
}
|
|
118
140
|
/**
|
|
119
141
|
* Generated by JsPbCodeGenerator.
|
|
120
142
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -997,7 +1019,8 @@ proto.config.PaginationRequest.toObject = function(includeInstance, msg) {
|
|
|
997
1019
|
var f, obj = {
|
|
998
1020
|
limit: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
999
1021
|
offset: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
1000
|
-
order: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
1022
|
+
order: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
1023
|
+
mirrorSearchParams: (f = msg.getMirrorSearchParams()) && proto.config.MirrorSearchRequest.toObject(includeInstance, f)
|
|
1001
1024
|
};
|
|
1002
1025
|
|
|
1003
1026
|
if (includeInstance) {
|
|
@@ -1046,6 +1069,11 @@ proto.config.PaginationRequest.deserializeBinaryFromReader = function(msg, reade
|
|
|
1046
1069
|
var value = /** @type {string} */ (reader.readString());
|
|
1047
1070
|
msg.setOrder(value);
|
|
1048
1071
|
break;
|
|
1072
|
+
case 4:
|
|
1073
|
+
var value = new proto.config.MirrorSearchRequest;
|
|
1074
|
+
reader.readMessage(value,proto.config.MirrorSearchRequest.deserializeBinaryFromReader);
|
|
1075
|
+
msg.setMirrorSearchParams(value);
|
|
1076
|
+
break;
|
|
1049
1077
|
default:
|
|
1050
1078
|
reader.skipField();
|
|
1051
1079
|
break;
|
|
@@ -1056,118 +1084,561 @@ proto.config.PaginationRequest.deserializeBinaryFromReader = function(msg, reade
|
|
|
1056
1084
|
|
|
1057
1085
|
|
|
1058
1086
|
/**
|
|
1059
|
-
* Serializes the message to binary data (in protobuf wire format).
|
|
1060
|
-
* @return {!Uint8Array}
|
|
1087
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
1088
|
+
* @return {!Uint8Array}
|
|
1089
|
+
*/
|
|
1090
|
+
proto.config.PaginationRequest.prototype.serializeBinary = function() {
|
|
1091
|
+
var writer = new jspb.BinaryWriter();
|
|
1092
|
+
proto.config.PaginationRequest.serializeBinaryToWriter(this, writer);
|
|
1093
|
+
return writer.getResultBuffer();
|
|
1094
|
+
};
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
/**
|
|
1098
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
1099
|
+
* format), writing to the given BinaryWriter.
|
|
1100
|
+
* @param {!proto.config.PaginationRequest} message
|
|
1101
|
+
* @param {!jspb.BinaryWriter} writer
|
|
1102
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1103
|
+
*/
|
|
1104
|
+
proto.config.PaginationRequest.serializeBinaryToWriter = function(message, writer) {
|
|
1105
|
+
var f = undefined;
|
|
1106
|
+
f = message.getLimit();
|
|
1107
|
+
if (f !== 0) {
|
|
1108
|
+
writer.writeInt32(
|
|
1109
|
+
1,
|
|
1110
|
+
f
|
|
1111
|
+
);
|
|
1112
|
+
}
|
|
1113
|
+
f = message.getOffset();
|
|
1114
|
+
if (f !== 0) {
|
|
1115
|
+
writer.writeInt32(
|
|
1116
|
+
2,
|
|
1117
|
+
f
|
|
1118
|
+
);
|
|
1119
|
+
}
|
|
1120
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
1121
|
+
if (f != null) {
|
|
1122
|
+
writer.writeString(
|
|
1123
|
+
3,
|
|
1124
|
+
f
|
|
1125
|
+
);
|
|
1126
|
+
}
|
|
1127
|
+
f = message.getMirrorSearchParams();
|
|
1128
|
+
if (f != null) {
|
|
1129
|
+
writer.writeMessage(
|
|
1130
|
+
4,
|
|
1131
|
+
f,
|
|
1132
|
+
proto.config.MirrorSearchRequest.serializeBinaryToWriter
|
|
1133
|
+
);
|
|
1134
|
+
}
|
|
1135
|
+
};
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* optional int32 limit = 1;
|
|
1140
|
+
* @return {number}
|
|
1141
|
+
*/
|
|
1142
|
+
proto.config.PaginationRequest.prototype.getLimit = function() {
|
|
1143
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
1144
|
+
};
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* @param {number} value
|
|
1149
|
+
* @return {!proto.config.PaginationRequest} returns this
|
|
1150
|
+
*/
|
|
1151
|
+
proto.config.PaginationRequest.prototype.setLimit = function(value) {
|
|
1152
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
1153
|
+
};
|
|
1154
|
+
|
|
1155
|
+
|
|
1156
|
+
/**
|
|
1157
|
+
* optional int32 offset = 2;
|
|
1158
|
+
* @return {number}
|
|
1159
|
+
*/
|
|
1160
|
+
proto.config.PaginationRequest.prototype.getOffset = function() {
|
|
1161
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
1162
|
+
};
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
/**
|
|
1166
|
+
* @param {number} value
|
|
1167
|
+
* @return {!proto.config.PaginationRequest} returns this
|
|
1168
|
+
*/
|
|
1169
|
+
proto.config.PaginationRequest.prototype.setOffset = function(value) {
|
|
1170
|
+
return jspb.Message.setProto3IntField(this, 2, value);
|
|
1171
|
+
};
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
/**
|
|
1175
|
+
* optional string order = 3;
|
|
1176
|
+
* @return {string}
|
|
1177
|
+
*/
|
|
1178
|
+
proto.config.PaginationRequest.prototype.getOrder = function() {
|
|
1179
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
1180
|
+
};
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
/**
|
|
1184
|
+
* @param {string} value
|
|
1185
|
+
* @return {!proto.config.PaginationRequest} returns this
|
|
1186
|
+
*/
|
|
1187
|
+
proto.config.PaginationRequest.prototype.setOrder = function(value) {
|
|
1188
|
+
return jspb.Message.setField(this, 3, value);
|
|
1189
|
+
};
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* Clears the field making it undefined.
|
|
1194
|
+
* @return {!proto.config.PaginationRequest} returns this
|
|
1195
|
+
*/
|
|
1196
|
+
proto.config.PaginationRequest.prototype.clearOrder = function() {
|
|
1197
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
1198
|
+
};
|
|
1199
|
+
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* Returns whether this field is set.
|
|
1203
|
+
* @return {boolean}
|
|
1204
|
+
*/
|
|
1205
|
+
proto.config.PaginationRequest.prototype.hasOrder = function() {
|
|
1206
|
+
return jspb.Message.getField(this, 3) != null;
|
|
1207
|
+
};
|
|
1208
|
+
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
* optional MirrorSearchRequest mirror_search_params = 4;
|
|
1212
|
+
* @return {?proto.config.MirrorSearchRequest}
|
|
1213
|
+
*/
|
|
1214
|
+
proto.config.PaginationRequest.prototype.getMirrorSearchParams = function() {
|
|
1215
|
+
return /** @type{?proto.config.MirrorSearchRequest} */ (
|
|
1216
|
+
jspb.Message.getWrapperField(this, proto.config.MirrorSearchRequest, 4));
|
|
1217
|
+
};
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
/**
|
|
1221
|
+
* @param {?proto.config.MirrorSearchRequest|undefined} value
|
|
1222
|
+
* @return {!proto.config.PaginationRequest} returns this
|
|
1223
|
+
*/
|
|
1224
|
+
proto.config.PaginationRequest.prototype.setMirrorSearchParams = function(value) {
|
|
1225
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
1226
|
+
};
|
|
1227
|
+
|
|
1228
|
+
|
|
1229
|
+
/**
|
|
1230
|
+
* Clears the message field making it undefined.
|
|
1231
|
+
* @return {!proto.config.PaginationRequest} returns this
|
|
1232
|
+
*/
|
|
1233
|
+
proto.config.PaginationRequest.prototype.clearMirrorSearchParams = function() {
|
|
1234
|
+
return this.setMirrorSearchParams(undefined);
|
|
1235
|
+
};
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* Returns whether this field is set.
|
|
1240
|
+
* @return {boolean}
|
|
1241
|
+
*/
|
|
1242
|
+
proto.config.PaginationRequest.prototype.hasMirrorSearchParams = function() {
|
|
1243
|
+
return jspb.Message.getField(this, 4) != null;
|
|
1244
|
+
};
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
/**
|
|
1249
|
+
* List of repeated fields within this message type.
|
|
1250
|
+
* @private {!Array<number>}
|
|
1251
|
+
* @const
|
|
1252
|
+
*/
|
|
1253
|
+
proto.config.MirrorSearchRequest.repeatedFields_ = [4,5,6];
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
1258
|
+
/**
|
|
1259
|
+
* Creates an object representation of this proto.
|
|
1260
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
1261
|
+
* Optional fields that are not set will be set to undefined.
|
|
1262
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
1263
|
+
* For the list of reserved names please see:
|
|
1264
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
1265
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
1266
|
+
* JSPB instance for transitional soy proto support:
|
|
1267
|
+
* http://goto/soy-param-migration
|
|
1268
|
+
* @return {!Object}
|
|
1269
|
+
*/
|
|
1270
|
+
proto.config.MirrorSearchRequest.prototype.toObject = function(opt_includeInstance) {
|
|
1271
|
+
return proto.config.MirrorSearchRequest.toObject(opt_includeInstance, this);
|
|
1272
|
+
};
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
/**
|
|
1276
|
+
* Static version of the {@see toObject} method.
|
|
1277
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
1278
|
+
* the JSPB instance for transitional soy proto support:
|
|
1279
|
+
* http://goto/soy-param-migration
|
|
1280
|
+
* @param {!proto.config.MirrorSearchRequest} msg The msg instance to transform.
|
|
1281
|
+
* @return {!Object}
|
|
1282
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1283
|
+
*/
|
|
1284
|
+
proto.config.MirrorSearchRequest.toObject = function(includeInstance, msg) {
|
|
1285
|
+
var f, obj = {
|
|
1286
|
+
title: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
1287
|
+
domain: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
1288
|
+
isActive: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
1289
|
+
countryList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
1290
|
+
statusList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
1291
|
+
priorityList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f
|
|
1292
|
+
};
|
|
1293
|
+
|
|
1294
|
+
if (includeInstance) {
|
|
1295
|
+
obj.$jspbMessageInstance = msg;
|
|
1296
|
+
}
|
|
1297
|
+
return obj;
|
|
1298
|
+
};
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
/**
|
|
1303
|
+
* Deserializes binary data (in protobuf wire format).
|
|
1304
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
1305
|
+
* @return {!proto.config.MirrorSearchRequest}
|
|
1306
|
+
*/
|
|
1307
|
+
proto.config.MirrorSearchRequest.deserializeBinary = function(bytes) {
|
|
1308
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
1309
|
+
var msg = new proto.config.MirrorSearchRequest;
|
|
1310
|
+
return proto.config.MirrorSearchRequest.deserializeBinaryFromReader(msg, reader);
|
|
1311
|
+
};
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
1316
|
+
* given reader into the given message object.
|
|
1317
|
+
* @param {!proto.config.MirrorSearchRequest} msg The message object to deserialize into.
|
|
1318
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
1319
|
+
* @return {!proto.config.MirrorSearchRequest}
|
|
1320
|
+
*/
|
|
1321
|
+
proto.config.MirrorSearchRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
1322
|
+
while (reader.nextField()) {
|
|
1323
|
+
if (reader.isEndGroup()) {
|
|
1324
|
+
break;
|
|
1325
|
+
}
|
|
1326
|
+
var field = reader.getFieldNumber();
|
|
1327
|
+
switch (field) {
|
|
1328
|
+
case 1:
|
|
1329
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1330
|
+
msg.setTitle(value);
|
|
1331
|
+
break;
|
|
1332
|
+
case 2:
|
|
1333
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1334
|
+
msg.setDomain(value);
|
|
1335
|
+
break;
|
|
1336
|
+
case 3:
|
|
1337
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
1338
|
+
msg.setIsActive(value);
|
|
1339
|
+
break;
|
|
1340
|
+
case 4:
|
|
1341
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1342
|
+
msg.addCountry(value);
|
|
1343
|
+
break;
|
|
1344
|
+
case 5:
|
|
1345
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1346
|
+
msg.addStatus(value);
|
|
1347
|
+
break;
|
|
1348
|
+
case 6:
|
|
1349
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1350
|
+
msg.addPriority(value);
|
|
1351
|
+
break;
|
|
1352
|
+
default:
|
|
1353
|
+
reader.skipField();
|
|
1354
|
+
break;
|
|
1355
|
+
}
|
|
1356
|
+
}
|
|
1357
|
+
return msg;
|
|
1358
|
+
};
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
/**
|
|
1362
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
1363
|
+
* @return {!Uint8Array}
|
|
1364
|
+
*/
|
|
1365
|
+
proto.config.MirrorSearchRequest.prototype.serializeBinary = function() {
|
|
1366
|
+
var writer = new jspb.BinaryWriter();
|
|
1367
|
+
proto.config.MirrorSearchRequest.serializeBinaryToWriter(this, writer);
|
|
1368
|
+
return writer.getResultBuffer();
|
|
1369
|
+
};
|
|
1370
|
+
|
|
1371
|
+
|
|
1372
|
+
/**
|
|
1373
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
1374
|
+
* format), writing to the given BinaryWriter.
|
|
1375
|
+
* @param {!proto.config.MirrorSearchRequest} message
|
|
1376
|
+
* @param {!jspb.BinaryWriter} writer
|
|
1377
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1378
|
+
*/
|
|
1379
|
+
proto.config.MirrorSearchRequest.serializeBinaryToWriter = function(message, writer) {
|
|
1380
|
+
var f = undefined;
|
|
1381
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
1382
|
+
if (f != null) {
|
|
1383
|
+
writer.writeString(
|
|
1384
|
+
1,
|
|
1385
|
+
f
|
|
1386
|
+
);
|
|
1387
|
+
}
|
|
1388
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
1389
|
+
if (f != null) {
|
|
1390
|
+
writer.writeString(
|
|
1391
|
+
2,
|
|
1392
|
+
f
|
|
1393
|
+
);
|
|
1394
|
+
}
|
|
1395
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 3));
|
|
1396
|
+
if (f != null) {
|
|
1397
|
+
writer.writeInt32(
|
|
1398
|
+
3,
|
|
1399
|
+
f
|
|
1400
|
+
);
|
|
1401
|
+
}
|
|
1402
|
+
f = message.getCountryList();
|
|
1403
|
+
if (f.length > 0) {
|
|
1404
|
+
writer.writeRepeatedString(
|
|
1405
|
+
4,
|
|
1406
|
+
f
|
|
1407
|
+
);
|
|
1408
|
+
}
|
|
1409
|
+
f = message.getStatusList();
|
|
1410
|
+
if (f.length > 0) {
|
|
1411
|
+
writer.writeRepeatedString(
|
|
1412
|
+
5,
|
|
1413
|
+
f
|
|
1414
|
+
);
|
|
1415
|
+
}
|
|
1416
|
+
f = message.getPriorityList();
|
|
1417
|
+
if (f.length > 0) {
|
|
1418
|
+
writer.writeRepeatedString(
|
|
1419
|
+
6,
|
|
1420
|
+
f
|
|
1421
|
+
);
|
|
1422
|
+
}
|
|
1423
|
+
};
|
|
1424
|
+
|
|
1425
|
+
|
|
1426
|
+
/**
|
|
1427
|
+
* optional string title = 1;
|
|
1428
|
+
* @return {string}
|
|
1429
|
+
*/
|
|
1430
|
+
proto.config.MirrorSearchRequest.prototype.getTitle = function() {
|
|
1431
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
1432
|
+
};
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
/**
|
|
1436
|
+
* @param {string} value
|
|
1437
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1438
|
+
*/
|
|
1439
|
+
proto.config.MirrorSearchRequest.prototype.setTitle = function(value) {
|
|
1440
|
+
return jspb.Message.setField(this, 1, value);
|
|
1441
|
+
};
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
/**
|
|
1445
|
+
* Clears the field making it undefined.
|
|
1446
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1447
|
+
*/
|
|
1448
|
+
proto.config.MirrorSearchRequest.prototype.clearTitle = function() {
|
|
1449
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
1450
|
+
};
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
/**
|
|
1454
|
+
* Returns whether this field is set.
|
|
1455
|
+
* @return {boolean}
|
|
1456
|
+
*/
|
|
1457
|
+
proto.config.MirrorSearchRequest.prototype.hasTitle = function() {
|
|
1458
|
+
return jspb.Message.getField(this, 1) != null;
|
|
1459
|
+
};
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
/**
|
|
1463
|
+
* optional string domain = 2;
|
|
1464
|
+
* @return {string}
|
|
1465
|
+
*/
|
|
1466
|
+
proto.config.MirrorSearchRequest.prototype.getDomain = function() {
|
|
1467
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
1468
|
+
};
|
|
1469
|
+
|
|
1470
|
+
|
|
1471
|
+
/**
|
|
1472
|
+
* @param {string} value
|
|
1473
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1474
|
+
*/
|
|
1475
|
+
proto.config.MirrorSearchRequest.prototype.setDomain = function(value) {
|
|
1476
|
+
return jspb.Message.setField(this, 2, value);
|
|
1477
|
+
};
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
/**
|
|
1481
|
+
* Clears the field making it undefined.
|
|
1482
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1483
|
+
*/
|
|
1484
|
+
proto.config.MirrorSearchRequest.prototype.clearDomain = function() {
|
|
1485
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
1486
|
+
};
|
|
1487
|
+
|
|
1488
|
+
|
|
1489
|
+
/**
|
|
1490
|
+
* Returns whether this field is set.
|
|
1491
|
+
* @return {boolean}
|
|
1492
|
+
*/
|
|
1493
|
+
proto.config.MirrorSearchRequest.prototype.hasDomain = function() {
|
|
1494
|
+
return jspb.Message.getField(this, 2) != null;
|
|
1495
|
+
};
|
|
1496
|
+
|
|
1497
|
+
|
|
1498
|
+
/**
|
|
1499
|
+
* optional int32 is_active = 3;
|
|
1500
|
+
* @return {number}
|
|
1501
|
+
*/
|
|
1502
|
+
proto.config.MirrorSearchRequest.prototype.getIsActive = function() {
|
|
1503
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
|
1504
|
+
};
|
|
1505
|
+
|
|
1506
|
+
|
|
1507
|
+
/**
|
|
1508
|
+
* @param {number} value
|
|
1509
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1510
|
+
*/
|
|
1511
|
+
proto.config.MirrorSearchRequest.prototype.setIsActive = function(value) {
|
|
1512
|
+
return jspb.Message.setField(this, 3, value);
|
|
1513
|
+
};
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
/**
|
|
1517
|
+
* Clears the field making it undefined.
|
|
1518
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1519
|
+
*/
|
|
1520
|
+
proto.config.MirrorSearchRequest.prototype.clearIsActive = function() {
|
|
1521
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
1522
|
+
};
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* Returns whether this field is set.
|
|
1527
|
+
* @return {boolean}
|
|
1528
|
+
*/
|
|
1529
|
+
proto.config.MirrorSearchRequest.prototype.hasIsActive = function() {
|
|
1530
|
+
return jspb.Message.getField(this, 3) != null;
|
|
1531
|
+
};
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
/**
|
|
1535
|
+
* repeated string country = 4;
|
|
1536
|
+
* @return {!Array<string>}
|
|
1537
|
+
*/
|
|
1538
|
+
proto.config.MirrorSearchRequest.prototype.getCountryList = function() {
|
|
1539
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 4));
|
|
1540
|
+
};
|
|
1541
|
+
|
|
1542
|
+
|
|
1543
|
+
/**
|
|
1544
|
+
* @param {!Array<string>} value
|
|
1545
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1061
1546
|
*/
|
|
1062
|
-
proto.config.
|
|
1063
|
-
|
|
1064
|
-
proto.config.PaginationRequest.serializeBinaryToWriter(this, writer);
|
|
1065
|
-
return writer.getResultBuffer();
|
|
1547
|
+
proto.config.MirrorSearchRequest.prototype.setCountryList = function(value) {
|
|
1548
|
+
return jspb.Message.setField(this, 4, value || []);
|
|
1066
1549
|
};
|
|
1067
1550
|
|
|
1068
1551
|
|
|
1069
1552
|
/**
|
|
1070
|
-
*
|
|
1071
|
-
*
|
|
1072
|
-
* @
|
|
1073
|
-
* @param {!jspb.BinaryWriter} writer
|
|
1074
|
-
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1553
|
+
* @param {string} value
|
|
1554
|
+
* @param {number=} opt_index
|
|
1555
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1075
1556
|
*/
|
|
1076
|
-
proto.config.
|
|
1077
|
-
|
|
1078
|
-
f = message.getLimit();
|
|
1079
|
-
if (f !== 0) {
|
|
1080
|
-
writer.writeInt32(
|
|
1081
|
-
1,
|
|
1082
|
-
f
|
|
1083
|
-
);
|
|
1084
|
-
}
|
|
1085
|
-
f = message.getOffset();
|
|
1086
|
-
if (f !== 0) {
|
|
1087
|
-
writer.writeInt32(
|
|
1088
|
-
2,
|
|
1089
|
-
f
|
|
1090
|
-
);
|
|
1091
|
-
}
|
|
1092
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
1093
|
-
if (f != null) {
|
|
1094
|
-
writer.writeString(
|
|
1095
|
-
3,
|
|
1096
|
-
f
|
|
1097
|
-
);
|
|
1098
|
-
}
|
|
1557
|
+
proto.config.MirrorSearchRequest.prototype.addCountry = function(value, opt_index) {
|
|
1558
|
+
return jspb.Message.addToRepeatedField(this, 4, value, opt_index);
|
|
1099
1559
|
};
|
|
1100
1560
|
|
|
1101
1561
|
|
|
1102
1562
|
/**
|
|
1103
|
-
*
|
|
1104
|
-
* @return {
|
|
1563
|
+
* Clears the list making it empty but non-null.
|
|
1564
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1105
1565
|
*/
|
|
1106
|
-
proto.config.
|
|
1107
|
-
return
|
|
1566
|
+
proto.config.MirrorSearchRequest.prototype.clearCountryList = function() {
|
|
1567
|
+
return this.setCountryList([]);
|
|
1108
1568
|
};
|
|
1109
1569
|
|
|
1110
1570
|
|
|
1111
1571
|
/**
|
|
1112
|
-
*
|
|
1113
|
-
* @return {!
|
|
1572
|
+
* repeated string status = 5;
|
|
1573
|
+
* @return {!Array<string>}
|
|
1114
1574
|
*/
|
|
1115
|
-
proto.config.
|
|
1116
|
-
return jspb.Message.
|
|
1575
|
+
proto.config.MirrorSearchRequest.prototype.getStatusList = function() {
|
|
1576
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
|
|
1117
1577
|
};
|
|
1118
1578
|
|
|
1119
1579
|
|
|
1120
1580
|
/**
|
|
1121
|
-
*
|
|
1122
|
-
* @return {
|
|
1581
|
+
* @param {!Array<string>} value
|
|
1582
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1123
1583
|
*/
|
|
1124
|
-
proto.config.
|
|
1125
|
-
return
|
|
1584
|
+
proto.config.MirrorSearchRequest.prototype.setStatusList = function(value) {
|
|
1585
|
+
return jspb.Message.setField(this, 5, value || []);
|
|
1126
1586
|
};
|
|
1127
1587
|
|
|
1128
1588
|
|
|
1129
1589
|
/**
|
|
1130
|
-
* @param {
|
|
1131
|
-
* @
|
|
1590
|
+
* @param {string} value
|
|
1591
|
+
* @param {number=} opt_index
|
|
1592
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1132
1593
|
*/
|
|
1133
|
-
proto.config.
|
|
1134
|
-
return jspb.Message.
|
|
1594
|
+
proto.config.MirrorSearchRequest.prototype.addStatus = function(value, opt_index) {
|
|
1595
|
+
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
|
|
1135
1596
|
};
|
|
1136
1597
|
|
|
1137
1598
|
|
|
1138
1599
|
/**
|
|
1139
|
-
*
|
|
1140
|
-
* @return {
|
|
1600
|
+
* Clears the list making it empty but non-null.
|
|
1601
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1141
1602
|
*/
|
|
1142
|
-
proto.config.
|
|
1143
|
-
return
|
|
1603
|
+
proto.config.MirrorSearchRequest.prototype.clearStatusList = function() {
|
|
1604
|
+
return this.setStatusList([]);
|
|
1144
1605
|
};
|
|
1145
1606
|
|
|
1146
1607
|
|
|
1147
1608
|
/**
|
|
1148
|
-
*
|
|
1149
|
-
* @return {!
|
|
1609
|
+
* repeated string priority = 6;
|
|
1610
|
+
* @return {!Array<string>}
|
|
1150
1611
|
*/
|
|
1151
|
-
proto.config.
|
|
1152
|
-
return jspb.Message.
|
|
1612
|
+
proto.config.MirrorSearchRequest.prototype.getPriorityList = function() {
|
|
1613
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
1153
1614
|
};
|
|
1154
1615
|
|
|
1155
1616
|
|
|
1156
1617
|
/**
|
|
1157
|
-
*
|
|
1158
|
-
* @return {!proto.config.
|
|
1618
|
+
* @param {!Array<string>} value
|
|
1619
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1159
1620
|
*/
|
|
1160
|
-
proto.config.
|
|
1161
|
-
return jspb.Message.setField(this,
|
|
1621
|
+
proto.config.MirrorSearchRequest.prototype.setPriorityList = function(value) {
|
|
1622
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
1162
1623
|
};
|
|
1163
1624
|
|
|
1164
1625
|
|
|
1165
1626
|
/**
|
|
1166
|
-
*
|
|
1167
|
-
* @
|
|
1627
|
+
* @param {string} value
|
|
1628
|
+
* @param {number=} opt_index
|
|
1629
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1168
1630
|
*/
|
|
1169
|
-
proto.config.
|
|
1170
|
-
return jspb.Message.
|
|
1631
|
+
proto.config.MirrorSearchRequest.prototype.addPriority = function(value, opt_index) {
|
|
1632
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
1633
|
+
};
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* Clears the list making it empty but non-null.
|
|
1638
|
+
* @return {!proto.config.MirrorSearchRequest} returns this
|
|
1639
|
+
*/
|
|
1640
|
+
proto.config.MirrorSearchRequest.prototype.clearPriorityList = function() {
|
|
1641
|
+
return this.setPriorityList([]);
|
|
1171
1642
|
};
|
|
1172
1643
|
|
|
1173
1644
|
|
|
@@ -5911,7 +6382,7 @@ proto.config.ZonesResponse.prototype.clearItemsList = function() {
|
|
|
5911
6382
|
* @private {!Array<number>}
|
|
5912
6383
|
* @const
|
|
5913
6384
|
*/
|
|
5914
|
-
proto.config.MirrorItem.repeatedFields_ = [
|
|
6385
|
+
proto.config.MirrorItem.repeatedFields_ = [6];
|
|
5915
6386
|
|
|
5916
6387
|
|
|
5917
6388
|
|
|
@@ -5944,17 +6415,15 @@ proto.config.MirrorItem.prototype.toObject = function(opt_includeInstance) {
|
|
|
5944
6415
|
*/
|
|
5945
6416
|
proto.config.MirrorItem.toObject = function(includeInstance, msg) {
|
|
5946
6417
|
var f, obj = {
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5950
|
-
|
|
5951
|
-
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
|
|
5955
|
-
|
|
5956
|
-
status: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
5957
|
-
isActive: jspb.Message.getFieldWithDefault(msg, 11, 0)
|
|
6418
|
+
domain: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
6419
|
+
title: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
6420
|
+
mainRecord: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
6421
|
+
apiRecord: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
6422
|
+
cdnRecord: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
6423
|
+
countriesList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
6424
|
+
priority: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
6425
|
+
status: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
6426
|
+
isActive: jspb.Message.getFieldWithDefault(msg, 9, 0)
|
|
5958
6427
|
};
|
|
5959
6428
|
|
|
5960
6429
|
if (includeInstance) {
|
|
@@ -5993,45 +6462,37 @@ proto.config.MirrorItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
5993
6462
|
switch (field) {
|
|
5994
6463
|
case 1:
|
|
5995
6464
|
var value = /** @type {string} */ (reader.readString());
|
|
5996
|
-
msg.
|
|
6465
|
+
msg.setDomain(value);
|
|
5997
6466
|
break;
|
|
5998
6467
|
case 2:
|
|
5999
6468
|
var value = /** @type {string} */ (reader.readString());
|
|
6000
|
-
msg.
|
|
6469
|
+
msg.setTitle(value);
|
|
6001
6470
|
break;
|
|
6002
6471
|
case 3:
|
|
6003
|
-
var value = /** @type {string} */ (reader.readString());
|
|
6004
|
-
msg.setZoneStatus(value);
|
|
6005
|
-
break;
|
|
6006
|
-
case 4:
|
|
6007
6472
|
var value = /** @type {string} */ (reader.readString());
|
|
6008
6473
|
msg.setMainRecord(value);
|
|
6009
6474
|
break;
|
|
6010
|
-
case
|
|
6475
|
+
case 4:
|
|
6011
6476
|
var value = /** @type {string} */ (reader.readString());
|
|
6012
6477
|
msg.setApiRecord(value);
|
|
6013
6478
|
break;
|
|
6014
|
-
case
|
|
6479
|
+
case 5:
|
|
6015
6480
|
var value = /** @type {string} */ (reader.readString());
|
|
6016
6481
|
msg.setCdnRecord(value);
|
|
6017
6482
|
break;
|
|
6018
|
-
case
|
|
6483
|
+
case 6:
|
|
6019
6484
|
var value = /** @type {string} */ (reader.readString());
|
|
6020
6485
|
msg.addCountries(value);
|
|
6021
6486
|
break;
|
|
6022
|
-
case
|
|
6023
|
-
var value = /** @type {string} */ (reader.readString());
|
|
6024
|
-
msg.setTitle(value);
|
|
6025
|
-
break;
|
|
6026
|
-
case 9:
|
|
6487
|
+
case 7:
|
|
6027
6488
|
var value = /** @type {string} */ (reader.readString());
|
|
6028
6489
|
msg.setPriority(value);
|
|
6029
6490
|
break;
|
|
6030
|
-
case
|
|
6491
|
+
case 8:
|
|
6031
6492
|
var value = /** @type {string} */ (reader.readString());
|
|
6032
6493
|
msg.setStatus(value);
|
|
6033
6494
|
break;
|
|
6034
|
-
case
|
|
6495
|
+
case 9:
|
|
6035
6496
|
var value = /** @type {number} */ (reader.readInt32());
|
|
6036
6497
|
msg.setIsActive(value);
|
|
6037
6498
|
break;
|
|
@@ -6064,22 +6525,22 @@ proto.config.MirrorItem.prototype.serializeBinary = function() {
|
|
|
6064
6525
|
*/
|
|
6065
6526
|
proto.config.MirrorItem.serializeBinaryToWriter = function(message, writer) {
|
|
6066
6527
|
var f = undefined;
|
|
6067
|
-
f =
|
|
6068
|
-
if (f
|
|
6528
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
|
6529
|
+
if (f != null) {
|
|
6069
6530
|
writer.writeString(
|
|
6070
6531
|
1,
|
|
6071
6532
|
f
|
|
6072
6533
|
);
|
|
6073
6534
|
}
|
|
6074
|
-
f =
|
|
6075
|
-
if (f
|
|
6535
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
6536
|
+
if (f != null) {
|
|
6076
6537
|
writer.writeString(
|
|
6077
6538
|
2,
|
|
6078
6539
|
f
|
|
6079
6540
|
);
|
|
6080
6541
|
}
|
|
6081
|
-
f =
|
|
6082
|
-
if (f
|
|
6542
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
6543
|
+
if (f != null) {
|
|
6083
6544
|
writer.writeString(
|
|
6084
6545
|
3,
|
|
6085
6546
|
f
|
|
@@ -6099,45 +6560,31 @@ proto.config.MirrorItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
6099
6560
|
f
|
|
6100
6561
|
);
|
|
6101
6562
|
}
|
|
6102
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 6));
|
|
6103
|
-
if (f != null) {
|
|
6104
|
-
writer.writeString(
|
|
6105
|
-
6,
|
|
6106
|
-
f
|
|
6107
|
-
);
|
|
6108
|
-
}
|
|
6109
6563
|
f = message.getCountriesList();
|
|
6110
6564
|
if (f.length > 0) {
|
|
6111
6565
|
writer.writeRepeatedString(
|
|
6112
|
-
|
|
6113
|
-
f
|
|
6114
|
-
);
|
|
6115
|
-
}
|
|
6116
|
-
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
6117
|
-
if (f != null) {
|
|
6118
|
-
writer.writeString(
|
|
6119
|
-
8,
|
|
6566
|
+
6,
|
|
6120
6567
|
f
|
|
6121
6568
|
);
|
|
6122
6569
|
}
|
|
6123
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
6570
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 7));
|
|
6124
6571
|
if (f != null) {
|
|
6125
6572
|
writer.writeString(
|
|
6126
|
-
|
|
6573
|
+
7,
|
|
6127
6574
|
f
|
|
6128
6575
|
);
|
|
6129
6576
|
}
|
|
6130
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
|
6577
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
6131
6578
|
if (f != null) {
|
|
6132
6579
|
writer.writeString(
|
|
6133
|
-
|
|
6580
|
+
8,
|
|
6134
6581
|
f
|
|
6135
6582
|
);
|
|
6136
6583
|
}
|
|
6137
|
-
f = /** @type {number} */ (jspb.Message.getField(message,
|
|
6584
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 9));
|
|
6138
6585
|
if (f != null) {
|
|
6139
6586
|
writer.writeInt32(
|
|
6140
|
-
|
|
6587
|
+
9,
|
|
6141
6588
|
f
|
|
6142
6589
|
);
|
|
6143
6590
|
}
|
|
@@ -6145,10 +6592,10 @@ proto.config.MirrorItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
6145
6592
|
|
|
6146
6593
|
|
|
6147
6594
|
/**
|
|
6148
|
-
* optional string
|
|
6595
|
+
* optional string domain = 1;
|
|
6149
6596
|
* @return {string}
|
|
6150
6597
|
*/
|
|
6151
|
-
proto.config.MirrorItem.prototype.
|
|
6598
|
+
proto.config.MirrorItem.prototype.getDomain = function() {
|
|
6152
6599
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
6153
6600
|
};
|
|
6154
6601
|
|
|
@@ -6157,16 +6604,34 @@ proto.config.MirrorItem.prototype.getZoneId = function() {
|
|
|
6157
6604
|
* @param {string} value
|
|
6158
6605
|
* @return {!proto.config.MirrorItem} returns this
|
|
6159
6606
|
*/
|
|
6160
|
-
proto.config.MirrorItem.prototype.
|
|
6161
|
-
return jspb.Message.
|
|
6607
|
+
proto.config.MirrorItem.prototype.setDomain = function(value) {
|
|
6608
|
+
return jspb.Message.setField(this, 1, value);
|
|
6609
|
+
};
|
|
6610
|
+
|
|
6611
|
+
|
|
6612
|
+
/**
|
|
6613
|
+
* Clears the field making it undefined.
|
|
6614
|
+
* @return {!proto.config.MirrorItem} returns this
|
|
6615
|
+
*/
|
|
6616
|
+
proto.config.MirrorItem.prototype.clearDomain = function() {
|
|
6617
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
6618
|
+
};
|
|
6619
|
+
|
|
6620
|
+
|
|
6621
|
+
/**
|
|
6622
|
+
* Returns whether this field is set.
|
|
6623
|
+
* @return {boolean}
|
|
6624
|
+
*/
|
|
6625
|
+
proto.config.MirrorItem.prototype.hasDomain = function() {
|
|
6626
|
+
return jspb.Message.getField(this, 1) != null;
|
|
6162
6627
|
};
|
|
6163
6628
|
|
|
6164
6629
|
|
|
6165
6630
|
/**
|
|
6166
|
-
* optional string
|
|
6631
|
+
* optional string title = 2;
|
|
6167
6632
|
* @return {string}
|
|
6168
6633
|
*/
|
|
6169
|
-
proto.config.MirrorItem.prototype.
|
|
6634
|
+
proto.config.MirrorItem.prototype.getTitle = function() {
|
|
6170
6635
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
6171
6636
|
};
|
|
6172
6637
|
|
|
@@ -6175,35 +6640,35 @@ proto.config.MirrorItem.prototype.getZoneName = function() {
|
|
|
6175
6640
|
* @param {string} value
|
|
6176
6641
|
* @return {!proto.config.MirrorItem} returns this
|
|
6177
6642
|
*/
|
|
6178
|
-
proto.config.MirrorItem.prototype.
|
|
6179
|
-
return jspb.Message.
|
|
6643
|
+
proto.config.MirrorItem.prototype.setTitle = function(value) {
|
|
6644
|
+
return jspb.Message.setField(this, 2, value);
|
|
6180
6645
|
};
|
|
6181
6646
|
|
|
6182
6647
|
|
|
6183
6648
|
/**
|
|
6184
|
-
*
|
|
6185
|
-
* @return {
|
|
6649
|
+
* Clears the field making it undefined.
|
|
6650
|
+
* @return {!proto.config.MirrorItem} returns this
|
|
6186
6651
|
*/
|
|
6187
|
-
proto.config.MirrorItem.prototype.
|
|
6188
|
-
return
|
|
6652
|
+
proto.config.MirrorItem.prototype.clearTitle = function() {
|
|
6653
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
6189
6654
|
};
|
|
6190
6655
|
|
|
6191
6656
|
|
|
6192
6657
|
/**
|
|
6193
|
-
*
|
|
6194
|
-
* @return {
|
|
6658
|
+
* Returns whether this field is set.
|
|
6659
|
+
* @return {boolean}
|
|
6195
6660
|
*/
|
|
6196
|
-
proto.config.MirrorItem.prototype.
|
|
6197
|
-
return jspb.Message.
|
|
6661
|
+
proto.config.MirrorItem.prototype.hasTitle = function() {
|
|
6662
|
+
return jspb.Message.getField(this, 2) != null;
|
|
6198
6663
|
};
|
|
6199
6664
|
|
|
6200
6665
|
|
|
6201
6666
|
/**
|
|
6202
|
-
* optional string main_record =
|
|
6667
|
+
* optional string main_record = 3;
|
|
6203
6668
|
* @return {string}
|
|
6204
6669
|
*/
|
|
6205
6670
|
proto.config.MirrorItem.prototype.getMainRecord = function() {
|
|
6206
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6671
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
6207
6672
|
};
|
|
6208
6673
|
|
|
6209
6674
|
|
|
@@ -6212,7 +6677,7 @@ proto.config.MirrorItem.prototype.getMainRecord = function() {
|
|
|
6212
6677
|
* @return {!proto.config.MirrorItem} returns this
|
|
6213
6678
|
*/
|
|
6214
6679
|
proto.config.MirrorItem.prototype.setMainRecord = function(value) {
|
|
6215
|
-
return jspb.Message.setField(this,
|
|
6680
|
+
return jspb.Message.setField(this, 3, value);
|
|
6216
6681
|
};
|
|
6217
6682
|
|
|
6218
6683
|
|
|
@@ -6221,7 +6686,7 @@ proto.config.MirrorItem.prototype.setMainRecord = function(value) {
|
|
|
6221
6686
|
* @return {!proto.config.MirrorItem} returns this
|
|
6222
6687
|
*/
|
|
6223
6688
|
proto.config.MirrorItem.prototype.clearMainRecord = function() {
|
|
6224
|
-
return jspb.Message.setField(this,
|
|
6689
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
6225
6690
|
};
|
|
6226
6691
|
|
|
6227
6692
|
|
|
@@ -6230,16 +6695,16 @@ proto.config.MirrorItem.prototype.clearMainRecord = function() {
|
|
|
6230
6695
|
* @return {boolean}
|
|
6231
6696
|
*/
|
|
6232
6697
|
proto.config.MirrorItem.prototype.hasMainRecord = function() {
|
|
6233
|
-
return jspb.Message.getField(this,
|
|
6698
|
+
return jspb.Message.getField(this, 3) != null;
|
|
6234
6699
|
};
|
|
6235
6700
|
|
|
6236
6701
|
|
|
6237
6702
|
/**
|
|
6238
|
-
* optional string api_record =
|
|
6703
|
+
* optional string api_record = 4;
|
|
6239
6704
|
* @return {string}
|
|
6240
6705
|
*/
|
|
6241
6706
|
proto.config.MirrorItem.prototype.getApiRecord = function() {
|
|
6242
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6707
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
6243
6708
|
};
|
|
6244
6709
|
|
|
6245
6710
|
|
|
@@ -6248,7 +6713,7 @@ proto.config.MirrorItem.prototype.getApiRecord = function() {
|
|
|
6248
6713
|
* @return {!proto.config.MirrorItem} returns this
|
|
6249
6714
|
*/
|
|
6250
6715
|
proto.config.MirrorItem.prototype.setApiRecord = function(value) {
|
|
6251
|
-
return jspb.Message.setField(this,
|
|
6716
|
+
return jspb.Message.setField(this, 4, value);
|
|
6252
6717
|
};
|
|
6253
6718
|
|
|
6254
6719
|
|
|
@@ -6257,7 +6722,7 @@ proto.config.MirrorItem.prototype.setApiRecord = function(value) {
|
|
|
6257
6722
|
* @return {!proto.config.MirrorItem} returns this
|
|
6258
6723
|
*/
|
|
6259
6724
|
proto.config.MirrorItem.prototype.clearApiRecord = function() {
|
|
6260
|
-
return jspb.Message.setField(this,
|
|
6725
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
6261
6726
|
};
|
|
6262
6727
|
|
|
6263
6728
|
|
|
@@ -6266,16 +6731,16 @@ proto.config.MirrorItem.prototype.clearApiRecord = function() {
|
|
|
6266
6731
|
* @return {boolean}
|
|
6267
6732
|
*/
|
|
6268
6733
|
proto.config.MirrorItem.prototype.hasApiRecord = function() {
|
|
6269
|
-
return jspb.Message.getField(this,
|
|
6734
|
+
return jspb.Message.getField(this, 4) != null;
|
|
6270
6735
|
};
|
|
6271
6736
|
|
|
6272
6737
|
|
|
6273
6738
|
/**
|
|
6274
|
-
* optional string cdn_record =
|
|
6739
|
+
* optional string cdn_record = 5;
|
|
6275
6740
|
* @return {string}
|
|
6276
6741
|
*/
|
|
6277
6742
|
proto.config.MirrorItem.prototype.getCdnRecord = function() {
|
|
6278
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6743
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
6279
6744
|
};
|
|
6280
6745
|
|
|
6281
6746
|
|
|
@@ -6284,7 +6749,7 @@ proto.config.MirrorItem.prototype.getCdnRecord = function() {
|
|
|
6284
6749
|
* @return {!proto.config.MirrorItem} returns this
|
|
6285
6750
|
*/
|
|
6286
6751
|
proto.config.MirrorItem.prototype.setCdnRecord = function(value) {
|
|
6287
|
-
return jspb.Message.setField(this,
|
|
6752
|
+
return jspb.Message.setField(this, 5, value);
|
|
6288
6753
|
};
|
|
6289
6754
|
|
|
6290
6755
|
|
|
@@ -6293,7 +6758,7 @@ proto.config.MirrorItem.prototype.setCdnRecord = function(value) {
|
|
|
6293
6758
|
* @return {!proto.config.MirrorItem} returns this
|
|
6294
6759
|
*/
|
|
6295
6760
|
proto.config.MirrorItem.prototype.clearCdnRecord = function() {
|
|
6296
|
-
return jspb.Message.setField(this,
|
|
6761
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
6297
6762
|
};
|
|
6298
6763
|
|
|
6299
6764
|
|
|
@@ -6302,16 +6767,16 @@ proto.config.MirrorItem.prototype.clearCdnRecord = function() {
|
|
|
6302
6767
|
* @return {boolean}
|
|
6303
6768
|
*/
|
|
6304
6769
|
proto.config.MirrorItem.prototype.hasCdnRecord = function() {
|
|
6305
|
-
return jspb.Message.getField(this,
|
|
6770
|
+
return jspb.Message.getField(this, 5) != null;
|
|
6306
6771
|
};
|
|
6307
6772
|
|
|
6308
6773
|
|
|
6309
6774
|
/**
|
|
6310
|
-
* repeated string countries =
|
|
6775
|
+
* repeated string countries = 6;
|
|
6311
6776
|
* @return {!Array<string>}
|
|
6312
6777
|
*/
|
|
6313
6778
|
proto.config.MirrorItem.prototype.getCountriesList = function() {
|
|
6314
|
-
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this,
|
|
6779
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
|
|
6315
6780
|
};
|
|
6316
6781
|
|
|
6317
6782
|
|
|
@@ -6320,7 +6785,7 @@ proto.config.MirrorItem.prototype.getCountriesList = function() {
|
|
|
6320
6785
|
* @return {!proto.config.MirrorItem} returns this
|
|
6321
6786
|
*/
|
|
6322
6787
|
proto.config.MirrorItem.prototype.setCountriesList = function(value) {
|
|
6323
|
-
return jspb.Message.setField(this,
|
|
6788
|
+
return jspb.Message.setField(this, 6, value || []);
|
|
6324
6789
|
};
|
|
6325
6790
|
|
|
6326
6791
|
|
|
@@ -6330,7 +6795,7 @@ proto.config.MirrorItem.prototype.setCountriesList = function(value) {
|
|
|
6330
6795
|
* @return {!proto.config.MirrorItem} returns this
|
|
6331
6796
|
*/
|
|
6332
6797
|
proto.config.MirrorItem.prototype.addCountries = function(value, opt_index) {
|
|
6333
|
-
return jspb.Message.addToRepeatedField(this,
|
|
6798
|
+
return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
|
|
6334
6799
|
};
|
|
6335
6800
|
|
|
6336
6801
|
|
|
@@ -6344,47 +6809,11 @@ proto.config.MirrorItem.prototype.clearCountriesList = function() {
|
|
|
6344
6809
|
|
|
6345
6810
|
|
|
6346
6811
|
/**
|
|
6347
|
-
* optional string
|
|
6348
|
-
* @return {string}
|
|
6349
|
-
*/
|
|
6350
|
-
proto.config.MirrorItem.prototype.getTitle = function() {
|
|
6351
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
6352
|
-
};
|
|
6353
|
-
|
|
6354
|
-
|
|
6355
|
-
/**
|
|
6356
|
-
* @param {string} value
|
|
6357
|
-
* @return {!proto.config.MirrorItem} returns this
|
|
6358
|
-
*/
|
|
6359
|
-
proto.config.MirrorItem.prototype.setTitle = function(value) {
|
|
6360
|
-
return jspb.Message.setField(this, 8, value);
|
|
6361
|
-
};
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
/**
|
|
6365
|
-
* Clears the field making it undefined.
|
|
6366
|
-
* @return {!proto.config.MirrorItem} returns this
|
|
6367
|
-
*/
|
|
6368
|
-
proto.config.MirrorItem.prototype.clearTitle = function() {
|
|
6369
|
-
return jspb.Message.setField(this, 8, undefined);
|
|
6370
|
-
};
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
/**
|
|
6374
|
-
* Returns whether this field is set.
|
|
6375
|
-
* @return {boolean}
|
|
6376
|
-
*/
|
|
6377
|
-
proto.config.MirrorItem.prototype.hasTitle = function() {
|
|
6378
|
-
return jspb.Message.getField(this, 8) != null;
|
|
6379
|
-
};
|
|
6380
|
-
|
|
6381
|
-
|
|
6382
|
-
/**
|
|
6383
|
-
* optional string priority = 9;
|
|
6812
|
+
* optional string priority = 7;
|
|
6384
6813
|
* @return {string}
|
|
6385
6814
|
*/
|
|
6386
6815
|
proto.config.MirrorItem.prototype.getPriority = function() {
|
|
6387
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6816
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
6388
6817
|
};
|
|
6389
6818
|
|
|
6390
6819
|
|
|
@@ -6393,7 +6822,7 @@ proto.config.MirrorItem.prototype.getPriority = function() {
|
|
|
6393
6822
|
* @return {!proto.config.MirrorItem} returns this
|
|
6394
6823
|
*/
|
|
6395
6824
|
proto.config.MirrorItem.prototype.setPriority = function(value) {
|
|
6396
|
-
return jspb.Message.setField(this,
|
|
6825
|
+
return jspb.Message.setField(this, 7, value);
|
|
6397
6826
|
};
|
|
6398
6827
|
|
|
6399
6828
|
|
|
@@ -6402,7 +6831,7 @@ proto.config.MirrorItem.prototype.setPriority = function(value) {
|
|
|
6402
6831
|
* @return {!proto.config.MirrorItem} returns this
|
|
6403
6832
|
*/
|
|
6404
6833
|
proto.config.MirrorItem.prototype.clearPriority = function() {
|
|
6405
|
-
return jspb.Message.setField(this,
|
|
6834
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
6406
6835
|
};
|
|
6407
6836
|
|
|
6408
6837
|
|
|
@@ -6411,16 +6840,16 @@ proto.config.MirrorItem.prototype.clearPriority = function() {
|
|
|
6411
6840
|
* @return {boolean}
|
|
6412
6841
|
*/
|
|
6413
6842
|
proto.config.MirrorItem.prototype.hasPriority = function() {
|
|
6414
|
-
return jspb.Message.getField(this,
|
|
6843
|
+
return jspb.Message.getField(this, 7) != null;
|
|
6415
6844
|
};
|
|
6416
6845
|
|
|
6417
6846
|
|
|
6418
6847
|
/**
|
|
6419
|
-
* optional string status =
|
|
6848
|
+
* optional string status = 8;
|
|
6420
6849
|
* @return {string}
|
|
6421
6850
|
*/
|
|
6422
6851
|
proto.config.MirrorItem.prototype.getStatus = function() {
|
|
6423
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
6852
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
6424
6853
|
};
|
|
6425
6854
|
|
|
6426
6855
|
|
|
@@ -6429,7 +6858,7 @@ proto.config.MirrorItem.prototype.getStatus = function() {
|
|
|
6429
6858
|
* @return {!proto.config.MirrorItem} returns this
|
|
6430
6859
|
*/
|
|
6431
6860
|
proto.config.MirrorItem.prototype.setStatus = function(value) {
|
|
6432
|
-
return jspb.Message.setField(this,
|
|
6861
|
+
return jspb.Message.setField(this, 8, value);
|
|
6433
6862
|
};
|
|
6434
6863
|
|
|
6435
6864
|
|
|
@@ -6438,7 +6867,7 @@ proto.config.MirrorItem.prototype.setStatus = function(value) {
|
|
|
6438
6867
|
* @return {!proto.config.MirrorItem} returns this
|
|
6439
6868
|
*/
|
|
6440
6869
|
proto.config.MirrorItem.prototype.clearStatus = function() {
|
|
6441
|
-
return jspb.Message.setField(this,
|
|
6870
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
6442
6871
|
};
|
|
6443
6872
|
|
|
6444
6873
|
|
|
@@ -6447,16 +6876,16 @@ proto.config.MirrorItem.prototype.clearStatus = function() {
|
|
|
6447
6876
|
* @return {boolean}
|
|
6448
6877
|
*/
|
|
6449
6878
|
proto.config.MirrorItem.prototype.hasStatus = function() {
|
|
6450
|
-
return jspb.Message.getField(this,
|
|
6879
|
+
return jspb.Message.getField(this, 8) != null;
|
|
6451
6880
|
};
|
|
6452
6881
|
|
|
6453
6882
|
|
|
6454
6883
|
/**
|
|
6455
|
-
* optional int32 is_active =
|
|
6884
|
+
* optional int32 is_active = 9;
|
|
6456
6885
|
* @return {number}
|
|
6457
6886
|
*/
|
|
6458
6887
|
proto.config.MirrorItem.prototype.getIsActive = function() {
|
|
6459
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
|
6888
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
|
|
6460
6889
|
};
|
|
6461
6890
|
|
|
6462
6891
|
|
|
@@ -6465,7 +6894,7 @@ proto.config.MirrorItem.prototype.getIsActive = function() {
|
|
|
6465
6894
|
* @return {!proto.config.MirrorItem} returns this
|
|
6466
6895
|
*/
|
|
6467
6896
|
proto.config.MirrorItem.prototype.setIsActive = function(value) {
|
|
6468
|
-
return jspb.Message.setField(this,
|
|
6897
|
+
return jspb.Message.setField(this, 9, value);
|
|
6469
6898
|
};
|
|
6470
6899
|
|
|
6471
6900
|
|
|
@@ -6474,7 +6903,7 @@ proto.config.MirrorItem.prototype.setIsActive = function(value) {
|
|
|
6474
6903
|
* @return {!proto.config.MirrorItem} returns this
|
|
6475
6904
|
*/
|
|
6476
6905
|
proto.config.MirrorItem.prototype.clearIsActive = function() {
|
|
6477
|
-
return jspb.Message.setField(this,
|
|
6906
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
6478
6907
|
};
|
|
6479
6908
|
|
|
6480
6909
|
|
|
@@ -6483,7 +6912,7 @@ proto.config.MirrorItem.prototype.clearIsActive = function() {
|
|
|
6483
6912
|
* @return {boolean}
|
|
6484
6913
|
*/
|
|
6485
6914
|
proto.config.MirrorItem.prototype.hasIsActive = function() {
|
|
6486
|
-
return jspb.Message.getField(this,
|
|
6915
|
+
return jspb.Message.getField(this, 9) != null;
|
|
6487
6916
|
};
|
|
6488
6917
|
|
|
6489
6918
|
|