What it means
rs-x maps Date methods to property keys so expressions stay declarative. Use month, year, time, and the UTC variants directly in paths.
This goes through DatePropertyAccessor. The accessor maps each property key to the matching Date getter/setter methods, so you read via keys in expressions and write via Date setter methods.
Example: use invoiceDate.month, not invoiceDate.getMonth inside the expression string.
For mutations, use native setter methods such as setMonth, not direct assignment like invoiceDate.month = ....