Stefan Mirea

Results 5 issues of Stefan Mirea

**Intended outcome:** `observer()` correctly passes inferred props types along **Actual outcome:** wrapping a component in `observer()` causes the props to be `any` **How to reproduce the issue:** [Typescript playground example](https://www.typescriptlang.org/play?ssl=1&ssc=1&pln=2&pc=1#code/JYWwDg9gTgLgBAbzhARgZwKZQG5bgXzgDMoIQ4ByEVADwFooMBDAYxgoG4AoL4AOxhYirDHADKACyZgMAHgCCAPkRc4a4nwBccABRMoAczTb5ASjgBeZXwCuIFHgA+cWwBtX3fDyI2+bYBB8cMAAJhgCwDAAnrIAGoo6NNqxpsmIcIwwNlBBNBwEPCyBaPAACq5M-NqS0nJItiDaAIwATADMBMoWKuoa2vpGlsoDaAB0DQA0XF5cRXwlcADqkRIAkmER0dVSMrL1ds3tnZY96kRawRswkVF6hmhDcCPjdqZTM3MLyzASAPLoWFwUG2tT2LgOcFaHXwXVOanO2lQmBwWDugysT3uLxAb2mQA)...

🐛 bug

Due to the use of `moredots` in `modifyObject`, it is currently impossible to remove properties of a nested object via the API (talking about this line: https://github.com/florianholzapfel/express-restify-mongoose/blob/master/src/operations.js#L204) so if you...

enhancement

This should work: ``` curl -XPUT /api/v1/User -d {"$addToSet": {"friends": "BoB"}} ``` but because we use [document.set](http://mongoosejs.com/docs/api.html#document_Document-set) instead of [document.update](http://mongoosejs.com/docs/api.html#document_Document-update) we loose the ability to use any of the [mongodb...

enhancement

Mongodb supports a [text index](https://docs.mongodb.org/master/core/index-text/) You use it in mongoose by enabling an extra key on the `find()` operation: ``` const Product = mongoose.model('Product', new Schema({ name: String, })) Product.schema.index({name:...

enhancement

Say I have an API that supports query filters (e.g. most notably for use in an autocomplete component). I am trying to fit that workflow into the items-store pipeline but...