@sniipwebmaster/payroll-service-client-grpcweb 25.10.396 → 25.10.402
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.
|
@@ -10222,7 +10222,7 @@ proto.payrollserviceapi.BusinessDetails.toObject = function(includeInstance, msg
|
|
|
10222
10222
|
updatedAt: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
10223
10223
|
email: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
10224
10224
|
phone: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
10225
|
-
status: jspb.Message.getFieldWithDefault(msg, 9,
|
|
10225
|
+
status: jspb.Message.getFieldWithDefault(msg, 9, 0)
|
|
10226
10226
|
};
|
|
10227
10227
|
|
|
10228
10228
|
if (includeInstance) {
|
|
@@ -10288,7 +10288,7 @@ proto.payrollserviceapi.BusinessDetails.deserializeBinaryFromReader = function(m
|
|
|
10288
10288
|
msg.setPhone(value);
|
|
10289
10289
|
break;
|
|
10290
10290
|
case 9:
|
|
10291
|
-
var value = /** @type {
|
|
10291
|
+
var value = /** @type {!proto.payrollserviceapi.BusinessStatus} */ (reader.readEnum());
|
|
10292
10292
|
msg.setStatus(value);
|
|
10293
10293
|
break;
|
|
10294
10294
|
default:
|
|
@@ -10370,8 +10370,8 @@ proto.payrollserviceapi.BusinessDetails.serializeBinaryToWriter = function(messa
|
|
|
10370
10370
|
);
|
|
10371
10371
|
}
|
|
10372
10372
|
f = message.getStatus();
|
|
10373
|
-
if (f
|
|
10374
|
-
writer.
|
|
10373
|
+
if (f !== 0.0) {
|
|
10374
|
+
writer.writeEnum(
|
|
10375
10375
|
9,
|
|
10376
10376
|
f
|
|
10377
10377
|
);
|
|
@@ -10506,20 +10506,20 @@ proto.payrollserviceapi.BusinessDetails.prototype.setPhone = function(value) {
|
|
|
10506
10506
|
|
|
10507
10507
|
|
|
10508
10508
|
/**
|
|
10509
|
-
* optional
|
|
10510
|
-
* @return {
|
|
10509
|
+
* optional BusinessStatus status = 9;
|
|
10510
|
+
* @return {!proto.payrollserviceapi.BusinessStatus}
|
|
10511
10511
|
*/
|
|
10512
10512
|
proto.payrollserviceapi.BusinessDetails.prototype.getStatus = function() {
|
|
10513
|
-
return /** @type {
|
|
10513
|
+
return /** @type {!proto.payrollserviceapi.BusinessStatus} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
|
|
10514
10514
|
};
|
|
10515
10515
|
|
|
10516
10516
|
|
|
10517
10517
|
/**
|
|
10518
|
-
* @param {
|
|
10518
|
+
* @param {!proto.payrollserviceapi.BusinessStatus} value
|
|
10519
10519
|
* @return {!proto.payrollserviceapi.BusinessDetails} returns this
|
|
10520
10520
|
*/
|
|
10521
10521
|
proto.payrollserviceapi.BusinessDetails.prototype.setStatus = function(value) {
|
|
10522
|
-
return jspb.Message.
|
|
10522
|
+
return jspb.Message.setProto3EnumField(this, 9, value);
|
|
10523
10523
|
};
|
|
10524
10524
|
|
|
10525
10525
|
|