@platformatic/sql-events 2.8.0 → 2.8.2-alpha.1

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.
Files changed (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -8,7 +8,7 @@ export interface SQLEventsPluginInterface {
8
8
  }
9
9
 
10
10
  export interface SQLEventsPluginOptions<T extends Entities> {
11
- mapper: SQLMapperPluginInterface<T>
11
+ mapper?: SQLMapperPluginInterface<T>
12
12
 
13
13
  // TODO mqemitter has no types
14
14
  mq?: any
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/sql-events",
3
- "version": "2.8.0",
3
+ "version": "2.8.2-alpha.1",
4
4
  "description": "Emit events via MQEmitter",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -22,7 +22,7 @@
22
22
  "neostandard": "^0.11.1",
23
23
  "tsd": "^0.31.0",
24
24
  "typescript": "^5.5.4",
25
- "@platformatic/sql-mapper": "2.8.0"
25
+ "@platformatic/sql-mapper": "2.8.2-alpha.1"
26
26
  },
27
27
  "dependencies": {
28
28
  "@fastify/error": "^4.0.0",