@volontariapp/domain-event 2.6.0-snap-59d169a → 2.6.0-snap-5501cec

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/CHANGELOG.md CHANGED
@@ -6,6 +6,27 @@
6
6
 
7
7
  - trigger SQL
8
8
 
9
+ ## 2.5.3
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies []:
14
+ - @volontariapp/errors-nest@0.10.2
15
+
16
+ ## 2.5.2
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies []:
21
+ - @volontariapp/contracts@4.0.7
22
+
23
+ ## 2.5.1
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies []:
28
+ - @volontariapp/contracts@4.0.6
29
+
9
30
  ## 2.5.0
10
31
 
11
32
  ### Minor Changes
@@ -3,11 +3,11 @@ import { join, dirname } from 'path';
3
3
  import { fileURLToPath } from 'url';
4
4
  const __filename = fileURLToPath(import.meta.url);
5
5
  const __dirname = dirname(__filename);
6
- const sqlDir = existsSync(join(__dirname, 'event-queue-trigger.sql'))
6
+ const sqlDir = existsSync(join(__dirname, 'event-queue.trigger.sql'))
7
7
  ? __dirname
8
8
  : join(__dirname, '../../../src/database/triggers');
9
9
  const readSqlFile = (filename) => readFileSync(join(sqlDir, filename), 'utf8');
10
- export const EVENT_QUEUE_TRIGGER_FUNCTION = readSqlFile('event-queue-trigger.sql');
10
+ export const EVENT_QUEUE_TRIGGER_FUNCTION = readSqlFile('event-queue.trigger.sql');
11
11
  export const EVENTS_TRIGGER = readSqlFile('events.trigger.sql');
12
12
  export const REQUIREMENTS_TRIGGER = readSqlFile('requirements.trigger.sql');
13
13
  export const TAGS_TRIGGER = readSqlFile('tags.trigger.sql');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volontariapp/domain-event",
3
- "version": "2.6.0-snap-59d169a",
3
+ "version": "2.6.0-snap-5501cec",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -54,12 +54,12 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@nestjs/common": "^11.0.1",
57
- "@volontariapp/contracts": "4.0.5",
57
+ "@volontariapp/contracts": "4.0.7",
58
58
  "@volontariapp/database": "1.12.0",
59
59
  "@volontariapp/errors": "0.5.0",
60
- "@volontariapp/errors-nest": "0.10.0",
60
+ "@volontariapp/errors-nest": "0.10.2",
61
61
  "@volontariapp/logger": "0.2.3",
62
- "@volontariapp/messaging": "1.0.0-snap-59d169a",
62
+ "@volontariapp/messaging": "1.0.0-snap-5501cec",
63
63
  "class-transformer": "^0.5.1"
64
64
  }
65
65
  }