@jfvilas/kwirth-common 0.3.44 → 0.3.45

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.
@@ -13,6 +13,10 @@ export declare enum ServiceConfigActionEnum {
13
13
  MODIFY = "modify",
14
14
  PING = "ping"
15
15
  }
16
+ export declare enum ServiceConfigObjectEnum {
17
+ PODS = "pods",
18
+ EVENTS = "events"
19
+ }
16
20
  export declare enum ServiceConfigFlowEnum {
17
21
  REQUEST = "request",
18
22
  RESPONSE = "response"
@@ -39,6 +43,7 @@ export declare enum ServiceConfigScopeEnum {
39
43
  }
40
44
  export interface ServiceConfig {
41
45
  channel: string;
46
+ object: ServiceConfigObjectEnum;
42
47
  action: ServiceConfigActionEnum;
43
48
  flow: ServiceConfigFlowEnum;
44
49
  instance: string;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ServiceConfigScopeEnum = exports.ServiceConfigViewEnum = exports.ServiceConfigFlowEnum = exports.ServiceConfigActionEnum = exports.ServiceConfigChannelEnum = void 0;
3
+ exports.ServiceConfigScopeEnum = exports.ServiceConfigViewEnum = exports.ServiceConfigFlowEnum = exports.ServiceConfigObjectEnum = exports.ServiceConfigActionEnum = exports.ServiceConfigChannelEnum = void 0;
4
4
  var ServiceConfigChannelEnum;
5
5
  (function (ServiceConfigChannelEnum) {
6
6
  ServiceConfigChannelEnum["NONE"] = "none";
@@ -18,6 +18,11 @@ var ServiceConfigActionEnum;
18
18
  ServiceConfigActionEnum["MODIFY"] = "modify";
19
19
  ServiceConfigActionEnum["PING"] = "ping";
20
20
  })(ServiceConfigActionEnum || (exports.ServiceConfigActionEnum = ServiceConfigActionEnum = {}));
21
+ var ServiceConfigObjectEnum;
22
+ (function (ServiceConfigObjectEnum) {
23
+ ServiceConfigObjectEnum["PODS"] = "pods";
24
+ ServiceConfigObjectEnum["EVENTS"] = "events";
25
+ })(ServiceConfigObjectEnum || (exports.ServiceConfigObjectEnum = ServiceConfigObjectEnum = {}));
21
26
  var ServiceConfigFlowEnum;
22
27
  (function (ServiceConfigFlowEnum) {
23
28
  ServiceConfigFlowEnum["REQUEST"] = "request";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jfvilas/kwirth-common",
3
- "version": "0.3.44",
3
+ "version": "0.3.45",
4
4
  "description": "Common interfaces for integrating applications with Kwirth",
5
5
  "scripts": {
6
6
  "build": "del .\\dist\\* /s /q && tsc"