@teamkeel/functions-runtime 0.410.1 → 0.410.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamkeel/functions-runtime",
3
- "version": "0.410.1",
3
+ "version": "0.410.2",
4
4
  "description": "Internal package used by @teamkeel/sdk",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -25,6 +25,10 @@ class KeelCamelCasePlugin {
25
25
  }
26
26
  mapRow(row) {
27
27
  return Object.keys(row).reduce((obj, key) => {
28
+ // Fields using @sequence will have a corresponding __sequence field which we drop as we don't want to return it
29
+ if (key.endsWith("__sequence")) {
30
+ return obj;
31
+ }
28
32
  let value = row[key];
29
33
  if (Array.isArray(value)) {
30
34
  value = value.map((it) =>