@hestia-earth/schema-validation 7.5.0 → 7.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/schema-validation",
3
- "version": "7.5.0",
3
+ "version": "7.6.0",
4
4
  "description": "Hestia Schema Validation",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",
package/validate.d.ts CHANGED
@@ -15,7 +15,7 @@ export declare const initAjv: () => Ajv.Ajv;
15
15
  * @param strictMode Allow validating non-existing nodes, i.e. without unique `@id`.
16
16
  * @returns Function to validate a Node. Use `await validator()(node)`
17
17
  */
18
- export declare const validator: (domain?: string, strictMode?: boolean) => Promise<(content: HestiaJson<SchemaType>) => {
18
+ export declare const validator: (domain?: string, strictMode?: boolean) => (content: HestiaJson<SchemaType>) => {
19
19
  success: boolean | PromiseLike<any>;
20
20
  errors: Ajv.ErrorObject[];
21
- }>;
21
+ };
package/validate.js CHANGED
@@ -10,42 +10,6 @@ var __assign = (this && this.__assign) || function () {
10
10
  };
11
11
  return __assign.apply(this, arguments);
12
12
  };
13
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
14
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
15
- return new (P || (P = Promise))(function (resolve, reject) {
16
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
17
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
18
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
19
- step((generator = generator.apply(thisArg, _arguments || [])).next());
20
- });
21
- };
22
- var __generator = (this && this.__generator) || function (thisArg, body) {
23
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
24
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
25
- function verb(n) { return function (v) { return step([n, v]); }; }
26
- function step(op) {
27
- if (f) throw new TypeError("Generator is already executing.");
28
- while (_) try {
29
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
30
- if (y = 0, t) op = [op[0] & 2, t.value];
31
- switch (op[0]) {
32
- case 0: case 1: t = op; break;
33
- case 4: _.label++; return { value: op[1], done: false };
34
- case 5: _.label++; y = op[1]; op = [0]; continue;
35
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
36
- default:
37
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
38
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
39
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
40
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
41
- if (t[2]) _.ops.pop();
42
- _.trys.pop(); continue;
43
- }
44
- op = body.call(thisArg, _);
45
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
46
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
47
- }
48
- };
49
13
  Object.defineProperty(exports, "__esModule", { value: true });
50
14
  exports.validator = exports.initAjv = exports.uniqueArrayItemValidate = exports.validateContent = void 0;
51
15
  var Ajv = require("ajv");
@@ -114,25 +78,15 @@ exports.initAjv = function () {
114
78
  exports.validator = function (domain, strictMode) {
115
79
  if (domain === void 0) { domain = 'https://www.hestia.earth'; }
116
80
  if (strictMode === void 0) { strictMode = true; }
117
- return __awaiter(void 0, void 0, void 0, function () {
118
- var ajv, schemas;
119
- return __generator(this, function (_a) {
120
- switch (_a.label) {
121
- case 0:
122
- ajv = exports.initAjv();
123
- return [4 /*yield*/, json_schema_1.loadSchemas()];
124
- case 1:
125
- schemas = _a.sent();
126
- Object.keys(schemas).map(function (schemaName) {
127
- var schema = schemas[schemaName];
128
- schema.properties = __assign({ '@context': {
129
- type: 'string'
130
- } }, schema.properties);
131
- schema.oneOf = strictMode && schema_1.isTypeNode(schemaName) ? [existingNodeRequired] : schema.oneOf;
132
- ajv.addSchema(schema, domain + "/schema/json-schema}/" + schemaName + "#");
133
- });
134
- return [2 /*return*/, exports.validateContent(ajv, schemas)];
135
- }
136
- });
81
+ var ajv = exports.initAjv();
82
+ var schemas = json_schema_1.loadSchemas();
83
+ Object.keys(schemas).map(function (schemaName) {
84
+ var schema = schemas[schemaName];
85
+ schema.properties = __assign({ '@context': {
86
+ type: 'string'
87
+ } }, schema.properties);
88
+ schema.oneOf = strictMode && schema_1.isTypeNode(schemaName) ? [existingNodeRequired] : schema.oneOf;
89
+ ajv.addSchema(schema, domain + "/schema/json-schema}/" + schemaName + "#");
137
90
  });
91
+ return exports.validateContent(ajv, schemas);
138
92
  };