@sniipwebmaster/payroll-service-client-grpcweb 25.10.246 → 25.10.252
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/dependancies/service_pb.js +62 -2
- package/package.json +1 -1
|
@@ -8661,7 +8661,8 @@ proto.payrollserviceapi.BusinessSummary.toObject = function(includeInstance, msg
|
|
|
8661
8661
|
name: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
8662
8662
|
abn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
8663
8663
|
createdAt: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
8664
|
-
updatedAt: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
8664
|
+
updatedAt: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
8665
|
+
status: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
8665
8666
|
};
|
|
8666
8667
|
|
|
8667
8668
|
if (includeInstance) {
|
|
@@ -8718,6 +8719,10 @@ proto.payrollserviceapi.BusinessSummary.deserializeBinaryFromReader = function(m
|
|
|
8718
8719
|
var value = /** @type {string} */ (reader.readString());
|
|
8719
8720
|
msg.setUpdatedAt(value);
|
|
8720
8721
|
break;
|
|
8722
|
+
case 7:
|
|
8723
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8724
|
+
msg.setStatus(value);
|
|
8725
|
+
break;
|
|
8721
8726
|
default:
|
|
8722
8727
|
reader.skipField();
|
|
8723
8728
|
break;
|
|
@@ -8782,6 +8787,13 @@ proto.payrollserviceapi.BusinessSummary.serializeBinaryToWriter = function(messa
|
|
|
8782
8787
|
f
|
|
8783
8788
|
);
|
|
8784
8789
|
}
|
|
8790
|
+
f = message.getStatus();
|
|
8791
|
+
if (f.length > 0) {
|
|
8792
|
+
writer.writeString(
|
|
8793
|
+
7,
|
|
8794
|
+
f
|
|
8795
|
+
);
|
|
8796
|
+
}
|
|
8785
8797
|
};
|
|
8786
8798
|
|
|
8787
8799
|
|
|
@@ -8875,6 +8887,24 @@ proto.payrollserviceapi.BusinessSummary.prototype.setUpdatedAt = function(value)
|
|
|
8875
8887
|
};
|
|
8876
8888
|
|
|
8877
8889
|
|
|
8890
|
+
/**
|
|
8891
|
+
* optional string status = 7;
|
|
8892
|
+
* @return {string}
|
|
8893
|
+
*/
|
|
8894
|
+
proto.payrollserviceapi.BusinessSummary.prototype.getStatus = function() {
|
|
8895
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
8896
|
+
};
|
|
8897
|
+
|
|
8898
|
+
|
|
8899
|
+
/**
|
|
8900
|
+
* @param {string} value
|
|
8901
|
+
* @return {!proto.payrollserviceapi.BusinessSummary} returns this
|
|
8902
|
+
*/
|
|
8903
|
+
proto.payrollserviceapi.BusinessSummary.prototype.setStatus = function(value) {
|
|
8904
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
8905
|
+
};
|
|
8906
|
+
|
|
8907
|
+
|
|
8878
8908
|
|
|
8879
8909
|
|
|
8880
8910
|
|
|
@@ -9305,7 +9335,8 @@ proto.payrollserviceapi.BusinessDetails.toObject = function(includeInstance, msg
|
|
|
9305
9335
|
createdAt: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
9306
9336
|
updatedAt: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
9307
9337
|
email: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
9308
|
-
phone: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
9338
|
+
phone: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
9339
|
+
status: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
9309
9340
|
};
|
|
9310
9341
|
|
|
9311
9342
|
if (includeInstance) {
|
|
@@ -9370,6 +9401,10 @@ proto.payrollserviceapi.BusinessDetails.deserializeBinaryFromReader = function(m
|
|
|
9370
9401
|
var value = /** @type {string} */ (reader.readString());
|
|
9371
9402
|
msg.setPhone(value);
|
|
9372
9403
|
break;
|
|
9404
|
+
case 9:
|
|
9405
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9406
|
+
msg.setStatus(value);
|
|
9407
|
+
break;
|
|
9373
9408
|
default:
|
|
9374
9409
|
reader.skipField();
|
|
9375
9410
|
break;
|
|
@@ -9448,6 +9483,13 @@ proto.payrollserviceapi.BusinessDetails.serializeBinaryToWriter = function(messa
|
|
|
9448
9483
|
f
|
|
9449
9484
|
);
|
|
9450
9485
|
}
|
|
9486
|
+
f = message.getStatus();
|
|
9487
|
+
if (f.length > 0) {
|
|
9488
|
+
writer.writeString(
|
|
9489
|
+
9,
|
|
9490
|
+
f
|
|
9491
|
+
);
|
|
9492
|
+
}
|
|
9451
9493
|
};
|
|
9452
9494
|
|
|
9453
9495
|
|
|
@@ -9577,6 +9619,24 @@ proto.payrollserviceapi.BusinessDetails.prototype.setPhone = function(value) {
|
|
|
9577
9619
|
};
|
|
9578
9620
|
|
|
9579
9621
|
|
|
9622
|
+
/**
|
|
9623
|
+
* optional string status = 9;
|
|
9624
|
+
* @return {string}
|
|
9625
|
+
*/
|
|
9626
|
+
proto.payrollserviceapi.BusinessDetails.prototype.getStatus = function() {
|
|
9627
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
9628
|
+
};
|
|
9629
|
+
|
|
9630
|
+
|
|
9631
|
+
/**
|
|
9632
|
+
* @param {string} value
|
|
9633
|
+
* @return {!proto.payrollserviceapi.BusinessDetails} returns this
|
|
9634
|
+
*/
|
|
9635
|
+
proto.payrollserviceapi.BusinessDetails.prototype.setStatus = function(value) {
|
|
9636
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
9637
|
+
};
|
|
9638
|
+
|
|
9639
|
+
|
|
9580
9640
|
|
|
9581
9641
|
|
|
9582
9642
|
|