@gbl-uzh/platform 0.4.8 → 0.4.10

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/dist/index.js CHANGED
@@ -1735,6 +1735,9 @@ async function getPlayerResult(args, ctx) {
1735
1735
  player: {
1736
1736
  id: args.playerId
1737
1737
  }
1738
+ },
1739
+ orderBy: {
1740
+ createdAt: "asc"
1738
1741
  }
1739
1742
  });
1740
1743
  return {
@@ -1912,6 +1915,9 @@ async function getPlayerTransactions(args, ctx) {
1912
1915
  player: {
1913
1916
  id: ctx.user.sub
1914
1917
  }
1918
+ },
1919
+ orderBy: {
1920
+ createdAt: "asc"
1915
1921
  }
1916
1922
  });
1917
1923
  return playerActions;
package/dist/nexus.js CHANGED
@@ -2012,6 +2012,9 @@ async function getPlayerResult(args, ctx) {
2012
2012
  player: {
2013
2013
  id: args.playerId
2014
2014
  }
2015
+ },
2016
+ orderBy: {
2017
+ createdAt: "asc"
2015
2018
  }
2016
2019
  });
2017
2020
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbl-uzh/platform",
3
- "version": "0.4.8",
3
+ "version": "0.4.10",
4
4
  "license": "LGPL-3.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",