@textile/users-grpc
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "@textile/users-grpc", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "A client for interacting with the Textile Users gRPC API.", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -73,2 +73,5 @@ // package: users.pb | ||
getIsdb(): boolean; | ||
setIsdb(value: boolean): void; | ||
serializeBinary(): Uint8Array; | ||
@@ -88,4 +91,5 @@ toObject(includeInstance?: boolean): GetThreadReply.AsObject; | ||
name: string, | ||
isdb: boolean, | ||
} | ||
} | ||
@@ -527,3 +527,4 @@ // source: users.proto | ||
id: msg.getId_asB64(), | ||
name: jspb.Message.getFieldWithDefault(msg, 2, "") | ||
name: jspb.Message.getFieldWithDefault(msg, 2, ""), | ||
isdb: jspb.Message.getBooleanFieldWithDefault(msg, 3, false) | ||
}; | ||
@@ -573,2 +574,6 @@ | ||
break; | ||
case 3: | ||
var value = /** @type {boolean} */ (reader.readBool()); | ||
msg.setIsdb(value); | ||
break; | ||
default: | ||
@@ -617,2 +622,9 @@ reader.skipField(); | ||
} | ||
f = message.getIsdb(); | ||
if (f) { | ||
writer.writeBool( | ||
3, | ||
f | ||
); | ||
} | ||
}; | ||
@@ -681,2 +693,20 @@ | ||
/** | ||
* optional bool isDB = 3; | ||
* @return {boolean} | ||
*/ | ||
proto.users.pb.GetThreadReply.prototype.getIsdb = function() { | ||
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false)); | ||
}; | ||
/** | ||
* @param {boolean} value | ||
* @return {!proto.users.pb.GetThreadReply} returns this | ||
*/ | ||
proto.users.pb.GetThreadReply.prototype.setIsdb = function(value) { | ||
return jspb.Message.setProto3BooleanField(this, 3, value); | ||
}; | ||
goog.object.extend(exports, proto.users.pb); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31017
854