@resin/pinejs
Version:
Pine.js is a sophisticated rules-driven API engine that enables you to define rules in a structured subset of English. Those rules are used in order for Pine.js to generate a database schema and the associated [OData](http://www.odata.org/) API. This make
18 lines • 794 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExtendedSBVRParser = void 0;
const sbvr_parser_1 = require("@balena/sbvr-parser");
const Types = require('@resin/sbvr-types/Type.sbvr');
const package_json_1 = require("@balena/sbvr-parser/package.json");
const package_json_2 = require("@balena/sbvr-parser/package.json");
exports.ExtendedSBVRParser = sbvr_parser_1.SBVRParser._extend({
initialize() {
sbvr_parser_1.SBVRParser.initialize.call(this);
this.AddCustomAttribute('Database ID Field:');
this.AddCustomAttribute('Database Table Name:');
this.AddBuiltInVocab(Types);
return this;
},
version: package_json_1.version + '+' + package_json_2.version,
});
//# sourceMappingURL=extended-sbvr-parser.js.map