@xapp/stentor-validation 1.13.8 → 1.14.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.
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
+ # [1.14.0](https://github.com/XappMedia/stentor-core/compare/v1.13.10...v1.14.0) (2020-01-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Moving stentor-models & stentor-constants to open source repo stentorium/stentor ([#1359](https://github.com/XappMedia/stentor-core/issues/1359)) ([c0e7e54](https://github.com/XappMedia/stentor-core/commit/c0e7e54))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.13.8](https://github.com/XappMedia/stentor-core/compare/v1.13.7...v1.13.8) (2019-12-24)
7
18
 
8
19
  **Note:** Version bump only for package @xapp/stentor-validation
@@ -1,5 +1,5 @@
1
1
  /*! Copyright (c) 2019, XAPPmedia */
2
- import { App } from "@xapp/stentor-models";
2
+ import { App } from "stentor-models";
3
3
  import { Validator } from "lakmus";
4
4
  export declare const MIN_APP_NAME_LENGTH = 2;
5
5
  export declare const MAX_APP_NAME_LENGTH = 50;
@@ -1,5 +1,5 @@
1
1
  /*! Copyright (c) 2019, XAPPmedia */
2
- import { Handler } from "@xapp/stentor-models";
2
+ import { Handler } from "stentor-models";
3
3
  import { Validator } from "lakmus";
4
4
  /**
5
5
  * Handler validation.
@@ -1,5 +1,5 @@
1
1
  /*! Copyright (c) 2019, XAPPmedia */
2
- import { Logic } from "@xapp/stentor-models";
2
+ import { Logic } from "stentor-models";
3
3
  import { Validator } from "lakmus";
4
4
  export declare class LogicValidator extends Validator<Logic> {
5
5
  constructor();
@@ -1,4 +1,4 @@
1
- import { Handler, Intent } from "@xapp/stentor-models";
1
+ import { Handler, Intent } from "stentor-models";
2
2
  export interface AnalyzeModelAndContentResult {
3
3
  info: AnalysisResult[];
4
4
  warnings: AnalysisResult[];
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "restricted"
6
6
  },
7
- "version": "1.13.8",
7
+ "version": "1.14.0",
8
8
  "description": "Model validation for Stentor",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -21,19 +21,19 @@
21
21
  "chai": "4.2.0",
22
22
  "mocha": "6.2.2",
23
23
  "ts-node": "8.2.0",
24
- "typescript": "3.5.3"
24
+ "typescript": "3.7.4"
25
25
  },
26
26
  "dependencies": {
27
- "@xapp/logger": "^1.13.8",
28
- "@xapp/stentor-handler": "^1.13.8",
29
- "@xapp/stentor-models": "^1.13.8",
30
- "@xapp/stentor-utils": "^1.13.8",
31
- "lakmus": "0.3.0"
27
+ "@xapp/logger": "^1.14.0",
28
+ "@xapp/stentor-handler": "^1.14.0",
29
+ "@xapp/stentor-utils": "^1.14.0",
30
+ "lakmus": "0.3.0",
31
+ "stentor-models": "1.15.1"
32
32
  },
33
33
  "scripts": {
34
34
  "build": "tsc -d true -p .",
35
35
  "clean": "rm -rf ./lib/*",
36
36
  "test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
37
37
  },
38
- "gitHead": "c9c6cd2bd4aea3b77f1fb2cd6ce61737f2ad9d7a"
38
+ "gitHead": "63bf594769e7fc3a8ff73b83575712adc90bc1c0"
39
39
  }