@joystick.js/node-canary 0.0.0-canary.308 → 0.0.0-canary.309

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/app/index.js CHANGED
@@ -137,12 +137,16 @@ class App {
137
137
  ...process.databases || {},
138
138
  postgresql: !hasMultipleOfProvider ? {
139
139
  ...postgresql?.pool,
140
- query: postgresql?.query
140
+ query: postgresql?.query,
141
+ insert: postgresql?.insert,
142
+ update: postgresql?.update
141
143
  } : {
142
144
  ...process?.databases?.postgresql || {},
143
145
  [database?.settings?.name || `postgresql_${databasePort}`]: {
144
146
  ...postgresql?.pool,
145
- query: postgresql?.query
147
+ query: postgresql?.query,
148
+ insert: postgresql?.insert,
149
+ update: postgresql?.update
146
150
  }
147
151
  }
148
152
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/node-canary",
3
- "version": "0.0.0-canary.308",
3
+ "version": "0.0.0-canary.309",
4
4
  "type": "module",
5
5
  "description": "A Node.js framework for building web apps.",
6
6
  "main": "./dist/index.js",