@diia-inhouse/types 11.4.2 → 11.6.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.
@@ -17,7 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./onInit"), exports);
18
18
  __exportStar(require("./onHealthCheck"), exports);
19
19
  __exportStar(require("./onDestroy"), exports);
20
- __exportStar(require("./dictionary"), exports);
21
20
  __exportStar(require("./onRegistrationsFinished"), exports);
22
21
  __exportStar(require("./notification"), exports);
23
22
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AAExB,kDAA+B;AAE/B,8CAA2B;AAE3B,+CAA4B;AAE5B,4DAAyC;AAEzC,iDAA8B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AAExB,kDAA+B;AAE/B,8CAA2B;AAE3B,4DAAyC;AAEzC,iDAA8B"}
@@ -18,7 +18,7 @@ export interface ActHeaders {
18
18
  /**
19
19
  * @deprecated Use action's name instead if needed
20
20
  */
21
- actionVersion: ActionVersion;
21
+ actionVersion?: ActionVersion;
22
22
  traceId: string;
23
23
  acceptLanguage?: string;
24
24
  platformType?: PlatformType;
@@ -1,6 +1,5 @@
1
1
  export * from './onInit';
2
2
  export * from './onHealthCheck';
3
3
  export * from './onDestroy';
4
- export * from './dictionary';
5
4
  export * from './onRegistrationsFinished';
6
5
  export * from './notification';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diia-inhouse/types",
3
- "version": "11.4.2",
3
+ "version": "11.6.0",
4
4
  "description": "Core types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=dictionary.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dictionary.js","sourceRoot":"","sources":["../../src/interfaces/dictionary.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- export interface Dictionary {
2
- updateDictionary(): Promise<void>;
3
- }