@biorate/schema-registry 0.27.0 → 0.27.3

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 (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/index.d.ts +12 -0
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+ ## [0.27.3](https://github.com/biorate/core/compare/v0.27.2...v0.27.3) (2022-05-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * index.d.ts file added into mongodb, sequelize, schema-registry connectors ([8f142d3](https://github.com/biorate/core/commit/8f142d36e4face9d101e76f3954d565932a4c40f))
12
+
13
+
14
+
15
+
16
+
6
17
  # [0.27.0](https://github.com/biorate/core/compare/v0.26.0...v0.27.0) (2022-05-06)
7
18
 
8
19
  **Note:** Version bump only for package @biorate/schema-registry
package/index.d.ts ADDED
@@ -0,0 +1,12 @@
1
+ import { Connector, IConnector } from '@biorate/connector';
2
+ import { ISchemaRegistryConfig, ISchemaRegistryConnection } from './src';
3
+
4
+ declare module '@biorate/schema-registry' {
5
+ export class SchemaRegistryConnector extends Connector<
6
+ ISchemaRegistryConfig,
7
+ ISchemaRegistryConnection
8
+ > {
9
+ protected readonly namespace: string;
10
+ protected connect(config: ISchemaRegistryConfig): Promise<ISchemaRegistryConnection>;
11
+ }
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biorate/schema-registry",
3
- "version": "0.27.0",
3
+ "version": "0.27.3",
4
4
  "description": "Schema registry connector",
5
5
  "main": "dist",
6
6
  "scripts": {
@@ -33,5 +33,5 @@
33
33
  "@biorate/inversion": "0.27.0",
34
34
  "avsc": "^5.7.4"
35
35
  },
36
- "gitHead": "dc8ef9a51a83ac0e26b0714e98ebef33d3c08b73"
36
+ "gitHead": "ebd8f7c1efd5a9b312a441ce8fda9857611cf5af"
37
37
  }