@sniipwebmaster/payroll-service-client-grpcweb 25.10.384 → 25.10.396
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_grpc_web_pb.js +61 -61
- package/dependancies/service_pb.js +906 -954
- package/package.json +1 -1
|
@@ -873,67 +873,6 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.createBusiness =
|
|
|
873
873
|
};
|
|
874
874
|
|
|
875
875
|
|
|
876
|
-
/**
|
|
877
|
-
* @const
|
|
878
|
-
* @type {!grpc.web.MethodDescriptor<
|
|
879
|
-
* !proto.payrollserviceapi.ListBusinessesRequest,
|
|
880
|
-
* !proto.payrollserviceapi.ListBusinessesResponse>}
|
|
881
|
-
*/
|
|
882
|
-
const methodDescriptor_PayrollService_ListBusinesses = new grpc.web.MethodDescriptor(
|
|
883
|
-
'/payrollserviceapi.PayrollService/ListBusinesses',
|
|
884
|
-
grpc.web.MethodType.UNARY,
|
|
885
|
-
proto.payrollserviceapi.ListBusinessesRequest,
|
|
886
|
-
proto.payrollserviceapi.ListBusinessesResponse,
|
|
887
|
-
/**
|
|
888
|
-
* @param {!proto.payrollserviceapi.ListBusinessesRequest} request
|
|
889
|
-
* @return {!Uint8Array}
|
|
890
|
-
*/
|
|
891
|
-
function(request) {
|
|
892
|
-
return request.serializeBinary();
|
|
893
|
-
},
|
|
894
|
-
proto.payrollserviceapi.ListBusinessesResponse.deserializeBinary
|
|
895
|
-
);
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
/**
|
|
899
|
-
* @param {!proto.payrollserviceapi.ListBusinessesRequest} request The
|
|
900
|
-
* request proto
|
|
901
|
-
* @param {?Object<string, string>} metadata User defined
|
|
902
|
-
* call metadata
|
|
903
|
-
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.ListBusinessesResponse)}
|
|
904
|
-
* callback The callback function(error, response)
|
|
905
|
-
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.ListBusinessesResponse>|undefined}
|
|
906
|
-
* The XHR Node Readable Stream
|
|
907
|
-
*/
|
|
908
|
-
proto.payrollserviceapi.PayrollServiceClient.prototype.listBusinesses =
|
|
909
|
-
function(request, metadata, callback) {
|
|
910
|
-
return this.client_.rpcCall(this.hostname_ +
|
|
911
|
-
'/payrollserviceapi.PayrollService/ListBusinesses',
|
|
912
|
-
request,
|
|
913
|
-
metadata || {},
|
|
914
|
-
methodDescriptor_PayrollService_ListBusinesses,
|
|
915
|
-
callback);
|
|
916
|
-
};
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
/**
|
|
920
|
-
* @param {!proto.payrollserviceapi.ListBusinessesRequest} request The
|
|
921
|
-
* request proto
|
|
922
|
-
* @param {?Object<string, string>=} metadata User defined
|
|
923
|
-
* call metadata
|
|
924
|
-
* @return {!Promise<!proto.payrollserviceapi.ListBusinessesResponse>}
|
|
925
|
-
* Promise that resolves to the response
|
|
926
|
-
*/
|
|
927
|
-
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.listBusinesses =
|
|
928
|
-
function(request, metadata) {
|
|
929
|
-
return this.client_.unaryCall(this.hostname_ +
|
|
930
|
-
'/payrollserviceapi.PayrollService/ListBusinesses',
|
|
931
|
-
request,
|
|
932
|
-
metadata || {},
|
|
933
|
-
methodDescriptor_PayrollService_ListBusinesses);
|
|
934
|
-
};
|
|
935
|
-
|
|
936
|
-
|
|
937
876
|
/**
|
|
938
877
|
* @const
|
|
939
878
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -1178,6 +1117,67 @@ proto.payrollserviceapi.PayrollServicePromiseClient.prototype.deleteBusiness =
|
|
|
1178
1117
|
};
|
|
1179
1118
|
|
|
1180
1119
|
|
|
1120
|
+
/**
|
|
1121
|
+
* @const
|
|
1122
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1123
|
+
* !proto.payrollserviceapi.ArchiveBusinessRequest,
|
|
1124
|
+
* !proto.payrollserviceapi.ArchiveBusinessResponse>}
|
|
1125
|
+
*/
|
|
1126
|
+
const methodDescriptor_PayrollService_ArchiveBusiness = new grpc.web.MethodDescriptor(
|
|
1127
|
+
'/payrollserviceapi.PayrollService/ArchiveBusiness',
|
|
1128
|
+
grpc.web.MethodType.UNARY,
|
|
1129
|
+
proto.payrollserviceapi.ArchiveBusinessRequest,
|
|
1130
|
+
proto.payrollserviceapi.ArchiveBusinessResponse,
|
|
1131
|
+
/**
|
|
1132
|
+
* @param {!proto.payrollserviceapi.ArchiveBusinessRequest} request
|
|
1133
|
+
* @return {!Uint8Array}
|
|
1134
|
+
*/
|
|
1135
|
+
function(request) {
|
|
1136
|
+
return request.serializeBinary();
|
|
1137
|
+
},
|
|
1138
|
+
proto.payrollserviceapi.ArchiveBusinessResponse.deserializeBinary
|
|
1139
|
+
);
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
/**
|
|
1143
|
+
* @param {!proto.payrollserviceapi.ArchiveBusinessRequest} request The
|
|
1144
|
+
* request proto
|
|
1145
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1146
|
+
* call metadata
|
|
1147
|
+
* @param {function(?grpc.web.RpcError, ?proto.payrollserviceapi.ArchiveBusinessResponse)}
|
|
1148
|
+
* callback The callback function(error, response)
|
|
1149
|
+
* @return {!grpc.web.ClientReadableStream<!proto.payrollserviceapi.ArchiveBusinessResponse>|undefined}
|
|
1150
|
+
* The XHR Node Readable Stream
|
|
1151
|
+
*/
|
|
1152
|
+
proto.payrollserviceapi.PayrollServiceClient.prototype.archiveBusiness =
|
|
1153
|
+
function(request, metadata, callback) {
|
|
1154
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1155
|
+
'/payrollserviceapi.PayrollService/ArchiveBusiness',
|
|
1156
|
+
request,
|
|
1157
|
+
metadata || {},
|
|
1158
|
+
methodDescriptor_PayrollService_ArchiveBusiness,
|
|
1159
|
+
callback);
|
|
1160
|
+
};
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
/**
|
|
1164
|
+
* @param {!proto.payrollserviceapi.ArchiveBusinessRequest} request The
|
|
1165
|
+
* request proto
|
|
1166
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1167
|
+
* call metadata
|
|
1168
|
+
* @return {!Promise<!proto.payrollserviceapi.ArchiveBusinessResponse>}
|
|
1169
|
+
* Promise that resolves to the response
|
|
1170
|
+
*/
|
|
1171
|
+
proto.payrollserviceapi.PayrollServicePromiseClient.prototype.archiveBusiness =
|
|
1172
|
+
function(request, metadata) {
|
|
1173
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1174
|
+
'/payrollserviceapi.PayrollService/ArchiveBusiness',
|
|
1175
|
+
request,
|
|
1176
|
+
metadata || {},
|
|
1177
|
+
methodDescriptor_PayrollService_ArchiveBusiness);
|
|
1178
|
+
};
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
1181
|
/**
|
|
1182
1182
|
* @const
|
|
1183
1183
|
* @type {!grpc.web.MethodDescriptor<
|