@candlerip/shared3 0.0.28 → 0.0.29

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -5,9 +5,9 @@ export interface EnvironmentVariables {
5
5
  DICTIONARY_SERVICE_PORT: number;
6
6
  DOMAIN_NAME: string;
7
7
  FRONTEND_URL: string;
8
- LOGGER_SERVICE_PORT: string;
8
+ LOGGER_SERVICE_PORT: number;
9
9
  RABBITMQ_PORT: number;
10
- RABBITMQ_MANGEMENT_PORT: number;
10
+ RABBITMQ_MANAGEMENT_PORT: number;
11
11
  REDIS_PORT: number;
12
12
  REDIS_PWD: string;
13
13
  REDIS_URL: string;
@@ -1,2 +1,2 @@
1
1
  import { EnvironmentVariables } from '../../../../environment/index.js';
2
- export type RabbitmqProjectConfig = Pick<EnvironmentVariables, 'RABBITMQ_PORT' | 'RABBITMQ_MANGEMENT_PORT'>;
2
+ export type RabbitmqProjectConfig = Pick<EnvironmentVariables, 'RABBITMQ_PORT' | 'RABBITMQ_MANAGEMENT_PORT'>;