@volontariapp/domain-user 2.8.5 → 2.8.6-snap-2bd113a
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 +11 -0
- package/dist/test/migrations/common/1781000000000-AddCorrelationIdToEventQueue.d.ts +7 -0
- package/dist/test/migrations/common/1781000000000-AddCorrelationIdToEventQueue.d.ts.map +1 -0
- package/dist/test/migrations/common/1781000000000-AddCorrelationIdToEventQueue.js +12 -0
- package/dist/test/migrations/common/1781000000000-AddCorrelationIdToEventQueue.js.map +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.8.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`44e7a08`](https://github.com/Volontariapp/npm-packages/commit/44e7a0874947115ea18c2274c7f76d52df560ced)]:
|
|
8
|
+
- @volontariapp/messaging@2.7.4
|
|
9
|
+
- @volontariapp/shared@0.6.2
|
|
10
|
+
- @volontariapp/contracts@4.2.3
|
|
11
|
+
- @volontariapp/database@3.3.5
|
|
12
|
+
- @volontariapp/auth@3.3.2
|
|
13
|
+
|
|
3
14
|
## 2.8.5
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { MigrationInterface, QueryRunner } from 'typeorm';
|
|
2
|
+
export declare class AddCorrelationIdToEventQueue1781000000000 implements MigrationInterface {
|
|
3
|
+
name: string;
|
|
4
|
+
up(queryRunner: QueryRunner): Promise<void>;
|
|
5
|
+
down(queryRunner: QueryRunner): Promise<void>;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=1781000000000-AddCorrelationIdToEventQueue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1781000000000-AddCorrelationIdToEventQueue.d.ts","sourceRoot":"","sources":["../../../../src/test/migrations/common/1781000000000-AddCorrelationIdToEventQueue.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE/D,qBAAa,yCAA0C,YAAW,kBAAkB;IAClF,IAAI,SAA+C;IAEtC,EAAE,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAS3C,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;CAI3D"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export class AddCorrelationIdToEventQueue1781000000000 {
|
|
2
|
+
name = 'AddCorrelationIdToEventQueue1781000000000';
|
|
3
|
+
async up(queryRunner) {
|
|
4
|
+
await queryRunner.query(`ALTER TABLE "event_queue" ADD "correlation_id" uuid NOT NULL DEFAULT uuid_generate_v4()`);
|
|
5
|
+
await queryRunner.query(`CREATE INDEX "IDX_event_queue_correlation_id" ON "event_queue" ("correlation_id")`);
|
|
6
|
+
}
|
|
7
|
+
async down(queryRunner) {
|
|
8
|
+
await queryRunner.query(`DROP INDEX "IDX_event_queue_correlation_id"`);
|
|
9
|
+
await queryRunner.query(`ALTER TABLE "event_queue" DROP COLUMN "correlation_id"`);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=1781000000000-AddCorrelationIdToEventQueue.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"1781000000000-AddCorrelationIdToEventQueue.js","sourceRoot":"","sources":["../../../../src/test/migrations/common/1781000000000-AddCorrelationIdToEventQueue.ts"],"names":[],"mappings":"AAEA,MAAM,OAAO,yCAAyC;IACpD,IAAI,GAAG,2CAA2C,CAAC;IAE5C,KAAK,CAAC,EAAE,CAAC,WAAwB;QACtC,MAAM,WAAW,CAAC,KAAK,CACrB,yFAAyF,CAC1F,CAAC;QACF,MAAM,WAAW,CAAC,KAAK,CACrB,mFAAmF,CACpF,CAAC;IACJ,CAAC;IAEM,KAAK,CAAC,IAAI,CAAC,WAAwB;QACxC,MAAM,WAAW,CAAC,KAAK,CAAC,6CAA6C,CAAC,CAAC;QACvE,MAAM,WAAW,CAAC,KAAK,CAAC,wDAAwD,CAAC,CAAC;IACpF,CAAC;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volontariapp/domain-user",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.6-snap-2bd113a",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"migration:run": "TYPEORM_MIGRATION_RUN=true yarn typeorm migration:run -d src/test/data-source.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@volontariapp/auth": "3.3.
|
|
43
|
-
"@volontariapp/contracts": "4.2.
|
|
42
|
+
"@volontariapp/auth": "3.3.2-snap-2bd113a",
|
|
43
|
+
"@volontariapp/contracts": "4.2.3-snap-2bd113a",
|
|
44
44
|
"@volontariapp/crypto": "0.3.8",
|
|
45
|
-
"@volontariapp/database": "3.3.
|
|
45
|
+
"@volontariapp/database": "3.3.5-snap-2bd113a",
|
|
46
46
|
"@volontariapp/errors": "0.6.0",
|
|
47
47
|
"@volontariapp/errors-nest": "0.13.0",
|
|
48
48
|
"@volontariapp/logger": "0.2.5",
|
|
49
|
-
"@volontariapp/messaging": "2.7.
|
|
50
|
-
"@volontariapp/shared": "0.6.
|
|
49
|
+
"@volontariapp/messaging": "2.7.4-snap-2bd113a",
|
|
50
|
+
"@volontariapp/shared": "0.6.2-snap-2bd113a"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@nestjs/typeorm": "^11.0.1",
|