@sniipwebmaster/user-service-client-grpcweb-ts 24.11.11231 → 24.11.11240
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.
|
@@ -5477,6 +5477,9 @@ export class GetUserStatusResponse extends jspb.Message {
|
|
|
5477
5477
|
getMaximumdailycardsexceededmessage(): string;
|
|
5478
5478
|
setMaximumdailycardsexceededmessage(value: string): GetUserStatusResponse;
|
|
5479
5479
|
|
|
5480
|
+
getCanmanuallyaddfailedsme(): boolean;
|
|
5481
|
+
setCanmanuallyaddfailedsme(value: boolean): GetUserStatusResponse;
|
|
5482
|
+
|
|
5480
5483
|
serializeBinary(): Uint8Array;
|
|
5481
5484
|
toObject(includeInstance?: boolean): GetUserStatusResponse.AsObject;
|
|
5482
5485
|
static toObject(includeInstance: boolean, msg: GetUserStatusResponse): GetUserStatusResponse.AsObject;
|
|
@@ -5493,6 +5496,7 @@ export namespace GetUserStatusResponse {
|
|
|
5493
5496
|
displayname: string,
|
|
5494
5497
|
maximumdailycards: number,
|
|
5495
5498
|
maximumdailycardsexceededmessage: string,
|
|
5499
|
+
canmanuallyaddfailedsme: boolean,
|
|
5496
5500
|
}
|
|
5497
5501
|
}
|
|
5498
5502
|
|
|
@@ -45084,7 +45084,8 @@ proto.sniipuserservice.GetUserStatusResponse.toObject = function(includeInstance
|
|
|
45084
45084
|
status: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
45085
45085
|
displayname: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
45086
45086
|
maximumdailycards: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
45087
|
-
maximumdailycardsexceededmessage: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
45087
|
+
maximumdailycardsexceededmessage: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
45088
|
+
canmanuallyaddfailedsme: jspb.Message.getBooleanFieldWithDefault(msg, 7, false)
|
|
45088
45089
|
};
|
|
45089
45090
|
|
|
45090
45091
|
if (includeInstance) {
|
|
@@ -45146,6 +45147,10 @@ proto.sniipuserservice.GetUserStatusResponse.deserializeBinaryFromReader = funct
|
|
|
45146
45147
|
var value = /** @type {string} */ (reader.readString());
|
|
45147
45148
|
msg.setMaximumdailycardsexceededmessage(value);
|
|
45148
45149
|
break;
|
|
45150
|
+
case 7:
|
|
45151
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
45152
|
+
msg.setCanmanuallyaddfailedsme(value);
|
|
45153
|
+
break;
|
|
45149
45154
|
default:
|
|
45150
45155
|
reader.skipField();
|
|
45151
45156
|
break;
|
|
@@ -45218,6 +45223,13 @@ proto.sniipuserservice.GetUserStatusResponse.serializeBinaryToWriter = function(
|
|
|
45218
45223
|
f
|
|
45219
45224
|
);
|
|
45220
45225
|
}
|
|
45226
|
+
f = message.getCanmanuallyaddfailedsme();
|
|
45227
|
+
if (f) {
|
|
45228
|
+
writer.writeBool(
|
|
45229
|
+
7,
|
|
45230
|
+
f
|
|
45231
|
+
);
|
|
45232
|
+
}
|
|
45221
45233
|
};
|
|
45222
45234
|
|
|
45223
45235
|
|
|
@@ -45348,6 +45360,24 @@ proto.sniipuserservice.GetUserStatusResponse.prototype.setMaximumdailycardsexcee
|
|
|
45348
45360
|
};
|
|
45349
45361
|
|
|
45350
45362
|
|
|
45363
|
+
/**
|
|
45364
|
+
* optional bool canManuallyAddFailedSme = 7;
|
|
45365
|
+
* @return {boolean}
|
|
45366
|
+
*/
|
|
45367
|
+
proto.sniipuserservice.GetUserStatusResponse.prototype.getCanmanuallyaddfailedsme = function() {
|
|
45368
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 7, false));
|
|
45369
|
+
};
|
|
45370
|
+
|
|
45371
|
+
|
|
45372
|
+
/**
|
|
45373
|
+
* @param {boolean} value
|
|
45374
|
+
* @return {!proto.sniipuserservice.GetUserStatusResponse} returns this
|
|
45375
|
+
*/
|
|
45376
|
+
proto.sniipuserservice.GetUserStatusResponse.prototype.setCanmanuallyaddfailedsme = function(value) {
|
|
45377
|
+
return jspb.Message.setProto3BooleanField(this, 7, value);
|
|
45378
|
+
};
|
|
45379
|
+
|
|
45380
|
+
|
|
45351
45381
|
/**
|
|
45352
45382
|
* @enum {number}
|
|
45353
45383
|
*/
|