@rsdk/kafka.producer.outbox.typeorm 2.4.0 → 2.4.1-next.0

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
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.4.1-next.0](https://github.com/R-Vision/rsdk/compare/v2.4.0...v2.4.1-next.0) (2023-06-15)
7
+
8
+ **Note:** Version bump only for package @rsdk/kafka.producer.outbox.typeorm
9
+
6
10
  # [2.4.0](https://github.com/R-Vision/rsdk/compare/v2.3.1...v2.4.0) (2023-06-15)
7
11
 
8
12
  **Note:** Version bump only for package @rsdk/kafka.producer.outbox.typeorm
@@ -24,8 +24,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.TypeOrmProducer = void 0;
27
- const crypto = __importStar(require("crypto"));
28
27
  const kafka_producer_1 = require("@rsdk/kafka.producer");
28
+ const crypto = __importStar(require("node:crypto"));
29
29
  class TypeOrmProducer extends kafka_producer_1.BaseProducer {
30
30
  protoType;
31
31
  outbox;
@@ -1 +1 @@
1
- {"version":3,"file":"typeorm.producer.js","sourceRoot":"","sources":["../src/typeorm.producer.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAiC;AAIjC,yDAAoD;AAKpD,MAAa,eAAqC,SAAQ,6BAAe;IAE5D;IACQ;IAFnB,YACW,SAAY,EACJ,MAA0B;QAE3C,KAAK,CAAC,SAAS,CAAC,CAAC;QAHR,cAAS,GAAT,SAAS,CAAG;QACJ,WAAM,GAAN,MAAM,CAAoB;IAG7C,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,OAAU,EAAE,OAAwB;QAChD,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAElD,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,GAAG,KAAK,EAAE,EAAE,EAAE,MAAM,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;CACF;AAbD,0CAaC"}
1
+ {"version":3,"file":"typeorm.producer.js","sourceRoot":"","sources":["../src/typeorm.producer.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,yDAAoD;AACpD,oDAAsC;AAKtC,MAAa,eAAqC,SAAQ,6BAAe;IAE5D;IACQ;IAFnB,YACW,SAAY,EACJ,MAA0B;QAE3C,KAAK,CAAC,SAAS,CAAC,CAAC;QAHR,cAAS,GAAT,SAAS,CAAG;QACJ,WAAM,GAAN,MAAM,CAAoB;IAG7C,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,OAAU,EAAE,OAAwB;QAChD,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAElD,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,GAAG,KAAK,EAAE,EAAE,EAAE,MAAM,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;CACF;AAbD,0CAaC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/kafka.producer.outbox.typeorm",
3
- "version": "2.4.0",
3
+ "version": "2.4.1-next.0",
4
4
  "description": "Producing messages to outbox table (on top of typeorm 0.3.*)",
5
5
  "license": "Apache License 2.0",
6
6
  "publishConfig": {
@@ -15,16 +15,16 @@
15
15
  "@nestjs/microservices": "^9.0.0",
16
16
  "@nestjs/typeorm": "^9.0.0",
17
17
  "@rsdk/autodoc.protocol": "^2.0.0",
18
- "@rsdk/common": "^2.4.0",
19
- "@rsdk/core": "^2.4.0",
20
- "@rsdk/kafka.common": "^2.4.0",
21
- "@rsdk/kafka.producer": "^2.4.0",
22
- "@rsdk/logging": "^2.4.0",
23
- "@rsdk/metadata": "^2.4.0",
18
+ "@rsdk/common": "^2.4.1-next.0",
19
+ "@rsdk/core": "^2.4.1-next.0",
20
+ "@rsdk/kafka.common": "^2.4.1-next.0",
21
+ "@rsdk/kafka.producer": "^2.4.1-next.0",
22
+ "@rsdk/logging": "^2.4.1-next.0",
23
+ "@rsdk/metadata": "^2.4.1-next.0",
24
24
  "typeorm": "^0.3.12"
25
25
  },
26
26
  "dependencies": {
27
27
  "lodash": "^4.17.21"
28
28
  },
29
- "gitHead": "2c2c1eac3027955838c0883ca1cb76b051a541ed"
29
+ "gitHead": "02cbc6be59dcf7d7784b316b315eb746c6d5ac4a"
30
30
  }
@@ -1,8 +1,7 @@
1
- import * as crypto from 'crypto';
2
-
3
1
  import type { EventType } from '@rsdk/kafka.common';
4
2
  import type { PublishOptions } from '@rsdk/kafka.producer';
5
3
  import { BaseProducer } from '@rsdk/kafka.producer';
4
+ import * as crypto from 'node:crypto';
6
5
  import type { Repository } from 'typeorm';
7
6
 
8
7
  import type { Outbox } from './outbox.entity';