Meteor-rethinkdb difficulties with rethinkdb 2.2

Hello,
I use the Slava meteor rethinkdb package.
I publish my tables catagories like this

Meteor.publish(“categories”, function () {
return Categories.changes({ includeInitial: true }).changes({includeStates: false}).orderBy({ index: ‘id’ });
});
But I have this error :
r.table(“categories”).changes({includeInitial: true}).changes({includeStates: false}).orderBy({index: “id”}).changes({includeStates: true})
Anyone hava an idea ?

Thank you