grm-shared-library 1.0.8 → 1.0.9

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/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export * from './enums/org-status.enum';
21
21
  */
22
22
  export * from './kafka/topics';
23
23
  export * from './kafka/group-ids';
24
+ export * from './kafka/client-ids';
24
25
  /**
25
26
  * Utilities
26
27
  */
package/dist/index.js CHANGED
@@ -37,6 +37,7 @@ __exportStar(require("./enums/org-status.enum"), exports);
37
37
  */
38
38
  __exportStar(require("./kafka/topics"), exports);
39
39
  __exportStar(require("./kafka/group-ids"), exports);
40
+ __exportStar(require("./kafka/client-ids"), exports);
40
41
  /**
41
42
  * Utilities
42
43
  */
@@ -0,0 +1,4 @@
1
+ export declare const KAFKA_CLIENT_IDS: {
2
+ API_SERVICE_ID: string;
3
+ ORGANIZATION_SERVICE_ID: string;
4
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KAFKA_CLIENT_IDS = void 0;
4
+ exports.KAFKA_CLIENT_IDS = {
5
+ API_SERVICE_ID: 'api',
6
+ ORGANIZATION_SERVICE_ID: 'organization'
7
+ };
@@ -0,0 +1,4 @@
1
+ export declare const SERVICE_TOKENS: {
2
+ API_SERVICE: string;
3
+ ORGANIZATION_SERVICE: string;
4
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SERVICE_TOKENS = void 0;
4
+ exports.SERVICE_TOKENS = {
5
+ API_SERVICE: 'API SERVICE',
6
+ ORGANIZATION_SERVICE: 'ORGANIZATION_SERVICE'
7
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grm-shared-library",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [