Viacheslav Snizhko
Viacheslav Snizhko
```javascript const MyEntity = new Entity({ ..., attributes: { ..., someAttr: 'string', myMap: 'map' } await MyEntity.update({ someAttr: 'foo'}) // works fine await MyEntity.update({ someAttr: 'foo', myMap: undefined}) // TypeError:...
Firefox version: 57.0.2 (64-bit) Addon version: 0.8.6 Screenshot: http://prntscr.com/hqoedf As you see the number of unread emails on the badge (5) and in the popup (4) is different. This is...
I set 'max' and initial data with `heatmap.setData({ max: 6, data: heatmapData });` but when I add datapoints with `heatmap.addData(..)` the 'max' value automatically changes, so I didn't found any...
Is it possible to implement such structure? ```xml ... http://www.example.com/page-1/ ... ``` https://developers.google.com/search/mobile-sites/mobile-seo/separate-urls
I thought when providing an array of strings it should filter on exact match But: ```javascript const rule = { eventType: ['specific-thing-changed'] } const uow = { event: { type:...
### What version of React Router are you using? 7.0.0-pre.1 ### Steps to Reproduce This repo is a clone of the sample app (`npx degit remix-run/react-router/templates/basic#dev my-app`) with `{appDirectory: './app/website'}`...
To be consistent with other functions that we pass to rules (toUpdateRequest etc.) that have signature `(uow, rule) => ...` can we have similar signature for `compact.group` function? Changing [this](https://github.com/jgilbert01/aws-lambda-stream/blob/0bad9663c2139c2b41f98d16a015142242dab1c6/src/utils/batch.js#L33):...
[Here](https://github.com/jgilbert01/aws-lambda-stream/blob/e00f09e1922a4a6d5cc86ccd3d7ddcdce2d0a3b1/src/faults/index.js#L13C3-L13C9) `logErr` is called before `if (err.uow...` check. It [calls](https://github.com/jgilbert01/aws-lambda-stream/blob/e00f09e1922a4a6d5cc86ccd3d7ddcdce2d0a3b1/src/faults/index.js#L90C19-L90C35) `err.uow.pipeline` which throws `Cannot read properties of undefined (reading 'pipeline')` if error was not properly handled with `faulty` etc. In...
Right now it transforms with [transformToString()](https://github.com/jgilbert01/aws-lambda-stream/blob/71d1c37a8b7687df9c62affc179ee5bb457cfefa/src/connectors/s3.js#L75C75-L75C94) I need to use `.transformToByteArray()` instead (transforming string to byte array doesn't give same result as when transforming with transformToByteArray() from the start) I...